/* about.css — styles specific to the about page */

/* about page starts in light scheme since there's no hero scroll */
body.scheme-light #about-hero {
    padding: 10rem 5% 4rem;
    text-align: center;
}

/* ===========================
   TIMELINE
   =========================== */
#timeline-section {
    padding: 6rem 5%;
    background: var(--bg-card);
}

.timeline-container {
    margin-top: 3rem;
}

.timeline {
    list-style: none;
    position: relative;
    padding-left: 2rem;
}

/* the vertical line running down the left */
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding: 0 0 3rem 2rem;
}

/* the dot on the timeline line */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.4rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===========================
   MEMBERS GRID
   =========================== */
#members-section {
    padding: 6rem 5%;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}