/* Authenticated state belongs to the typography of the existing navigation. */
.nav a.nav-login {
  color: #f6f1e7;
  font-weight: 700;
}

.nav a.nav-login:hover {
  color: var(--gold-2);
}

.nav a.nav-account {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  color: #f6f1e7;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-weight: 700;
  box-shadow: none;
}

.nav a.nav-account::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(216, 182, 119, 0.1);
}

.nav a.nav-account:hover {
  color: var(--gold-2);
  transform: none;
}

.nav a.nav-logout {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  box-shadow: none;
  margin-left: 9px;
  padding: 0 0 0 15px;
  font-weight: 600;
}

.nav a.nav-logout:hover {
  color: var(--gold-2);
  background: transparent;
  border-color: rgba(216, 182, 119, 0.45);
  transform: none;
}

@media (max-width: 760px) {
  .nav a.nav-account,
  .nav a.nav-logout {
    min-height: 22px;
  }
}
