/* ═══════════════════════════════════════════════════
   Timeline – Vertical dot-and-line timeline
   ═══════════════════════════════════════════════════ */

.c-timeline {
    display: flex;
    flex-direction: column;
}

/* Each row: dot-track + body */
.c-timeline__item {
    display: flex;
    gap: 24px;
}

/* Dot column – centres dot and line vertically */
.c-timeline__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.c-timeline__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #b9956a;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.c-timeline__line {
    width: 1px;
    flex: 1;
    background-color: #d6cdc2;
}

/* Text column */
.c-timeline__body {
    padding-bottom: 2rem;
}

.c-timeline__year {
    display: block;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-family: var(--e-global-typography-primary-font-family);
    color: #b9956a;
}

.c-timeline__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.625;
    color: #2b2b2bcc;
}
