/**
 * Visually-hidden utility.
 *
 * Written from the WAI-ARIA visually-hidden pattern rather than copied from the
 * Joomla source (security rule 2: no executable/stylesheet transfer). Replaces
 * the former theme.update.css, which was byte-identical to
 * templates/yootheme/css/theme.update.css in the frozen -joomla tree.
 *
 * The :not() chain keeps skip-links usable: the element stays hidden until it
 * takes focus, then paints normally.
 */
.uk-hidden-visually:not(:focus):not(:active):not(:focus-within) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	border: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}
