.ecosystem-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: #063b55;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  scrollbar-width: none;
}
.ecosystem-nav::-webkit-scrollbar {
  display: none;
}
.ecosystem-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ecosystem-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.ecosystem-nav a[aria-current="page"] {
  background: #ffffff;
  color: #063b55;
  font-weight: 750;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ecosystem-nav small {
  font-size: 9px;
  opacity: 0.8;
  font-weight: 400;
}
