.rolling-text-bar {
  width: 100%;
  overflow: hidden;
  background: #7A1B30;
  padding: 16px 0;
  box-sizing: border-box;
  display: flex;
  white-space: nowrap;
}

.rolling-text-bar .ticker {
  display: inline-block;
  white-space: nowrap;
  animation: rolling-scroll 45s linear infinite;
  will-change: transform;
}

.rolling-text-bar .ticker:hover {
  animation-play-state: paused;
}

.rolling-text-bar .ticker__item {
  display: inline-block;
  padding-right: 4rem;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.6;
}

.rolling-text-bar .ticker__item p {
    margin-bottom: 0;
}

.rolling-text-bar .highlight {
  color: #FFD700;
  font-weight: 600;
}

@keyframes rolling-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (max-width: 768px) {
  .rolling-text-bar {
    padding: 12px 0;
  }
  .rolling-text-bar .ticker__item {
    font-size: 15px;
    padding-right: 2rem;
  }
  .rolling-text-bar .ticker {
    animation-duration: 30s;
  }
}