/**
 * Comm360 — Défilement vers la page suivante (Scroll to Next Page — CSS FIDÈLE Osmo).
 *
 * Section haute (200vh) avec bloc intérieur collant plein écran : image de
 * fond, voile, contenu centré et anneau SVG de progression qui se dessine au
 * fil du défilement. Reprise verbatim de la fiche ; seule adaptation :
 * l'alias Comm360 .comm360-page-suivante est reconnu en plus de la classe
 * Osmo d'origine sur le wrapper (les deux reconnus).
 *
 * Les classes .scroll-next__* sont les classes de mise en page de la démo
 * Osmo (lien collant, fond, voile, contenu centré, anneau de progression) —
 * réutilisables telles quelles pour reproduire la démo.
 */

/* Wrapper de la section — alias Comm360 reconnu en plus de la classe Osmo. */
.scroll-next,
.comm360-page-suivante {
  min-height: 200vh;
  position: relative;
}

.scroll-next__inner {
  width: 100%;
  height: 100dvh;
  color: inherit;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: sticky;
  top: 0;
}

.scroll-next__bg {
  z-index: 0;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.scroll-next__bg-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.scroll-next__bg-overlay {
  z-index: 2;
  opacity: .25;
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.scroll-next__center {
  z-index: 2;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1em;
  display: flex;
  position: relative;
}

.scroll-next__sub {
  opacity: .6;
  letter-spacing: -.05em;
  font-family: Haffer XH, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1;
}

.scroll-next__h {
  letter-spacing: -.06em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Haffer XH, Arial, sans-serif;
  font-size: 6.25em;
  font-weight: 400;
  line-height: 1;
}

.scroll-next__progres {
  z-index: 1;
  color: #fff;
  width: 30em;
  position: absolute;
}

.scroll-next__progres-svg {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  transform: rotate(-90deg);
  overflow: visible !important;
}
