.news-ticker {margin:10px 0 0 0;
  background: #fff3cd;
  border-left: 4px solid #ff9800;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.news-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  padding-right: 60px;
}

.ticker-link {
  color: #d32f2f;
  text-decoration: none;
}

.ticker-link:hover {
  text-decoration: underline; /* optional: hover only */
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}