/**
 * Page Designer — Motion & FX: Page Transitions runtime CSS  (pd-mfx-rt-trans-*)
 * Loaded inside canvas iframe + on public pages. Most of the actual
 * transition CSS is injected dynamically by the runtime (per-mode keyframes);
 * this file holds only the static safety overrides.
 */

/* Respect reduced motion — kills any active view-transition animations.
   ::view-transition pseudos live on the document root; specificity (0,0,0,0)
   on the pseudo itself, override via the animation property. */
@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation-duration: 1ms;
    }
}
