/* Initial hidden state for any element waiting on motion JS. */
[data-motion]:not([data-motion-played="1"]) {
  opacity: 0;
  will-change: opacity, transform, filter;
}

@media (prefers-reduced-motion: reduce) {
  [data-motion],
  [data-motion-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}
