/* ---------------------------------------------------------------------------
site.css - shared, site-wide theme overrides for Speed For Sport.

Loaded on every page after the Bootstrap stylesheet and before each page's
inline <style> block, so Bootstrap defaults are overridden here while page-level
styles can still take precedence where a page genuinely needs to differ.

This is the intended home for the theme overrides currently duplicated across
the per-page <style> blocks; move them here as those blocks are next touched.
--------------------------------------------------------------------------- */

/* Accessibility: Bootstrap's default .text-secondary (#6c757d) fails WCAG AA on
our dark backgrounds - 4.48:1 on #000 and 3.29:1 on #212529, against a 4.5:1
minimum. #9aa3ab gives 8.20:1 and 6.02:1 respectively.

Scoped to .text-secondary deliberately: --bs-secondary-rgb also drives
.border-secondary (125 uses), .bg-secondary and .text-bg-secondary, which must
keep their current appearance. */
[data-bs-theme="dark"] .text-secondary {
    --bs-secondary-rgb: 154, 163, 171;
}
