/*
 * Site-wide WCAG AA contrast overrides — hand-authored, NOT pipeline-generated
 * (so a 05_extract_css re-run can never wipe it, unlike the per-bundle a11y
 * appends). Enqueued last in inc/enqueue.php so it wins the cascade; the engine
 * styler sets its colors as inline style via JS, so these rules need
 * !important to override.
 *
 * accent2 (#9cc9ff) button + white text = 1.71:1 (fails AA). The origin's
 * "Get Instant Access"-style CTAs on the recovered landing pages
 * (/headaches/, /ai-assistant-webinar/, /mastering-ai/, …) use this pairing.
 * Recolor to accent1 navy (#00346b) — white on navy ≈ 13:1 — the same
 * accent2 → navy deviation approved 2026-07-09 for low-contrast accent2 text.
 */
.btn[data-style-background-color="accent2"][data-style-color="white"],
a.btn[data-style-background-color="accent2"][data-style-color="white"]:hover {
	background-color: #00346b !important;
}
