/* Ireland Assignment Helper — accessibility helpers.
   Additive only: improves keyboard focus, screen-reader support and mobile tap
   areas without changing the visual design. */

/* ---- Screen-reader-only text (skip links, hidden labels) ---- */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.screen-reader-text:focus {
	position: fixed !important;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	margin: 0;
	clip: auto;
	clip-path: none;
	background: #ffffff;
	color: #cf142b;
	font-weight: 700;
	z-index: 100000;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
	text-decoration: none;
}

/* ---- Visible keyboard focus (only for keyboard users, not mouse clicks) ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid #cf142b;
	outline-offset: 2px;
}

/* ---- Touch targets: gentle tap area on tight link lists (mobile only) ---- */
@media (max-width: 991px) {
	.footer-1 a,
	.sahmenu-list > li > a {
		padding-top: 6px;
		padding-bottom: 6px;
	}
	.login-order-mobile {
		display: inline-block;
		padding: 8px 14px;
	}
}

/* ---- Utility: hide a decorative image on mobile (add class="hide-on-mobile") ---- */
@media (max-width: 767px) {
	.hide-on-mobile {
		display: none !important;
	}
}
