/*
 * MR9 v10.11.2 — laptop navigation function hotfix
 * Scope: correct the legacy v8.2 display override without changing typography,
 * identity, hero layouts, content, or navigation information architecture.
 */

.mobile-nav[hidden] {
  display: none !important;
}

@media (max-width: 1439px) {
  .topbar > .menu {
    position: relative;
    z-index: 102;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .mobile-nav:not([hidden]) {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (min-width: 1440px) {
  .mobile-nav {
    display: none !important;
  }
}
