/* Основные стили статьи вузы */
.content-article-vuz {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.article-title-vuz {
    color: #333;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Текст вузы*/
.article-lead-vuz {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.article-body-vuz {
    margin-bottom: 30px;
}

.article-body-vuz p {
    margin-bottom: 15px;
}

/* Изображение вузы */
.article-image-vuz {
    margin: 20px 0;
    text-align: center;
}

.news-img-vuz {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.image-link-vuz {
    display: inline-block;
}

/* Теги вузы */
.article-tags-vuz {
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tags-icon-vuz {
    margin-right: 8px;
}

/* Свойства вузы */
.article-properties {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.properties-group {
    margin-bottom: 20px;
}

.properties-group-title {
    color: #144492;
    font-size: 20px;
    margin-bottom: 15px;
}

.properties-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.property-row {
    border-bottom: 1px solid #ddd;
}

.property-name {
    padding: 8px;
    font-weight: 500;
    width: 30%;
    vertical-align: top;
}

.property-value {
    padding: 8px;
    vertical-align: top;
}

.property-file {
    color: #698EC9;
    text-decoration: none;
}

.property-file:hover {
    color: #DDB30B;
}

/* Основной контейнер */
.vuz-content {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

/* Заголовок */
.vuz-header {
    margin-bottom: 30px;
}

.vuz-title {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.vuz-description {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Хлебные крошки */
.vuz-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.vuz-breadcrumb-link {
    color: #698EC9;
    text-decoration: none;
}

.vuz-breadcrumb-link:hover {
    color: #DDB30B;
    text-decoration: underline;
}

.vuz-breadcrumb-separator {
    margin: 0 5px;
    color: #999;
}

/* Подгруппы */
.vuz-subgroups {
    margin-bottom: 30px;
}

.vuz-subgroups-title {
    font-size: 20px;
    color: #144492;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.vuz-subgroups-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.vuz-subgroup-item {
    padding: 15px;
    background: #c0c7cf;
    border-radius: 5px;
    transition: all 0.2s;
}

.vuz-subgroup-item:hover {
    background: #eef2f7;
}

.vuz-subgroup-image-link {
    display: block;
    margin-bottom: 10px;
}

.vuz-subgroup-image {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
}

.vuz-subgroup-link {
    color: #144492;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
}

.vuz-subgroup-link:hover {
    color: #DDB30B;
}

/* Элементы */
.vuz-items {
    margin-top: 30px;
}

.vuz-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.vuz-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s;
}

.vuz-item:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.vuz-item-link {
    display: block;
    text-decoration: none;
    color: #333;
}

.vuz-item-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.vuz-item-title {
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #144492;
}

.vuz-item-title:hover {
    color: #DDB30B;
}

/* Пагинация */
.vuz-pagination {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
}

.vuz-pagination-link {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    color: #144492;
    text-decoration: none;
    border-radius: 3px;
}

.vuz-pagination-link:hover {
    background-color: #f5f7fa;
}

.vuz-pagination-current {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    background-color: #144492;
    color: white;
    border-radius: 3px;
}

.vuz-pagination-separator {
    display: inline-block;
    margin: 0 5px;
    color: #999;
}