.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--light-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav__brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-on-white);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  color: var(--text-on-white-strong);
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .nav__links {
    display: none;
  }
}
