/* ── Quem Somos ───────────────────────────────────────────────────── */

.about-page {
    padding-bottom: 6rem;
}

.about-header {
    margin-bottom: 2.5rem;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.about-figure {
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 1.25rem;
    overflow: hidden;
}

.about-figure img,
.about-figure .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-copy h3 {
    margin: 0 0 1rem;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 800;
    color: var(--text);
}

.about-copy .lead {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--muted);
}

@media (max-width: 860px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-figure {
        aspect-ratio: 16 / 10;
    }
}
