/* V45 — pure native browser scrolling */
html{
  overflow-x:hidden!important;
  overflow-y:auto!important;
  height:auto!important;
  scroll-behavior:auto!important;
  overscroll-behavior:auto!important;
}
body{
  overflow-x:hidden!important;
  overflow-y:auto!important;
  height:auto!important;
  min-height:100%!important;
  max-height:none!important;
  position:static!important;
  scroll-behavior:auto!important;
  overscroll-behavior:auto!important;
  touch-action:auto!important;
  -webkit-overflow-scrolling:touch;
}
/* Menu itself may scroll internally; page wheel remains browser-native. */
.shg-mobile-drawer{
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}
/* Maps keep their own intended gestures. */
#shg-property-map,.maplibregl-map,.gm-style{overscroll-behavior:contain}
