/**
 * accessibility-overrides.css
 * Load AFTER theme.min.css + brand-overrides.css, BEFORE custom.css.
 * Only fixes colour-contrast failures — no new components.
 */

/* Theme .text-muted is #8997a4 → ~2.7:1 on #fff (fails WCAG AA).
   #5b6570 → ~5.6:1 on #fff and ~5.3:1 on #F5F7FA (bg-light). */
.text-muted {
    color: #5b6570 !important;
}

/* Muted text sitting on the brand-primary CTA band must stay light. */
.bg-primary .text-muted,
.bg-primary .text-white {
    color: #ffffff !important;
}
