/* ── Hero ────────────────────────────────────────────────────────────────── */
#tl-hero {
    background: var(--dark);
    padding: 80px 0 72px;
    border-bottom: 1px solid var(--border);
}
.tl-hero-inner { max-width: 720px; }
.tl-hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0 0 20px;
    line-height: 1.1;
}
.tl-hero-title span { color: var(--red); }
.tl-hero-sub {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.7;
    margin: 0;
}

/* ── Entries ─────────────────────────────────────────────────────────────── */
#tl-main {
    background: var(--white);
    padding: var(--section-gap) 0;
}
.tl-entries {
    position: relative;
    padding-left: 120px;
}
.tl-entries::before {
    content: '';
    position: absolute;
    left: 88px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gray-200);
}
.tl-entry {
    display: grid;
    grid-template-columns: 0 1fr;
    gap: 0 40px;
    padding: 0 0 48px 0;
    position: relative;
}
.tl-entry:last-child { padding-bottom: 0; }
.tl-entry-year {
    position: absolute;
    left: -120px;
    top: 3px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--color-black);
    width: 80px;
    text-align: right;
}
.tl-entry::after {
    content: '';
    position: absolute;
    left: -34px;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gray-200);
    border-radius: 50%;
    transition: background 0.2s;
}
.tl-entry:hover::after,
.tl-entry--current::after {
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(225, 27, 34, 0.18);
}
.tl-entry--current .tl-entry-year { color: var(--red); }
.tl-entry-body { padding-bottom: 40px; border-bottom: 1px solid var(--gray-200); }
.tl-entry:last-child .tl-entry-body { border-bottom: none; padding-bottom: 0; }
.tl-entry-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.tl-entry-body > p {
    font-size: 0.88rem;
    color: var(--color-black);
    line-height: 1.75;
    margin: 0;
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */
#tl-cta {
    background: var(--dark);
    padding: var(--section-gap) 0;
    border-top: 1px solid var(--border);
}
.tl-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.tl-cta-heading {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 1.15;
}
.tl-cta-sub { font-size: 0.9rem; color: var(--white); line-height: 1.7; margin: 0; max-width: 480px; }
.tl-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 768px) {
    .tl-entries { padding-left: 80px; }
    .tl-entries::before { left: 56px; }
    .tl-entry-year { left: -80px; width: 52px; font-size: 0.65rem; }
    .tl-entry::after { left: -26px; }
    .tl-cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
}

@media (max-width: 480px) {
    /* Tighten the year rail so narrow phones keep more room for entry text */
    .tl-entries { padding-left: 64px; }
    .tl-entries::before { left: 44px; }
    .tl-entry-year { left: -64px; width: 40px; }
    .tl-entry::after { left: -22px; }
}
