.placeholder-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  padding: 1rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: #e5e7eb;
  background-image: repeating-linear-gradient(
    45deg,
    #d1d5db 0,
    #d1d5db 12px,
    #e5e7eb 12px,
    #e5e7eb 24px
  );
}

.footer-wordmark {
  overflow: hidden;
  line-height: 0.8;
}

[x-cloak] {
  display: none !important;
}

.marquee-viewport {
  width: 100%;
}

.marquee-track {
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-track.marquee-paused {
  animation-play-state: paused;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}
