.news-bar {
  width: 69.6%;
  max-width: 1322px;
  margin: 1rem auto 0;
  height: 30px;
  background: #f3f3f3;
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 1.25rem;
  overflow: hidden;
}

.news-bar-label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.688rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-bar-divider {
  color: rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.news-bar-item {
  color: #2b2b2b;
  text-decoration: none;
  font-size: 0.688rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.8s ease, color 0.15s ease;
}

.news-bar-item:hover {
  color: #2f7bc4;
}

@media (max-width: 768px) {
  .news-bar {
    width: 92%;
    height: 38px;
    border-radius: 19px;
  }
}
