/*
 * Kept as a separately versioned asset so previously cached site CSS cannot
 * make the shared mobile header look different between pages.
 */
@media (max-width: 960px) {
  body .mobile-menu nav {
    gap: 0;
    padding: 10px;
  }

  body .mobile-menu nav > a:not(.button),
  body .mobile-menu nav > button {
    display: flex;
    min-height: 35px;
    align-items: center;
    margin: 0;
    padding: 8px 10px;
    border: 0;
    border-radius: 10px;
    color: var(--ink-soft);
    background: transparent;
    font: inherit;
    font-weight: 550;
    line-height: 1.2;
    text-align: left;
  }

  body .mobile-menu nav > .mobile-menu-action {
    margin-top: 4px;
    color: var(--blue-dark);
    font-weight: 650;
  }

  body .mobile-menu nav > .button.mobile-menu-action--primary {
    display: inline-flex;
    width: fit-content;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    justify-self: start;
    margin-top: 4px;
    padding: 0 20px;
    border: 1px solid var(--blue);
    border-radius: 14px;
    color: #fff;
    background: var(--blue);
    font-weight: 650;
    line-height: 1;
    text-align: center;
  }

  body .mobile-menu nav > .button.mobile-menu-action--primary:hover {
    color: #fff;
    background: var(--blue-dark);
    border-color: var(--blue-dark);
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  body .mobile-menu nav > .button.mobile-menu-action--primary {
    display: none;
  }
}
