.site-menu {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--text, #f3f6fb);
}

@media (max-width: 640px) {
  .site-nav-shell {
    position: relative;
    min-height: 60px;
    padding: 8px 18px;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between;
  }

  .site-menu {
    display: inline-flex;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .site-nav-shell > .nav-logo,
  .site-nav-shell > .brand,
  .site-nav-shell > .site-menu {
    position: relative;
    z-index: 111;
  }

  .site-nav-shell > .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 110;
    gap: 0;
    padding: 10px 18px 18px;
    flex-direction: column;
    align-items: stretch;
    background: #07090f;
    border-bottom: 1px solid var(--border, var(--stroke, #293244));
  }

  .site-nav-shell > .nav-links.open {
    display: flex;
  }

  .site-nav-shell > .nav-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .site-nav-shell > .nav-links .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }
}
