.top-runner {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #fff8f8;
  border-top: 1px solid #fdf1f1;
  border-bottom: 1px solid #fdf1f1;
  min-height: 30px;
}

.top-runner__track {
  width: 100%;
  height: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.top-runner__text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #d65c5c;
  animation: topRunnerMove 14s linear 1 forwards;
  will-change: transform;
}

@keyframes topRunnerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .top-runner {
    min-height: 28px;
  }

  .top-runner__track {
    height: 28px;
  }

  .top-runner__text {
    font-size: 14px;
    animation-duration: 12s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-runner {
    min-height: 30px;
  }

  .top-runner__track {
    height: 30px;
  }

  .top-runner__text {
    animation: none;
    padding-left: 12px;
    padding-right: 12px;
    transform: none;
    white-space: normal;
    display: block;
  }
}