.cities-ticker-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: white;
}

/* Add fade overlays */
.cities-ticker-container::before,
.cities-ticker-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cities-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.cities-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.cities-ticker {
  position: relative;
  white-space: nowrap;
}

.cities-track {
  display: inline-flex;
  animation: scroll 60s linear infinite;
}

.city-item {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2.5rem;
  font-size: 1.5rem;
  color: #718096;
  white-space: nowrap;
  position: relative;
  text-transform: uppercase;
}

/* Add dot separator between items */
.city-item:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 0;
  color: #cbd5e0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.cities-track:hover {
  animation-play-state: paused;
}

/* Accreditations Ticker Styles */
.accreditations-ticker-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: white;
}

/* Add fade overlays for accreditations */
.accreditations-ticker-container::before,
.accreditations-ticker-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.accreditations-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.accreditations-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.accreditations-ticker {
  position: relative;
  white-space: nowrap;
}

.accreditations-track {
  display: inline-flex;
  animation: scroll-accreditations 60s linear infinite;
  gap: 3rem;
}

.accreditation-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Pause animation on hover */
.accreditations-track:hover {
  animation-play-state: paused;
}

/* Separate keyframe animation for accreditations */
@keyframes scroll-accreditations {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
