/*
 * Mobile Navigation Fixes
 * Ensures the toggle button is clickable and above other elements.
 */

.navigation__mobile-toggle {
  z-index: 100 !important;

  /* Ensure it's above normal content */
  position: relative;

  /* Needed for z-index to work */
  cursor: pointer;
}

/* Ensure the expanded menu is even higher */
.navigation__mobile-toggle[aria-expanded='true'] {
  z-index: 101 !important;
}

.navigation__mobile {
  z-index: 100 !important;
}
