

/* Start:/bitrix/templates/bs_education_s1/components/bitrix/system.pagenavigation/modern/style.css?17773603512*/



/* End */


/* Start:/bitrix/templates/bs_education_s1/components/bitrix/news/institut/bitrix/news.list/.default/style.css?17843052605597*/
/* КОНТЕЙНЕР СЕТКИ */
.institutes_container {
    width: 100%;
    padding: 60px 20px;
    background: #f8fafc; /* Трендовый мягкий светлый фон подложки */
}

/* СЕТКА КАРТОЧЕК */
.institutes_grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* КАРТОЧКА ИНСТИТУТА */
.institute_card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(30px);
    opacity: 0;
    
    /* Четкая контрастная граница вокруг карточки в обычном состоянии */
    border: 2px solid #cbd5e1; 
    
    /* Добавляем border-color в список плавно изменяемых свойств */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s ease, 
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    background: #1e293b; /* Базовый сланцевый фон */
}

/* ЭФФЕКТ ПЛАВНОГО ПОЯВЛЕНИЯ ПРИ СКРОЛЛЕ (Использует IntersectionObserver) */
.institute_card.active {
    transform: translateY(0);
    opacity: 1;
}

/* ХОВЕР НА КАРТОЧКУ */
.institute_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(30, 41, 59, 0.18); /* Мягкая тень */
    
    /* Граница карточки при наведении плавно окрашивается в неоново-голубой цвет */
    border-color: #38bdf8; 
}

.card_link {
    display: block;
    text-decoration: none;
}

/* ИЗОБРАЖЕНИЕ ИНСТИТУТА */
.card_image {
    position: relative;
    height: 460px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.institute_card:hover .card_image {
    transform: scale(1.05);
}

/* МЯГКИЙ СВЕТЛЫЙ ГРАДИЕНТ ДЛЯ ОТЛИЧНОЙ ЧИТАЕМОСТИ НАЗВАНИЯ ВСЕГДА */
.overlay {
    position: absolute;
    inset: 0;
    /* Полупрозрачный сизо-синий тон, плавно переходящий в прозрачный к верху карточки */
    background: linear-gradient(
        to top, 
        rgba(30, 41, 59, 0.85) 0%, 
        rgba(51, 65, 85, 0.4) 40%, 
        transparent 80%
    );
    transition: background 0.4s ease;
}

.institute_card:hover .overlay {
    background: linear-gradient(
        to top, 
        rgba(30, 41, 59, 0.92) 0%, 
        rgba(51, 65, 85, 0.6) 50%, 
        rgba(71, 85, 105, 0.2) 100%
    );
}

/* ЦВЕТНОЙ ЯРКИЙ ТЕГ-МАРКЕР (виден всегда в верхнем углу) */
.card_tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    display: inline-block;
    padding: 6px 14px;
    background: #0284c7; /* Плотный красивый синий цвет */
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

/* ОБЩИЙ БЛОК С КОНТЕНТОМ */
.card_content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 24px;
    z-index: 2;
    box-sizing: border-box;
}

/* БЛОК ЗАГОЛОВКА (ВИДЕН ВСЕГДА) */
.card_header {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ЯРКИЙ ГОЛУБОЙ НЕОНОВЫЙ ШТРИХ ПЕРЕД НАЗВАНИЕМ */
.card_accent_line {
    width: 40px;
    height: 4px;
    background: #38bdf8;
    border-radius: 2px;
    margin-bottom: 12px;
    transition: width 0.4s ease;
}

/* При наведении штрих динамично удлиняется */
.institute_card:hover .card_accent_line {
    width: 60px;
}

/* НАЗВАНИЕ ИНСТИТУТА (Контрастный белый, всегда на виду) */
.card_name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* БЛОК ОПИСАНИЯ (СКРЫТ ПО УМОЛЧАНИЮ, ВЫЕЗЖАЕТ ПРИ НАВЕДЕНИИ) */
.card_body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.3s ease, 
                margin-top 0.4s ease;
}

/* Раскрытие описания при ховере */
.institute_card:hover .card_body {
    max-height: 150px; /* Запас по высоте для нескольких строк текста */
    opacity: 1;
    margin-top: 16px;
}

/* ТЕКСТ ОПИСАНИЯ */
.card_desc {
    font-size: 14px;
    color: #f1f5f9; /* Чистый ультра-белый цвет для идеальной читаемости на серо-синем фоне */
    line-height: 1.5;
}

/* ВНУТРЕННИЙ ТОНКИЙ ЭСТЕТИЧНЫЙ КОНТУР КАРТОЧКИ */
.institute_card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px; /* Чуть меньше основного border, чтобы не перекрывать его */
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 4;
}
/* End */
/* /bitrix/templates/bs_education_s1/components/bitrix/system.pagenavigation/modern/style.css?17773603512 */
/* /bitrix/templates/bs_education_s1/components/bitrix/news/institut/bitrix/news.list/.default/style.css?17843052605597 */
