.pw-ecosystem {
  --pw-ecosystem-background: #001f3f;
  --pw-ecosystem-border: rgba(244, 235, 221, 0.24);
  --pw-ecosystem-text: #f4ebdd;
  --pw-ecosystem-muted: #f4ebdd;
  --pw-ecosystem-active: #f26a21;
  background: var(--pw-ecosystem-background);
  border-block: 1px solid var(--pw-ecosystem-border);
  color: var(--pw-ecosystem-text);
  font-family: Lato, Arial, Helvetica, sans-serif;
  position: relative;
  z-index: 20;
}

.pw-ecosystem *,
.pw-ecosystem *::before,
.pw-ecosystem *::after {
  box-sizing: border-box;
}

.pw-ecosystem__scroll {
  margin: 0 auto;
  max-width: 100rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pw-ecosystem__scroll::-webkit-scrollbar {
  display: none;
}

.pw-ecosystem__links {
  align-items: stretch;
  display: flex;
  min-width: max-content;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
}

.pw-ecosystem__link {
  align-items: center;
  color: var(--pw-ecosystem-muted);
  display: inline-flex;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
  height: 2.5rem;
  padding: 0.58rem clamp(0.65rem, 1.15vw, 0.9rem);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.pw-ecosystem__link--home {
  color: var(--pw-ecosystem-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-right: clamp(0.35rem, 1vw, 0.8rem);
  padding-left: 0.2rem;
}

.pw-ecosystem__link--home::after {
  background: var(--pw-ecosystem-border);
  content: "";
  height: 1rem;
  position: absolute;
  right: -0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.pw-ecosystem__link:hover {
  color: #ffb27f;
}

.pw-ecosystem__link[aria-current="page"] {
  color: var(--pw-ecosystem-text);
}

.pw-ecosystem__link[aria-current="page"]::before {
  background: var(--pw-ecosystem-active);
  bottom: 0;
  content: "";
  height: 0.1875rem;
  inset-inline: 0.6rem;
  position: absolute;
}

.pw-ecosystem__link:focus-visible,
.pw-ecosystem__scroll:focus-visible {
  outline: 0.1875rem solid var(--pw-ecosystem-active);
  outline-offset: -0.25rem;
}

@media (min-width: 75rem) {
  .pw-ecosystem__links {
    justify-content: center;
  }
}

@media print {
  .pw-ecosystem {
    display: none;
  }
}
