/* Wrapper dans la grille */
.Slider-Wrapper {
  grid-column: 1 / -1;
  width: 100%;
  overflow: hidden;
  padding: 0 1rem; /* marge interne pour ne pas coller aux bords sur mobile */
  box-sizing: border-box;
}

/* Swiper centré et limité */
.swiper {
  width: 100%;
  max-width: 1200px;
  margin: 1rem auto 150px;
  overflow: visible;
}

/* Slides */
.swiper-slide {
  flex: 0 0 auto;
  width: auto;
  margin-right: 30px;
}

.swiper-slide:last-child {
  margin-right: 0;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* Boutons navigation */
.swiper-button-prev.left,
.swiper-button-next.right {
  position: absolute;
  bottom: -80px;
  width: 48px;
  height: 48px;
  background-color: var(--color-brand);
  border: none;
  z-index: 10;
  color: var(--color-dark);
  cursor: pointer;
}

.swiper-button-prev.left:after,
.swiper-button-next.right:after {
  font-size: 16px;
}

.swiper-button-prev.left {
  right: 48px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: 1px solid black;
}

.swiper-button-next.right {
  right: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: 1px solid black;
}

.slider-item img {
  max-width: 150px;
  border-radius: unset;
}

@media all and (min-width: 1000px) {
  .swiper-wrapper {
    gap: 32px;
  }
}

@media all and (min-width: 1400px) {
  .swiper-wrapper {
    gap: 3rem;
  }
}



