.site-nav {
  background: white;
  color: #111;
}

.nav-inner {
  max-width: var(--nav-max-width);
  margin: 0 auto;
  padding: .80rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: inherit;
  text-decoration: none
}

.brand-logo {
  width: 36px;
  height: 36px;
  display: block
}

.brand-text {
  font-weight: 500;
  font-size: 1rem
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .35rem;
  align-items: center
}

.nav-list a {
  color: #111;
  text-decoration: none;
  background-color: #fff;
  padding: .45rem .6rem;
  border-radius: .5em;
  display: inline-block;
  font-size: small;
}

.nav-list a:hover,
.nav-list a:focus {
  /* background: rgba(255, 255, 255, 0.08); */
  color: #fff;
  background-color: #0F172A;
  outline: none
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: inherit;
  padding: .25rem;
  cursor: pointer
}

.nav-toggle svg {
  display: block
}

/* Mobile styles */
@media (max-width:820px) {
  .nav-toggle {
    display: block
  }

  .nav-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--color-secondary);
    flex-direction: column;
    padding: .6rem 1rem;
    display: none;
    gap: .25rem
  }

  .nav-list.show {
    display: flex
  }

  .nav-inner {
    position: relative
  }
}

@media (max-width:420px) {
  .brand-text {
    display: none
  }
}