.pw-ecosystem {
  --pw-ecosystem-navy: #001f3f;
  --pw-ecosystem-orange: #f26a21;
  --pw-ecosystem-text: #f4ebdd;
  background: var(--pw-ecosystem-navy);
  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 {
  display: flex;
  justify-content: center;
  min-width: max-content;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
}

.pw-ecosystem__link {
  align-items: center;
  color: var(--pw-ecosystem-text);
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  min-height: 2.75rem;
  padding: 0.65rem clamp(0.7rem, 1.25vw, 1rem);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.pw-ecosystem__link + .pw-ecosystem__link::before {
  background: rgba(242, 106, 33, 0.65);
  content: "";
  height: 1rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
}

.pw-ecosystem__link:hover {
  color: #ffb27f;
}

.pw-ecosystem__link[aria-current="page"]::after {
  background: var(--pw-ecosystem-orange);
  bottom: 0;
  content: "";
  height: 0.1875rem;
  inset-inline: 0.7rem;
  position: absolute;
}

.pw-ecosystem__link:focus-visible,
.pw-ecosystem__scroll:focus-visible {
  outline: 0.1875rem solid var(--pw-ecosystem-orange);
  outline-offset: -0.25rem;
}

@media (max-width: 75rem) {
  .pw-ecosystem__links {
    justify-content: flex-start;
  }
}

@media print {
  .pw-ecosystem {
    display: none;
  }
}
