/* Mobile menu scroll fix for Consulting theme */
@media (max-width: 1024px) {
  /* Make the slide-out header area scrollable and full-viewport */
  #header.show,
  .stm-header.show {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Ensure menu lists inside are scrollable and don't exceed viewport */
  .mobile_header .top_nav_mobile,
  .main_menu_nav,
  #header.show .nav-box,
  #header.show .main_menu_nav {
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Overlay covers full screen as fixed to block background interaction */
  .stm-header__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}


