/* Keep the document as the only vertical scroll container. Using hidden/auto
   on body creates a second container that traps wheel gestures over content. */
html:root body {
  overflow-x: clip !important;
  overflow-y: visible !important;
  overscroll-behavior-y: auto !important;
}
html:root {
  overflow-y: auto !important;
  overscroll-behavior-y: auto !important;
}
