/* =========================================================
   VARIABLES (comme avant, propre)
   ========================================================= */
:root {
  --espaces-height: 400px; /* 450px / 550px / 700px */
  --espaces-gap: 36px;
}

/* =========================================================
   CONTAINER
   ========================================================= */
.esp-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* =========================================================
   TRACK
   ========================================================= */
.esp-gallery-track {
  display: flex;
  gap: var(--espaces-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-inline: 12vw;
  scrollbar-width: none;
}

.esp-gallery-track::-webkit-scrollbar {
  display: none;
}

/* =========================================================
   SLIDE
   ========================================================= */
.esp-gallery-slide {
  flex: 0 0 60vw;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .esp-gallery-slide {
    flex-basis: 50vw;
  }
}

/* =========================================================
   IMAGE WRAPPER (équivalent de .esp-img)
   ========================================================= */
.esp-gallery-media {
  position: relative;
  width: 100%;
  height: var(--espaces-height);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transition: transform 0.35s ease;
}

/* Image */
.esp-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   OVERLAY (uniquement si légende)
   ========================================================= */
.esp-gallery-media:has(.esp-gallery-caption)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    transparent
  );
}

/* =========================================================
   LÉGENDE WORDPRESS (Brygada)
   ========================================================= */
.esp-gallery-caption {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-family: 'Brygada 1918', serif;
  font-size: 22px;
  font-weight: 400;
  z-index: 2;
  pointer-events: none;
}

/* =========================================================
   EFFET "SLIDE ACTIF" (équivalent swiper-slide-active)
   ========================================================= */
.esp-gallery-slide.is-active .esp-gallery-media {
  transform: scale(1.06);
}

/* =========================================================
   FLÈCHES
   ========================================================= */
.esp-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
  line-height: 1;
}

.esp-prev { left: 24px; }
.esp-next { right: 24px; }

/* =========================================================
   MOBILE (reprend ton comportement souhaité)
   ========================================================= */
@media (max-width: 767px) {

  .esp-gallery-track {
    padding-inline: 0;
    gap: 16px;
  }

  .esp-gallery-slide {
    flex-basis: 100%;
  }

  .esp-gallery-media {
    height: auto;
    aspect-ratio: 1 / 1;
    transform: none !important;
  }

  .esp-gallery-caption {
    font-size: 18px;
    bottom: 14px;
    padding: 0 14px;
    white-space: normal;
  }

  .esp-gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}