/**
 * goGLOW accessibility fixes - Phase 1
 * Local SEO Help, 2026-09-17
 */

/* Focus indicator for the locations finder search field.
   The original rule set `outline: none !important` on .gg-finder__zip. */
#gg-finder .gg-finder__searchbar:focus-within {
	outline: 2px solid var(--gg-teal-dark, #00727A);
	outline-offset: 2px;
}
#gg-finder .gg-finder__zip:focus-visible {
	outline: 2px solid var(--gg-teal-dark, #00727A);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Visually hidden helper for link text added by js/a11y.js */
.gg-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;
}

/* Pasted content paragraphs inherit #7a7a7a from their Elementor widget,
   which is 4.29:1 on white. #6E6E6E is 5.1:1 and visually near-identical. */
p.p1,
p[data-pm-slice] {
	color: #6E6E6E;
}
