.ticker-strip {
  padding: 24px 0;
  background: var(--gray-color);
}

.ticker-strip--transparent {
  background: transparent;
}

.ticker-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ticker-strip__label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--Text-Subtle);
}

.megatech-marquee {
  overflow: hidden;
  width: 100%;
}

.megatech-marquee-track {
  display: flex;
  width: max-content;
  animation: megatech-marquee var(--megatech-marquee-duration, 24s) linear
    infinite;
  animation-direction: var(--megatech-marquee-direction, normal);
  gap: 50px;
}

.megatech-marquee-list {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.megatech-marquee-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: 14px;
  color: var(--Text-Neutral);
}

.ticker-strip__logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
}

.megatech-marquee[data-pause="1"]:hover .megatech-marquee-track {
  animation-play-state: paused;
}

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

@media (max-width: 768px) {
  .megatech-marquee-list {
    gap: 32px;
  }
}
