/**
 * ARC standard page hero.
 * Teal gradient band rendered after the site header on all non-front pages.
 * Uses the global --arc-* tokens from navigation.css (with fallbacks).
 */
.arc-page-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--arc-teal, #0a3d47); /* shown until/if the image loads */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	padding: clamp(2.6rem, 5.5vw, 4.6rem) 0;
}

/* Linear teal overlay (left-weighted, like the homepage slide fade) plus a
   faint dot texture. Keeps the white title readable while letting the photo
   show through toward the right. */
.arc-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 22px 22px,
		linear-gradient(
			to right,
			rgba(10, 61, 71, 0.95) 0%,
			rgba(10, 61, 71, 0.88) 38%,
			rgba(7, 45, 53, 0.65) 68%,
			rgba(7, 45, 53, 0.45) 100%
		);
}

/* No image set → fall back to the solid teal gradient band */
.arc-page-hero:not(.has-bg-image)::before {
	background: linear-gradient(135deg, var(--arc-teal, #0a3d47) 0%, var(--arc-teal-dark, #072d35) 100%);
}

/* Small screens: heavier, more even overlay so text stays legible */
@media (max-width: 767px) {
	.arc-page-hero.has-bg-image::before {
		background:
			radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 22px 22px,
			linear-gradient(to right, rgba(10, 61, 71, 0.93) 0%, rgba(7, 45, 53, 0.82) 100%);
	}
}

.arc-page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--arc-container, 1200px);
	margin: 0 auto;
	padding: 0 24px;
}

.arc-page-hero__title {
	margin: 0;
	color: #fff;
	font-weight: 800;
	font-size: clamp(1.7rem, 3.4vw, 2.8rem);
	line-height: 1.12;
}
.arc-page-hero__title::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	margin-top: 14px;
	border-radius: 3px;
	background: var(--arc-green, #79ba3a);
}

.arc-page-hero__crumbs {
	margin-top: 16px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}
.arc-page-hero__crumbs a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color 0.18s ease;
}
.arc-page-hero__crumbs a:hover {
	color: #fff;
	text-decoration: underline;
}
.arc-page-hero__sep {
	margin: 0 0.5rem;
	color: rgba(255, 255, 255, 0.45);
}
.arc-page-hero__crumbs [aria-current="page"] {
	color: #fff;
	font-weight: 600;
}

@media (max-width: 600px) {
	.arc-page-hero__crumbs {
		font-size: 0.82rem;
	}
}
