.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 104px;
  border-bottom: 1px solid var(--functional-neutral-light);
  background: var(--functional-background);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accents-wine-red);
  text-decoration: none;
}

.nav__logo {
  width: 50px;
  height: 52px;
  display: block;
  flex-shrink: 0;
  color: var(--accents-wine-red);
}

.nav__logo svg,
.nav__logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.nav__brand-name {
  font-family: var(--font-display);
  font-size: var(--type-title-m-size);
  font-weight: var(--type-title-m-weight);
  line-height: var(--type-title-m-line-height);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 104px;
  list-style: none;
  margin: 0;
  padding: 0;
}
