.announcement-bar {
  background-color: #1c1b1b;
  color: #ffffff;
  font-family: var(--font-cta);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 8px 20px;
  overflow: hidden;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
}

.announcement-bar .announcement-item {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  max-width: calc(100% - 40px);
  min-width: 0;
  overflow: hidden;
  position: absolute;
  opacity: 0;
  text-decoration: none;
  transform: translateY(100%);
  animation: ekaaraAnnouncementCycle var(--ticker-duration, 12s) infinite;
  animation-delay: calc(var(--ticker-index, 0) * 4s);
  white-space: nowrap;
}

.announcement-bar .announcement-item span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-bar .announcement-item a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-bar .announcement-item i {
  font-size: 0.75rem;
}

body.no-announcement-ticker header {
  top: 0;
}

@media screen and (max-width: 992px) {
  body.no-announcement-ticker header {
    top: 0 !important;
  }
}
