/* Collapse the three design-system transition tokens under prefers-reduced-motion.
   The design system requires all three to become 1ms; theme.json is settings-only
   and carries them as flat strings, so it cannot express a media query at all.
   Rulebook §4 sitewide-CSS exception, documented in this plugin's README.
   Only --wp--custom--* references below: no hex, no px, no design literals. */
@media (prefers-reduced-motion: reduce) {
	:root {
		--wp--custom--transition--fast: 1ms;
		--wp--custom--transition--base: 1ms;
		--wp--custom--transition--smooth: 1ms;
	}
}
