@keyframes ticker-ltr {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-25%); }
}

.announcement-banner {
  overflow: hidden;
  background-color: #e16546;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: 'Maven Pro', sans-serif;
  margin-top: 16px;
  margin-bottom: 16px;
}

.announcement-banner span {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-ltr 10s linear infinite;
}
