/* ═══════════════════════════════════════════════════════════════════
   about.css — About page specifics
   ═══════════════════════════════════════════════════════════════════ */

/* ── Narrative + Timeline grid ──────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.about-text p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.1rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong {
    color: var(--text);
    font-weight: 600;
}
.about-text em {
    font-style: italic;
    color: var(--accent);
    font-family: var(--display);
    font-size: 1.02em;
}

/* ── Timeline ───────────────────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: 1.6rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 9px;
    bottom: 9px;
    width: 1px;
    background: var(--border);
}
.tl-item {
    position: relative;
    padding-bottom: 1.6rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
    content: '';
    position: absolute;
    left: -1.6rem;
    top: 7px;
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--card);
    border: 1.5px solid var(--accent);
    transition: all .3s var(--ease);
}
.tl-item.current::before {
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}
.tl-item.future::before {
    border-style: dashed;
    border-color: var(--amber);
    background: var(--card);
}
.tl-date {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.tl-item.current .tl-date { color: var(--accent); }
.tl-item.future  .tl-date { color: var(--amber); }

.tl-title {
    font-family: var(--display);
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 0.25rem;
    letter-spacing: -0.005em;
}
.tl-desc {
    font-size: 0.86rem;
    color: var(--text-soft);
    line-height: 1.55;
}

/* ── Pillars ────────────────────────────────────────────────────── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.pillar-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem 1.7rem 1.7rem;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .3s var(--ease);
}
.pillar-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: var(--shadow-card);
}
.pillar-card:hover::before { transform: scaleY(1); }

.pillar-card .p-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--accent-bg);
    display: grid;
    place-items: center;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all .3s var(--ease);
}
.pillar-card:hover .p-icon {
    background: var(--accent);
    color: var(--card);
}
.pillar-card .p-icon svg {
    width: 22px; height: 22px;
}
.pillar-card .p-title {
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--text);
    letter-spacing: -0.005em;
}
.pillar-card .p-desc {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ── Awards ─────────────────────────────────────────────────────── */
.awards-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.award-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.2rem;
    align-items: center;
    padding: 1.1rem 1.4rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s var(--ease);
}
.award-item:hover {
    transform: translateX(3px);
    border-color: var(--amber);
    box-shadow: var(--shadow-card);
}
.award-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--amber-bg);
    border: 1px solid var(--amber-glow);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.award-body .a-title {
    font-family: var(--display);
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 0.15rem;
    letter-spacing: -0.005em;
}
.award-body .a-venue {
    font-size: 0.82rem;
    color: var(--text-soft);
    font-style: italic;
    line-height: 1.4;
}

/* ── Sub-lede paragraph ─────────────────────────────────────────── */
.sub-hero .sub-lede {
    max-width: 620px;
    margin-top: 1.2rem;
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.4rem; }
    .pillars-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .award-item { grid-template-columns: 42px 1fr; gap: 0.9rem; padding: 1rem 1.1rem; }
    .award-icon { width: 38px; height: 38px; font-size: 1.05rem; }
}
