/* Tiger A11y — markup remediation (CSS part).
   P2 #6 (WCAG 1.4.1) — in-text links must be distinguishable without color.
   Underline body-copy links inside paragraphs and content widgets. Excludes
   button-styled links and image links, and is scoped to avoid nav menus. */
html.ta11y-fixes-on :is(p, .entry-content, .elementor-widget-text-editor, .elementor-widget-theme-post-content) a:not([class*="button"]):not(.btn):not(.elementor-button):not(:has(img)){
  text-decoration: underline;
  text-underline-offset: 2px;
}
