.zone-nav {
  width: 100%;
  background: transparent;
}

.zone-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.zone-nav-icon {
  display: flex;
  align-items: center;
}

.zone-nav-icon img {
  height: 48px;
  opacity: 0.8;
  pointer-events: none;
}

.zone-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  gap: 1rem;
}

.zone-nav-item {
  flex: 1 1 15%;
  max-width: 15%;
  display: flex;
  justify-content: center;
}

.zone-nav-item img {
  width: 100%;
  max-height: 64px;
  transition: transform 0.2s ease-in-out;
}

.zone-nav-item img:hover {
  transform: scale(1.1);
}