/*--------------------------------------------------------------
 * Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
	margin: -1px;
	overflow: hidden;
	padding: 0;
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
}

.screen-reader-text:focus {
	display: block;
	width: auto;
	height: auto;
	top: 5px;
	left: 5px;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: normal;
	text-decoration: none;
	background-color: #FFFEF8;
	color: #21759b;
	padding: 15px 23px 14px;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target (#content has tabindex="-1"). */
#content[tabindex="-1"]:focus {
	outline: 0;
	box-shadow: none;
}

/*
 * Focus indicator for keyboard users: dark outline with a light outer ring,
 * so at least one of the two colours has 3:1 contrast on any background
 * (white content, green header/footer, dark copyright bar).
 * :focus is the fallback for browsers without :focus-visible support.
 */
:focus {
	outline: 2px solid #000;
	outline-offset: 0;
	box-shadow: 0 0 0 4px #fff;
}

:focus:not(:focus-visible) {
	outline: 0;
	box-shadow: none;
}

:focus-visible {
	outline: 2px solid #000;
	outline-offset: 0;
	box-shadow: 0 0 0 4px #fff;
}

/* Override normalize.css dotted outline in Firefox (separate rule, other browsers drop it). */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 2px solid #000;
}

/* Back to top arrow - the link wraps a fixed positioned circle. */
.site-footer a:focus-visible .arrow-back-to-top {
	outline: 2px solid #000;
	box-shadow: 0 0 0 4px #fff;
}
