

/* Start:/bitrix/templates/ipovszrt/components/bitrix/news/vak_tj/style.css?1773820422538*/
.back-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: transparent;
    color: #2850a8;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #2850a8;
    transition: all 0.3s;
}

.back-button-outline i {
    font-size: 1.1rem;
}

.back-button-outline:hover {
    background-color: #2850a8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(40, 80, 168, 0.3);
}
/* End */


/* Start:/bitrix/templates/ipovszrt/components/bitrix/news/vak_tj/bitrix/news.list/.default/style.css?17738142785302*/
/* Основной контейнер */
.dissertation-list {
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    padding: 0 20px;
}

/* Панель фильтров */
.filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filter-group {
    flex: 1 1 200px;
    min-width: 180px;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}

.filter-reset {
    padding: 12px 24px;
    background: white;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-reset:hover {
    background: #0d6efd;
    color: white;
}

/* Сетка карточек: две колонки */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

/* Карточка */
.dissertation-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.dissertation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Изображение */
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #fafafa;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.dissertation-card:hover .card-image img {
    transform: scale(1.03);
}

/* Контент */
.card-content {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-date {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-date i {
    color: #0d6efd;
    width: 16px;
    text-align: center;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.card-preview {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.6;
    border-left: 3px solid #0d6efd;
    padding-left: 16px;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
}

.card-field,
.card-property {
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.field-label,
.property-label {
    font-weight: 600;
    color: #212529;
    min-width: 130px;
    padding-right: 12px;
}

.field-value,
.property-value {
    color: #495057;
    flex: 1;
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    background-color: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.card-link:hover {
    background-color: #0b5ed7;
    color: #fff;
}

/* Сообщение "ничего не найдено" */
.no-results {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 16px;
    margin: 20px 0;
}

/* Пагинация */
.pagination {
    margin: 30px 0 20px;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination a:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.pagination .current {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

/* Адаптивность */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr); /* на планшетах тоже две */
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr; /* на мобильных одна колонка */
    }

    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        width: 100%;
    }

    .filter-reset {
        width: 100%;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .field-label,
    .property-label {
        min-width: 100%;
        margin-bottom: 4px;
    }

    .card-field,
    .card-property {
        flex-direction: column;
    }
}
/* End */
/* /bitrix/templates/ipovszrt/components/bitrix/news/vak_tj/style.css?1773820422538 */
/* /bitrix/templates/ipovszrt/components/bitrix/news/vak_tj/bitrix/news.list/.default/style.css?17738142785302 */
