/* /blocks/image-carousel/style.css */
.image-carousel-block .splide__slide {
  display: flex; /* Aligns image and caption if needed */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-carousel-block .splide__slide img {
  width: 100%;
  height: auto; /* Adjust as needed, e.g., fixed height */
  max-height: 400px; /* Example max height */
  object-fit: cover; /* Or 'contain' */
  display: block;
}

.image-carousel-block .splide__slide__caption {
  text-align: center;
  font-size: 0.9em;
  margin-top: 0.5em;
  color: #555;
}

@media (max-width: 768px) {
  .image-carousel-block .splide__slide img {
    object-fit: cover;
    height: 100%;
  }
}