/* The complete shared desktop link set needs more than 1290px. */
@media (min-width: 769px) and (max-width: 1290px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 10001;
  }

  .hamburger.active {
    position: fixed;
    top: 12px;
    right: 16px;
    background: rgba(15, 23, 42, .96);
    border: 1px solid rgba(148, 163, 184, .26);
    border-radius: 10px;
  }

  nav > ul {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    padding: 84px 24px 28px;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    background: var(--navy);
    box-shadow: none;
    z-index: 9999;
  }

  nav > ul.open { display: flex; }
  body.nav-menu-open { overflow: hidden; }
  nav > ul li, .nav-dropdown-item { width: 100%; }

  nav > ul li a,
  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    padding: 14px 16px;
    align-items: center;
    border-radius: 12px;
    font-size: 16px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, .04);
  }

  .nav-dropdown-toggle { justify-content: space-between; }
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle[aria-expanded=true] { color: var(--teal); background: rgba(68, 229, 194, .08); }

  .nav-dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    padding: 14px 16px;
    gap: 0;
    transform: none;
    flex-direction: column;
    background: rgba(68, 229, 194, .04);
    border: 1px solid rgba(68, 229, 194, .12);
    border-radius: 12px;
    box-shadow: none;
    animation: none;
  }

  .nav-dropdown-panel.open { display: flex; }
  .nav-dropdown-col { margin-bottom: 14px; }
  .nav-dropdown-col:last-child { margin-bottom: 0; }
  .nav-dropdown-panel a { padding: 6px 0; font-size: 15px; color: #c0cfe8; }
}
