/* Sunday Slideshow Containment Fix */
.visit-image.sunday-slideshow {
  position: relative !important;
  width: 100% !important;
  height: 400px !important;
  overflow: hidden !important;
  border-radius: 8px;
  display: block;
}

.sunday-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block;
  pointer-events: none;
}

.sunday-slideshow .slide.active {
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .visit-image.sunday-slideshow {
    height: 250px !important;
  }
}
