.default .swiper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  height: 60vh; /* % de la hauteur de l'écran */
}

.default .swiper-slide {
  display: flex;
  justify-content: center; /* centre horizontalement si image plus petite */
  align-items: center;     /* centre verticalement si image plus petite */
}

.default .swiper-slide img {
  width: 100%;
  height: 90vh;
  object-fit: cover; /* remplissage avec rognage */
  display: block;
}

/* Boutons */
.default .swiper-button-next::after,
.default .swiper-button-prev::after {
  color: #fdfdfd !important;
}

/* Pagination */
.default .swiper-pagination-bullet {
  background-color: #ccc !important;
  opacity: 1 !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.default .swiper-pagination-bullet-active {
  background-color: #000 !important;
}

