:root {
    --Accent-Default: #00B1BA;
    --Text-Dark: #292A2A;
    --BG-Gray: #F3F4F5;
    --White: white;
}

* { box-sizing: border-box; }

.timeline-section {
    background: var(--BG-Gray);
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.timeline-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 0px;
}

.timeline-main-title {
    color: var(--Text-Dark) !important;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px !important;
    text-align: left;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Элемент хронологии */
.timeline-item {
    position: relative;
    background: var(--White);
    border-radius: 16px;
    padding: 40px 40px 40px 60px; /* Слева отступ 60px под линию и точку */
    overflow: visible;
}

/* Точка (Круг) */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 28px; /* Центр линии (60 - 12 - 20 отступ) */
    top: 64px; /* Выравнивание примерно по центру заголовка года (48px шрифт + 40px паддинг) */
    width: 12px;
    height: 12px;
    background: var(--Accent-Default);
    border-radius: 50%;
    z-index: 2;
}

/* Пунктирная линия */
.timeline-item::after {
    content: '';
    position: absolute;
    left: 33px; /* 28 + 12/2 - 1 (толщина линии) */
    top: 84px; /* Начинается под точкой */
    bottom: -20px; /* Выходит за границы элемента в промежуток (gap 20px) */
    border-left: 2px dashed rgba(0, 177, 186, 0.5);
    z-index: 1;
}

/* У последнего видимого элемента линия не выходит за границы */
.timeline-item.last-visible::after {
    bottom: 40px; /* Заканчивается на уровне паддинга снизу */
}

/* Скрытые элементы */
.timeline-hidden {
    display: none;
}

/* Контент */
.timeline-year {
    color: var(--Accent-Default) !important;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
}

.timeline-text {
    color: var(--Text-Dark) !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
}

/* Кнопка "Показать еще" */
.timeline-show-more {
    width: 100%;
    height: 72px;
    background: rgba(0, 177, 186, 0.10);
    border: none;
    border-radius: 12px;
    color: var(--Accent-Default) !important;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    transition: background 0.2s;
}

.timeline-show-more:hover {
    background: rgba(0, 177, 186, 0.20);
}

/* АДАПТИВНОСТЬ (МОБИЛКИ) */
@media (max-width: 768px) {
    .timeline-section {
        padding: 48px 0;
    }
    .timeline-main-title {
        font-size: 28px;
    }
    .timeline-item {
        padding: 24px 20px 24px 40px; /* Уменьшаем отступы */
    }
    .timeline-item::before {
        left: 14px; /* Сдвигаем точку левее на мобилках */
        top: 38px; /* Подгоняем под уменьшенный шрифт года */
    }
    .timeline-item::after {
        left: 19px;
        top: 54px;
        bottom: -20px;
    }
    .timeline-item.last-visible::after {
        bottom: 24px;
    }
    .timeline-year {
        font-size: 32px; /* Уменьшаем год на мобилках */
        margin-bottom: 12px;
    }
    .timeline-text {
        font-size: 14px;
        line-height: 20px;
    }
    .timeline-show-more {
        height: 56px;
    }
}