

/* Start:/local/templates/landing/components/bitrix/news.list/conference_landing/style.css?177513652527916*/
/* --- ПОДКЛЮЧЕНИЕ ШРИФТОВ STOLZL --- */

/* 1. Light (300) */
@font-face {
    font-family: 'Stolzl';
    src: url('/local/templates/landing/components/bitrix/news.list/conference_landing/fonts/Stolzl-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* 2. Book (350) - Часто используется как чуть более тонкий основной текст */
@font-face {
    font-family: 'Stolzl';
    src: url('/local/templates/landing/components/bitrix/news.list/conference_landing/fonts/Stolzl-Book.woff2') format('woff2');
    font-weight: 350;
    font-style: normal;
    font-display: swap;
}

/* 3. Regular (400) - Основной текст */
@font-face {
    font-family: 'Stolzl';
    src: url('/local/templates/landing/components/bitrix/news.list/conference_landing/fonts/Stolzl-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* 4. Medium (500) - Подзаголовки */
@font-face {
    font-family: 'Stolzl';
    src: url('/local/templates/landing/components/bitrix/news.list/conference_landing/fonts/Stolzl-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* 5. Bold (700) - Жирные заголовки и кнопки */
@font-face {
    font-family: 'Stolzl';
    src: url('/local/templates/landing/components/bitrix/news.list/conference_landing/fonts/Stolzl-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 6. ExtraBold (800) - Трюк для совместимости с прошлым CSS */
/* Так как у вас нет файла ExtraBold, мы направим вес 800 на файл Bold */
@font-face {
    font-family: 'Stolzl';
    src: url('/local/templates/landing/components/bitrix/news.list/conference_landing/fonts/Stolzl-Bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


html, body {
    font-family: 'Stolzl', Arial, sans-serif;
    -webkit-font-smoothing: antialiased; /* Улучшает рендеринг на Mac/iOS */
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

.conf-landing {
    background-color: #f5f6f8; /* Серый фон всей страницы */
    padding: 60px 0;
    color: #111;
}

.conf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Сетка из 4 карточек */
.conf-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Две колонки */
    gap: 20px;
    margin-bottom: 60px;
}

/* Общие стили для белых карточек */
.conf-card {
    background: #ffffff;
    padding: 50px;
}

/* 1. Блок бренда (Левый верхний) */
.conf-card-brand {
    border-radius: 40px 40px 0 40px; /* Секретная магия ассиметрии */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.conf-logo img,
.conf-logo-placeholder {
    /*width: 120px;*/
    max-width: 100%;
    height: 120px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.conf-logo-placeholder {
    background-color: #1A75E8; /* Синий квадрат, если нет лого */
}
.conf-title {
    font-size: 42px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

/* 2. Блок "О конференции" (Правый верхний) */
.conf-card-about {
    border-radius: 40px 40px 40px 0;
}
.conf-subtitle {
    font-size: 28px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 25px;
}
.conf-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* 3. Блок информации (Левый нижний) */
.conf-card-info {
    border-radius: 40px 0 40px 40px;
    display: flex;
    flex-direction: column;
}
.conf-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1; /* Прижимает кнопку к низу */
}
.conf-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 20px;
}
.conf-info-list li img {
    width: 24px;
    height: 24px;
}

/* 4. Фотография (Правый нижний) */
.conf-card-photo {
    border-radius: 0 40px 40px 40px;
    padding: 0; /* Убираем внутренний отступ */
    overflow: hidden; /* Чтобы картинка не вылезала за скругленные углы */
}
.conf-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.conf-btn-primary {
    background-color: #E6004C; /* Малиновый цвет */
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

}

/* Эффект при наведении на саму кнопку */
.conf-btn-primary:hover {
    background-color: #c40040;
}

/* Отрисовка белого уголка (шеврона) через CSS */
.conf-btn-primary::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 15px; /* Отступ от текста */

    /* Рисуем верхнюю и правую рамку */
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;

    /* Поворачиваем квадрат на 45 градусов, получается стрелочка вправо > */
    transform: rotate(45deg);

    /* Плавность для анимации */
    transition: transform 0.3s ease;
}

/* Микро-анимация: при наведении на кнопку уголок "прыгает" вправо */
.conf-btn-primary:hover::after {
    /* Поскольку элемент уже повернут, мы сдвигаем его по диагонали (вверх и вправо по осям X Y),
       чтобы визуально он поехал ровно вправо */
    transform: rotate(45deg) translate(3px, -3px);
}

/* ================== ГАЛЕРЕЯ ================== */
.conf-gallery-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
/*.conf-gallery-track {
    display: flex;
    gap: 20px;
    flex-grow: 1;
    overflow: hidden;
}*/
.conf-gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
    width: max-content; /* ВАЖНО: Разрешаем ленте быть шире экрана */
}
.conf-gallery-item {
    flex: 1;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    background: #eaeaea; /* Если фото нет, будет серый фон */
}
.conf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Стрелки */
.conf-gallery-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #4061A6; /* Синий с макета */
    border: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
/* Отрисовка белых галочек на CSS */
.conf-gallery-arrow::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 50%;
    left: 50%;
}
.conf-arrow-prev::after {
    transform: translate(-30%, -50%) rotate(-135deg);
}
.conf-arrow-next::after {
    transform: translate(-70%, -50%) rotate(45deg);
}

/* Точки */
.conf-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.conf-gallery-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d1d1;
    cursor: pointer;
}
.conf-gallery-dots .dot.active {
    background-color: #4061A6;
}

.conf-nav {
    display: flex;
    justify-content: center; /* Центрируем ссылки */
    align-items: center;
    gap: 24px;
    padding: 30px 0;

    background-color: #f5f6f8;

    /* Делаем меню "липким" - оно прилипнет к верху экрана при скролле */
    position: sticky;
    top: 0;
    z-index: 1000; /* Чтобы меню было поверх всех остальных блоков */
}

/* Сами ссылки */
.conf-nav a {
    text-decoration: none;
    color: #666666; /* Слегка приглушенный цвет для неактивных пунктов */
    font-size: 16px; /* Размер шрифта */
    padding-bottom: 8px; /* Отступ от текста до подчеркивания */
    position: relative;
    transition: color 0.3s ease;
}

/* Линия подчеркивания (создаем через псевдоэлемент для красоты) */
.conf-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4061A6; /* Яркий синий цвет с макета */
    opacity: 0; /* По умолчанию линия скрыта */
    transition: opacity 0.3s ease; /* Плавное появление линии */
}

/* Состояние при наведении (hover) и активный пункт (active) */
.conf-nav a:hover,
.conf-nav a.active {
    color: #151416; /* Текст становится черным */
}

/* Показываем синюю линию при наведении или активности */
.conf-nav a:hover::after,
.conf-nav a.active::after {
    opacity: 1;
}

/* =========================================
   ЛОГИКА ТАБОВ (ВКЛАДОК)
   ========================================= */
.conf-tab-content {
    display: none; /* По умолчанию все скрыто */
    animation: fadeIn 0.4s ease-in-out;
}
.conf-tab-content.active {
    display: block; /* Показываем только активный */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   ВКЛАДКА: ПРОГРАММА (Шапка)
   ========================================= */
.conf-program-top {
    background: #fff;
    border-radius: 40px;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.conf-pt-left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.conf-pt-logo {
    width: 80px;
    height: 80px;

    border-radius: 20px;
    overflow: hidden;
}
.conf-pt-logo img {
    /*width: 100%;*/
    height: 100%;
    object-fit: cover;
}
.conf-pt-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 5px 0;
}
.conf-pt-address {
    font-size: 14px;
    color: #666;
}

/* =========================================
   ТАЙМЛАЙН (Расписание)
   ========================================= */
.conf-timeline {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto; /* Центрируем таймлайн */
}

.conf-tl-item {
    display: flex;
    position: relative;
    /* Убираем gap, используем ширину блоков для точного позиционирования */
}

/* 1. Левая колонка (Время) */
.conf-tl-time {
    width: 150px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: bold;
    padding-top: 30px; /* Чтобы выровнять по центру карточки визуально */
    text-align: right;
    padding-right: 30px;
}

/* 2. Центральная колонка (Черная линия) */
.conf-tl-divider {
    width: 40px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
}
/* Сама вертикальная линия */
.conf-tl-divider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #000;
}
/* Убираем линию снизу у последнего элемента */
.conf-tl-item:last-child .conf-tl-divider::before {
    bottom: auto;
    height: 40px; /* Оставляем хвостик */
}
/* Черная точка */
.conf-tl-dot {
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    position: relative;
    top: 36px; /* Выравниваем по тексту */
    z-index: 2;
}

/* 3. Правая колонка (Серая карточка) */
.conf-tl-card {
    flex-grow: 1;
    background-color: #f2f3f5;
    border-radius: 30px;
    padding: 30px 40px;
    margin-bottom: 20px;
}
.conf-tl-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}
.conf-tl-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.conf-tl-place {
    font-size: 16px;
    color: #666;
}

/* Спикеры внутри карточки */
.conf-tl-speakers {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}
.conf-sp-name {
    color: #1A75E8; /* Синий цвет для ФИО */
    font-weight: bold;
}
.conf-sp-desc {
    color: #666;
    margin-left: 5px;
}

.conf-tl-theme {
    font-size: 14px;
    margin-top: 15px;
}

/* =========================================
   ЭФФЕКТ ОБТЕКАНИЯ КНОПКИ (ФИНАЛЬНЫЙ ИДЕАЛ)
   ========================================= */
.conf-relative {
    position: relative;
    padding-bottom: 100px;
    /* Обязательно срубаем родной правый угол белой карточки, чтобы он не выпирал */
    border-bottom-right-radius: 0 !important;
}

/* Сам серый вырез (контейнер кнопки) */
.conf-cutout {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #f5f6f8; /* Цвет серого фона страницы */
    padding: 20px 0 0 20px;
    border-top-left-radius: 30px; /* Внутреннее скругление серого выреза */
    z-index: 10;
}

/* Общие стили для двух вогнутых уголков (рисуем их серыми!) */
.cutout-br::before,
.cutout-br::after {
    content: '';
    position: absolute;
    width: 25px;  /* Размер радиуса обратного угла */
    height: 25px;
    pointer-events: none;
}

/* 1. ВЕРХНИЙ уголок (сидит ровно НАД серым блоком) */
.cutout-br::before {
    bottom: 100%;
    right: 0;
    /* Рисуем круг в левом верхнем углу (прозрачный), остальное заливаем серым */
    /* 24.5px и 25px нужны для идеального сглаживания без пиксельных лесенок */
    background-image: radial-gradient(circle at 0 0, transparent 24.5px, #f5f6f8 25px);
}

/* 2. ЛЕВЫЙ уголок (сидит ровно СЛЕВА от серого блока) */
.cutout-br::after {
    bottom: 0;
    right: 100%;
    /* Рисуем круг в левом верхнем углу (прозрачный), остальное заливаем серым */
    background-image: radial-gradient(circle at 0 0, transparent 24.5px, #f5f6f8 25px);
}

/* Чтобы текст на кнопке не ломался */
.conf-cutout button {
    white-space: nowrap;
}
/* =========================================
   СЛАЙДЕР ГАЛЕРЕИ
   ========================================= */
.conf-gallery-section {
    margin-top: 40px;
}
.conf-gallery-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* Контейнер, скрывающий все, что не влезло */
.conf-gallery-viewport {
    flex-grow: 1;
    overflow: hidden;
}

/* Лента, которая двигается */
.conf-gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

/* Элемент галереи (На ПК показываем 4 картинки) */
.conf-gallery-item {
    /* 100% ширины / 4 картинки минус отступы */
    min-width: calc(25% - 15px);
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
}
.conf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================
   МОДАЛЬНОЕ ОКНО
   ========================================= */
/* Затемняющий фон на весь экран */
.conf-modal-overlay {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999; /* Поверх всех элементов сайта */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease; /* Плавное появление */
}

/* Класс для отображения */
.conf-modal-overlay.show {
    display: flex;
    opacity: 1;
}

/* Само белое окно */
.conf-modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 550px;
    margin: 15px;
    padding: clamp(25px, 5vh, 50px) clamp(30px, 5vw, 50px);
    border-radius: 20px;
    position: relative;
    box-sizing: border-box;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 95vh;
    overflow-y: auto;
    scrollbar-width: none; /* Для Firefox */
    -ms-overflow-style: none;  /* Для IE/Edge */
}

/* Убираем полосу прокрутки для Chrome, Safari, Opera */
.conf-modal-content::-webkit-scrollbar {
    display: none;
}
/* Эффект увеличения окна при появлении */
.conf-modal-overlay.show .conf-modal-content {
    transform: scale(1);
}

/* Заголовок плавно уменьшается с 28px до 22px на низких экранах */
.conf-modal-title {
    margin-top: 0;
    margin-bottom: clamp(5px, 1.5vh, 10px);
    font-size: clamp(22px, 3.5vh, 28px);
    font-weight: bold;
    text-align: left;
    color: #111;
}

.conf-modal-subtitle {
    font-size: clamp(13px, 2vh, 15px);
    color: #999;
    line-height: 1.4;
    /* Уменьшаем отступ снизу на низких экранах */
    margin-bottom: clamp(15px, 3vh, 30px);
}

/* Отступы между самими полями ввода */
.conf-form-row {
    margin-bottom: clamp(10px, 2vh, 20px);
}

/* Лейблы (Названия полей) */
.conf-form-label {
    display: block;
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}
.conf-form-label .req {
    color: #E6004C; /* Красная звездочка */
}
/* Инпуты (Поля ввода) */
.conf-form-input input[type="text"],
.conf-form-input input[type="email"],
.conf-form-input textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: #F7F8FA;
    border: 1px solid #F7F8FA;
    border-radius: 10px;

    /* Сжимаем высоту инпута на низких экранах */
    padding: clamp(10px, 2vh, 16px) 20px;

    font-size: 16px;
    color: #333;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

/* Цвет плейсхолдера */
.conf-form-input input::placeholder,
.conf-form-input textarea::placeholder {
    color: #bbb;
}

/* Состояние инпута при клике (Фокус) - белеет и появляется красная рамка */
.conf-form-input input:focus,
.conf-form-input textarea:focus {
    background-color: #ffffff;
    border-color: #E6004C; /* Малиновая обводка как на макете */
}

/* =========================================
   КАСТОМНЫЙ ЧЕКБОКС ПОЛИТИКИ
   ========================================= */
.conf-policy-row {
    margin-top: clamp(15px, 3vh, 30px);
    margin-bottom: clamp(15px, 3vh, 30px);
}
.conf-policy-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}
/* Прячем стандартный системный чекбокс */
.conf-hidden-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Рисуем свой красивый квадратик */
.conf-custom-checkbox {
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    position: relative;
    flex-shrink: 0;
    transition: 0.2s;
}
/* Рисуем галочку внутри квадратика (по умолчанию скрыта) */
.conf-custom-checkbox::after {
    content: '';
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #E6004C; /* Красная галочка */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* Показываем галочку и красим рамку, когда чекбокс нажат */
.conf-hidden-checkbox:checked ~ .conf-custom-checkbox {
    border-color: #E6004C;
}
.conf-hidden-checkbox:checked ~ .conf-custom-checkbox::after {
    display: block;
}

.conf-policy-text {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
    padding-top: 2px;
}

/* =========================================
   КНОПКА ОТПРАВКИ
   ========================================= */
.conf-submit-btn {
    width: 100%;
    background-color: #3B5B9D;
    color: #fff;
    border: none;
    border-radius: 30px;

    /* Сжимаем высоту кнопки */
    padding: clamp(14px, 2.5vh, 18px);

    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.conf-submit-btn:hover {
    background-color: #2a437a;
}

/* =========================================
   ЭКРАН УСПЕШНОЙ ОТПРАВКИ (ПО МАКЕТУ)
   ========================================= */

/* Контейнер экрана успеха (выравниваем по центру) */
.conf-form-success-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Делаем блок высоким, чтобы он занял место формы в модалке */
    min-height: 50vh;
    padding: 40px 0;
}

/* 1. Внешнее кольцо с сине-голубым градиентом */
.success-icon-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    /* Градиент скопирован с макета */
    background: linear-gradient(135deg, #375796 0%, #4FA3CC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

/* 2. Внутренний белый круг (создает эффект кольца) */
.success-icon-circle {
    width: 124px; /* Чуть меньше внешнего, чтобы осталась толстая рамка 8px */
    height: 124px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3. Сама галочка (рисуется через CSS border) */
.success-icon-check {
    width: 45px;
    height: 25px;
    /* Цвет галочки (берем средний синий из градиента) */
    border-bottom: 8px solid #4384b6;
    border-left: 8px solid #4384b6;
    /* Поворачиваем углом вниз */
    transform: rotate(-45deg);
    /* Оптическое центрирование (поднимаем чуть вверх) */
    margin-top: -15px;
}

/* Заголовки */
.success-title-1 {
    font-size: clamp(22px, 3vh, 26px);
    font-weight: 800; /* Очень жирный шрифт */
    color: #111111;
    margin-bottom: 10px;
}

.success-title-2 {
    font-size: clamp(20px, 2.5vh, 24px);
    font-weight: 800;
    color: #111111;
    margin-bottom: 30px;
}

/* Серый подзаголовок */
.success-subtitle {
    font-size: clamp(15px, 2vh, 18px);
    color: #9ea3a8; /* Светло-серый цвет текста с макета */
    line-height: 1.5;
}

/* Стиль для ошибок (остается на всякий случай) */
.conf-form-error {
    color: #E6004C;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Крестик закрытия */
.conf-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}
.conf-modal-close:hover {
    color: #E6004C; /* При наведении красится в малиновый */
}

/* =========================================
   АДАПТИВНОСТЬ (Добавить в ваш @media)
   ========================================= */
@media (max-width: 991px) {
    /* На мобилке кнопку делаем на всю ширину и убираем вырезы */
    .conf-cutout {
        position: static;
        padding: 0;
        margin-top: 20px;
        background: transparent;
    }
    .cutout-br::before, .cutout-br::after {
        display: none; /* Отключаем тени углов */
    }
    .conf-btn-primary {
        width: 100%;
    }
    /* На мобилке показываем по 1 картинке */
    .conf-gallery-item {
        min-width: 100%;
    }
}

/* =========================================
   МОБИЛЬНАЯ АДАПТИВНОСТЬ
   ========================================= */
@media (max-width: 991px) {
    .conf-program-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .conf-pt-left {
        flex-direction: column;
        gap: 15px;
    }

    /* Перестраиваем таймлайн */
    .conf-tl-item {
        flex-direction: column;
    }
    .conf-tl-time {
        width: 100%;
        text-align: left;
        padding: 0 0 10px 0;
    }
    .conf-tl-divider {
        display: none; /* Прячем черную линию на смартфонах */
    }
    .conf-tl-card {
        margin-bottom: 30px;
    }
}

/* Мобильная адаптивность (если нужно) */
@media (max-width: 768px) {
    .conf-nav {
        gap: 20px;
        padding: 20px 0;
    }
    .conf-nav a {
        font-size: 16px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 991px) {
    .conf-hero-grid {
        grid-template-columns: 1fr;
    }
    .conf-card {
        border-radius: 30px !important; /* Убираем сложную ассиметрию на мобилках */
        padding: 30px;
    }
    .conf-card-photo {
        height: 300px; /* Фиксируем высоту фото */
        padding: 0;
    }
    .conf-gallery-track {
        flex-direction: column; /* На мобилке можно выстроить фото друг под другом или подключить swiper.js */
    }
    .conf-gallery-arrow {
        display: none; /* Прячем стрелки на мобилке */
    }
}
/* End */
/* /local/templates/landing/components/bitrix/news.list/conference_landing/style.css?177513652527916 */
