/* Site-wide hover polish for image cards: a gentle zoom on the photo.
   Scoped to any element that already carries the overflow-hidden clipping
   class AND contains an <img> — that pattern is how every image card on
   this site is built, so this reaches all of them (service cards, dentist
   photo, gallery items, about photos, service detail hero images) without
   touching unrelated overflow-hidden containers that hold no image (mobile
   menu, modals, swiper wrappers, etc). */
.overflow-hidden:has(img) img {
  transition: transform 0.5s ease;
}

.overflow-hidden:has(img):hover img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .overflow-hidden:has(img) img {
    transition: none;
  }
  .overflow-hidden:has(img):hover img {
    transform: none;
  }
}
