/* ── About page ───────────────────────────────────────────── */

.about-hero {
    padding-top: 8rem;
    padding-bottom: 2rem;
}

.about-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

/* ── Bio blocks ───────────────────────────────────────────── */
.bio {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 5rem;
}

.bio:last-child { margin-bottom: 0; }

.bio-photo img {
    width: 240px;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    border: 1px solid var(--border);
    filter: grayscale(15%);
}

.bio-text h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.bio-role {
    color: var(--accent-lt);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.bio-text p {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.bio-text p:last-child { margin-bottom: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .bio {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .bio-photo { display: flex; justify-content: center; }
    .bio-photo img { width: 200px; height: 250px; }
}
