.news-ticker {
  width: 100%;
  overflow: hidden;
}

.news-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 100s linear infinite;
}

.news-track:hover {
  animation-play-state: paused;
}

.news-item {
  display: inline-block;
  margin-right: 30px;
  font-size: 16px;
  font-weight: 600;
}

.news-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.news-item a:hover {
  text-decoration: underline;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
