.news-bar {
  display: flex;
  align-items: center;
  background: #0a4da3; /* primary blue */
  color: #ffffff;
  height: 48px;
  overflow: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
}

.news-title {
  background: #06326f; /* dark blue */
  padding: 0 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.news-marquee {
  flex: 1;
  overflow: hidden;
}

.news-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollNews 24s linear infinite;
}

.news-track a {
  color: #ffffff; /* normal: white */
  text-decoration: none;
  margin-right: 70px;
  font-size: 15px;
  transition: color 0.3s ease;
}

.news-track a:hover {
  color: #4db8ff; /* hover: light blue */
  text-decoration: underline;
}
.news-track span {
  margin-right: 70px;
  font-size: 15px;
}

@keyframes scrollNews {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.news-bar:hover .news-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
  .news-bar {
    height: 42px;
  }
  .news-track span {
    font-size: 14px;
  }
}
