/* ============================================
   HEC TIMELINE LIST
   ============================================ */

.hec-timeline-list-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hec-timeline-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.hec-timeline-list__item {
    width: 100%;
    display: flex;
    color: inherit;
    text-decoration: none !important;
}

.hec-timeline-list__item:hover {
    text-decoration: none !important;
}

.hec-timeline-list__item-inner {
    width: 100%;
    display: flex;
    align-items: flex-start;
    column-gap: 52px;
    box-sizing: border-box;
}

.hec-timeline-list__year {
    width: 220px;
    min-width: 220px;
    display: block;
    color: var(--color-primary, #4E5B31);
    font-family: var(--font-primary, "Google Sans", Arial, sans-serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-sizing: border-box;
}

.hec-timeline-list__text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    color: #212121;
    font-family: var(--font-primary, "Google Sans", Arial, sans-serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.52;
    letter-spacing: 0;
    box-sizing: border-box;
}

.hec-timeline-list__link {
    cursor: pointer;
}

.hec-timeline-list__link .hec-timeline-list__year,
.hec-timeline-list__link .hec-timeline-list__text {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.hec-timeline-list__link:hover .hec-timeline-list__year,
.hec-timeline-list__link:hover .hec-timeline-list__text {
    opacity: 0.82;
}

@media (max-width: 1024px) {
    .hec-timeline-list {
        gap: 26px;
    }

    .hec-timeline-list__item-inner {
        column-gap: 32px;
    }

    .hec-timeline-list__year {
        width: 170px;
        min-width: 170px;
        font-size: 20px;
    }

    .hec-timeline-list__text {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .hec-timeline-list {
        gap: 22px;
    }

    .hec-timeline-list__item-inner {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 6px;
        column-gap: 0;
    }

    .hec-timeline-list__year {
        width: auto;
        min-width: 0;
        font-size: 18px;
    }

    .hec-timeline-list__text {
        width: 100%;
        font-size: 18px;
        line-height: 1.45;
    }
}
