/* Simple fade-in so block doesn't flash unstyled */
.lazy-load-carousel {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  /* Optional: reserve some min-height to avoid layout jumps - adjust as needed */
  /* min-height: 120px; */
}

.lazy-load-carousel.loaded {
  opacity: 1;
}

/* Debugging helper (optional) - uncomment while testing to see wrapper boundaries */
/*
  .lazy-load-carousel {
    outline: 1px dashed rgba(0,0,0,0.08);
  }
  */
