/* Font sizing classes toggled by JS */
html.font-sm { font-size: 0.875rem; }
html.font-md { font-size: 1rem; }
html.font-lg { font-size: 1.125rem; }
html.font-xl { font-size: 1.25rem; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
