/* Vidéo scroll scrub — section enduro (remplace draw-scroll / goutte) */

.enduro-background.drop-scroll {
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.drop-scroll__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.drop-scroll__canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drop-scroll__video {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.enduro-content_wrapper {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .drop-scroll__sticky {
    position: relative;
    height: 60vh;
    min-height: 20rem;
  }

  .enduro-background.drop-scroll {
    position: relative;
    inset: auto;
    height: auto;
  }
}
