/* ============================================
   SECTION: Why Join ANNA — Photo band (full-width)
   Edge-to-edge photo as a CSS background. Height is driven by
   the image's aspect ratio so the whole photo shows at any
   width. Mirrors the other full-width photo bands.
   ============================================ */

.wja-photo {
    width: 100%;
    aspect-ratio: 2880 / 1400;       /* full image, proportional at any width */
    background: var(--color-white)
        url("../../../images/why-join-anna/toddler_portrait_20260812_215548.9df676c0684b.png") no-repeat center center / cover;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .wja-photo {
        aspect-ratio: 4 / 3;         /* taller crop on phones */
    }
}
