/* =========================================================   SWIPER - STYLE GLOBAL   Format de référence : 700 x 368 px   ========================================================= */

.swiper {
  width: 100%;
  max-width: 951px;
  aspect-ratio: 700 / 368;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--bs-dark);
}

.swiper-wrapper, .swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

