/* ============================================
   SECTION: Life at 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.
   ============================================ */

.la-photo {
    width: 100%;
    aspect-ratio: 1440 / 700;        /* full image, proportional at any width */
    background: var(--color-white) url("../../../images/life-at-anna/floor_story_time_20260818_063741_swirl.204931f240ad.png") no-repeat center center / cover;
}

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