/* ============================================
   SECTION: Naturalistic ABA Care — 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 ABA Therapy photo band.
   ============================================ */

.ndbi-photo {
    width: 100%;
    aspect-ratio: 2880 / 1400;
    background: var(--color-white) url("../../../images/ndbi-therapy/siblings_bed_banner_20260820_183203_swirl.7634075a590f.png") no-repeat center center / cover;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .ndbi-photo {
        aspect-ratio: 4 / 3;
    }
}
