/* ==========================================================================
   Accessibility overrides - WCAG 2.1 AA (ADA)
   Loaded after style.css so these rules win. Colors verified for contrast.
   ========================================================================== */

/* --- Skip link (WCAG 2.4.1 Bypass Blocks) --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 10px 18px;
  background: #19227c;
  color: #ffffff;
  font-weight: 600;
  border-radius: 0 0 6px 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* --- Visible keyboard focus (WCAG 2.4.7 Focus Visible) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #1560e0;
  outline-offset: 2px;
}

/* --- Screen-reader-only utility --- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Text contrast fixes (WCAG 1.4.3 Contrast Minimum) --- */
/* Default muted body text was #777 (4.48:1). #666 = 5.7:1 on white. */
body { color: #666666; }

/* Brand green accent used on small captions failed badly (~1.6:1).
   #00784d passes AA on both white and the light-gray sections. */
.quote-tara-status,
.thumbnail-mary-location,
.list-history-circle + *,
.progress-header p { color: #00784d; }

/* Footer text used faint white (alpha 0.2-0.4) on navy: 1.85-3.48:1.
   Base rules are high-specificity (.footer-modern.context-dark p.rights, etc.),
   so match/exceed that and cover children. ~0.87 white = ~9:1 on the navy footer. */
.footer-modern.context-dark,
.footer-modern.context-dark p.rights,
.footer-modern.context-dark p.rights *,
.footer-modern.context-dark .footer-modern-list,
.footer-modern.context-dark .footer-modern-list li,
.footer-modern.context-dark .footer-modern-list a,
.footer-modern.context-dark .footer-modern-line-3,
.footer-modern.context-dark .footer-modern-line-3 * { color: rgba(255,255,255,0.87) !important; }

