/* ── Bambino photoshoots — edge-to-edge 4-up image strip ────────────── */
.bmb-photos__strip { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.bmb-photos__cell { display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.bmb-photos__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.bmb-photos__cell:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .bmb-photos__strip { grid-template-columns: repeat(2, 1fr); margin-top: 28px; } }
