.menu-link {
  color: #475569;
  transition: color 0.2s;
}

.menu-link:hover {
  color: #00346f;
}

.menu-dropdown {
  display: none;
  margin-top: 0; /* remove hover gap so cursor can move into dropdown */
}

/* removed hover-only rule to allow JS-controlled delayed open/close */

/* support click-to-open and keyboard focus */
.menu-dropdown-wrap.open .menu-dropdown,
.menu-dropdown-wrap:focus-within .menu-dropdown {
  display: block;
}

.mobile-panel {
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
