/* Lenis Smooth Scrolling Base Styles
   --------------------------------------------------
   These rules are recommended by the Lenis documentation
   to ensure correct behaviour and accessibility.
*/

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Disable iframe interactions during scroll for smoother performance */
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}