.pv-site-header {
  background: #07111d;
  border-bottom: 1px solid rgba(188, 205, 224, 0.22);
  color: #f7f8fa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
  z-index: 20;
}

.pv-site-header *,
.pv-site-header *::before,
.pv-site-header *::after {
  box-sizing: border-box;
}

.pv-site-header__inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 76px;
  padding: 0 28px;
}

.pv-site-header__brand,
.pv-site-header__buy,
.pv-site-header__nav a {
  color: inherit;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.pv-site-header__brand {
  font-size: 1rem;
  font-weight: 850;
}

.pv-site-header__nav {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  min-width: 0;
}

.pv-site-header__nav a {
  color: #b8c5d4;
  font-size: 0.82rem;
}

.pv-site-header__nav a:hover,
.pv-site-header__nav a:focus-visible,
.pv-site-header__brand:hover,
.pv-site-header__brand:focus-visible,
.pv-site-header__buy:hover,
.pv-site-header__buy:focus-visible {
  color: #ffffff;
}

.pv-site-header__nav a:focus-visible,
.pv-site-header__brand:focus-visible,
.pv-site-header__buy:focus-visible {
  outline: 3px solid #64c9c4;
  outline-offset: 4px;
}

.pv-site-header__buy {
  color: #e9bd55;
}

.pv-site-header__buy::after {
  content: " →";
}

@media (max-width: 1080px) {
  .pv-site-header__inner {
    gap: 12px 22px;
    grid-template-columns: 1fr auto;
    padding-bottom: 12px;
    padding-top: 14px;
  }

  .pv-site-header__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    margin: 0 -22px;
    overflow-x: auto;
    padding: 5px 22px 8px;
    scrollbar-width: thin;
  }
}

@media (max-width: 600px) {
  .pv-site-header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pv-site-header__nav {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
