/* Accessibility enhancements */

/* Skip link */
.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999999;
}

.skip-link:focus {
	left: 6px;
	top: 7px;
	display: block;
	padding: 8px 16px;
	background: #000;
	color: #fff;
	text-decoration: none;
}

/* Focus styles */
*:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Screen reader only */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	clip: auto;
	height: auto;
	width: auto;
	position: static;
}
