/* .mySwiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
} */
.mySwiper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.container-hero-home {
    position: relative;
    max-width: 100%;
}

.container-hero-home .slider-hero-slider .swiper {
    /* height: min(60dvh, 600px); */
    height: min(45dvh, 600px);
}

.container-hero-home .slider-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.container-hero-home .slider-hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* hauteur du dégradé visible */
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
  z-index: 2;
  pointer-events: none; /* important : ne bloque pas les clics sur le slider */
}

@media (min-width: 1024px)  {
  .container-hero-home .slider-hero-slider .swiper {
    height: min(80dvh, 700px);
  }
}