/* Public editorial motion. Content never depends on these assets to be visible. */
:root {
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --motion-slow: 360ms;
  --motion-reveal: 600ms;
  --motion-reveal-stagger: 60ms;
  --motion-reveal-distance: 12px;
}

@media (max-width: 767px) {
  :root {
    --motion-reveal: var(--motion-slow);
    --motion-reveal-distance: 8px;
  }
}

@media (prefers-reduced-motion: reduce), print {
  [data-public-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
