/* Accessibility Overrides */

/* Font Sizing - using percentages to scale everything that uses rem */
html.text-lg {
    font-size: 112.5%; /* 18px base */
}

html.text-xl {
    font-size: 125%; /* 20px base */
}

/* High Contrast */
html.contrast-more {
    filter: contrast(1.2);
}

html.contrast-more img {
    filter: contrast(0.8); /* Revert contrast for images so they don't look fried */
}

html.contrast-more .bg-brand-blue,
html.contrast-more .bg-brand-cyan {
    background-color: #000080 !important; /* Darker blue */
}

html.contrast-more .text-brand-blue,
html.contrast-more .text-brand-cyan {
    color: #000080 !important;
}

html.contrast-more body {
    color: #000 !important;
}

/* Reduced Motion */
html.motion-reduce *,
html.motion-reduce *::before,
html.motion-reduce *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}
