@charset "UTF-8";
/* Swiper container */
.swiper {
  width: 100%;
  padding-bottom: 40px; /* for pagination space */
}

/* Slide styling */
.swiper-slide {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Center slide 70% width, others visible */
.swiper-slide {
  width: 70%;
}

/* Neighbor slides 15% visible — handled by CSS width + centeredSlides */
.swiper-wrapper {
  gap: 2rem; /* space between slides */
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
  color: #ffffff;
}/*# sourceMappingURL=swiper.css.map */