diff --git a/themes/intotheeast/css/style.css b/themes/intotheeast/css/style.css index f11b9d9..063f6c1 100644 --- a/themes/intotheeast/css/style.css +++ b/themes/intotheeast/css/style.css @@ -603,3 +603,18 @@ body { .form-status--ok { color: var(--color-accent); } .form-status--err { color: #B44A2A; } + +/* ── Accessibility & motion ──────────────────────────────────────────────────── */ + +@media (prefers-reduced-motion: reduce) { + *, *::before, *::after { + animation-duration: 0.01ms !important; + animation-iteration-count: 1 !important; + transition-duration: 0.01ms !important; + } +} + +:focus-visible { + outline: 2px solid var(--color-accent); + outline-offset: 2px; +}