.rsh-v1 {
  --rsh-bg: #0d202b;
  --rsh-line: rgba(255,255,255,.14);
  --rsh-text: #f6f2e9;
  --rsh-muted: #c4cfd4;
  --rsh-accent: #ed8337;
  --rsh-focus: #ffd2b2;
  position: relative;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--rsh-line);
  background: var(--rsh-bg);
  color: var(--rsh-text);
}

.rsh-v1 *,
.rsh-v1 *::before,
.rsh-v1 *::after {
  box-sizing: border-box;
}

.rsh-v1__inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.rsh-v1__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--rsh-text);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
  text-decoration: none;
}

.rsh-v1__brand span {
  color: var(--rsh-accent);
}

.rsh-v1__brand:focus-visible,
.rsh-v1__link:focus-visible,
.rsh-v1__toggle:focus-visible {
  outline: 3px solid var(--rsh-focus);
  outline-offset: 3px;
}

.rsh-v1__nav {
  margin-left: auto;
}

.rsh-v1__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rsh-v1__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--rsh-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.rsh-v1__link:hover {
  color: var(--rsh-text);
  background: rgba(255,255,255,.06);
}

.rsh-v1__link[aria-current="page"] {
  color: var(--rsh-text);
}

.rsh-v1__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 2px;
  background: var(--rsh-accent);
}

.rsh-v1__link--cta {
  margin-left: 8px;
  padding-right: 18px;
  padding-left: 18px;
  background: var(--rsh-accent);
  color: #16110e;
}

.rsh-v1__link--cta:hover,
.rsh-v1__link--cta[aria-current="page"] {
  background: #f39755;
  color: #16110e;
}

.rsh-v1__link--cta[aria-current="page"]::after {
  display: none;
}

.rsh-v1__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 48px;
  min-height: 48px;
  margin-left: auto;
  padding: 9px 12px;
  border: 1px solid var(--rsh-line);
  border-radius: 0;
  background: transparent;
  color: var(--rsh-text);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.rsh-v1__toggle-icon {
  position: relative;
  width: 20px;
  height: 14px;
}

.rsh-v1__toggle-icon::before,
.rsh-v1__toggle-icon::after,
.rsh-v1__toggle-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease, top 160ms ease;
}

.rsh-v1__toggle-icon::before { top: 0; }
.rsh-v1__toggle-icon span { top: 6px; }
.rsh-v1__toggle-icon::after { top: 12px; }

.rsh-v1[data-open="true"] .rsh-v1__toggle-icon::before {
  top: 6px;
  transform: rotate(45deg);
}

.rsh-v1[data-open="true"] .rsh-v1__toggle-icon span {
  opacity: 0;
}

.rsh-v1[data-open="true"] .rsh-v1__toggle-icon::after {
  top: 6px;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .rsh-v1__inner {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 0;
    padding: 10px 0;
  }

  .rsh-v1__toggle {
    display: inline-flex;
  }

  .rsh-v1__nav {
    width: 100%;
    margin: 0;
  }

  .rsh-v1:not(.rsh-v1--enhanced) .rsh-v1__nav {
    display: block;
  }

  .rsh-v1.rsh-v1--enhanced .rsh-v1__nav {
    display: none;
  }

  .rsh-v1.rsh-v1--enhanced[data-open="true"] .rsh-v1__nav {
    display: block;
  }

  .rsh-v1__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 0 4px;
  }

  .rsh-v1__item {
    border-top: 1px solid var(--rsh-line);
  }

  .rsh-v1__link {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 13px 12px;
    white-space: normal;
  }

  .rsh-v1__link[aria-current="page"]::after {
    top: 11px;
    right: auto;
    bottom: 11px;
    left: 0;
    width: 3px;
    height: auto;
  }

  .rsh-v1__link--cta {
    margin: 10px 0 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .rsh-v1__inner {
    width: min(100% - 24px, 1180px);
  }

  .rsh-v1__toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}
