/* ============================================
   SECTION: Neuroaffirming — Photo band
   Wide rounded photo capped at the container width.
   Mirrors the Our Approach photo band.
   ============================================ */

.neuro-photo {
    padding: 20px var(--section-side-padding) 80px;
    background: var(--color-white);
}

.neuro-photo__frame {
    position: relative;
    max-width: var(--container-max);
    margin-inline: auto;
}

.neuro-photo__img {
    width: 100%;
    height: auto;
    aspect-ratio: 2880 / 1400;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    display: block;
}

/* ----- Responsive -----
   Below the desktop breakpoint the photo runs edge to edge: the side gutter
   and the corner radius both go, matching the Our Approach photo band. */
@media (max-width: 1024px) {
    .neuro-photo {
        padding: 20px 0 60px;
    }
    .neuro-photo__img {
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .neuro-photo {
        padding: 16px 0 56px;
    }
    .neuro-photo__img {
        aspect-ratio: 4 / 3;
    }
}
