/* Top Announcement Bar - ACE Design System */

.top-announcement-bar {
  padding: 8px 16px;
  font-size: 0.875rem;
  line-height: 1.4;
}

.top-announcement-bar__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.top-announcement-bar__text {
  font-weight: 500;
}

.top-announcement-bar__link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.top-announcement-bar__link:hover {
  opacity: 1;
}

@media (min-width: 1024px) {
  .top-announcement-bar {
    padding: 10px 32px;
    font-size: 0.9375rem;
  }
}
