.about-page {
    text-align: center;
}

.about-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin: 12px 0 16px;
}

.about-page p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}

.team-section {
    margin-top: 42px;
}

.team-section h2 {
    font-family: var(--font-display);
    margin-bottom: 18px;
}

.team-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.photo-caption {
    font-weight: 600;
    color: var(--ink);
}

@media (max-width: 600px) {
    .team-photo {
        width: 96px;
        height: 96px;
    }
}
