/* Links on the accessibility statement page.
   Match the site's gold link theme (see about.css) and keep the underline so
   links are distinguishable by more than colour (WCAG 1.4.1). Contrast of
   --gold on the white page background is ~5.6:1, passing WCAG 1.4.3 AA.
   Focus styling is intentionally left to the global a:focus-visible rule in
   style.css. */
.a11y_main a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    /* mailto:/tel: strings can be long; let them wrap instead of overflowing. */
    overflow-wrap: anywhere;
}
.a11y_main a:visited {
    color: var(--gold);
}
.a11y_main a:hover {
    color: var(--beige4);
}
