.ticker {
  position: relative;
  height: 30px;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  position: absolute;
  display: inline-flex;
  min-width: max-content;
  animation: ticker-scroll 18s linear infinite;
}

.ticker-track span {
  display: inline-block;
  padding-right: 120px;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-50%); }
}

.broadcast-form textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  padding: 11px;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  font: inherit;
  font-weight: 400;
  line-height: 1.6;
}

.broadcast-form .primary {
  margin-top: 20px;
}
