/*
 * Global reduced-motion shim (WCAG 2.3.3 / BFSG motion-reduction).
 *
 * Users who request reduced motion at the OS level should not see the
 * Tailwind opacity/transform transitions used by the modal overlay fade
 * (ModalOverlay.kt) or other `transition-*` / `animate-*` utilities. Rather
 * than removing the visual entirely we collapse the duration so the change is
 * effectively instantaneous, preserving the end state without animation.
 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
