/**
 * Hunza — blog category archive header.
 *
 * A compact relative of the .blog-hero on the Journal index (/lighting-clinic/).
 * Deliberately lighter than that one: no photograph, so a category archive stays
 * fast and reads as a level below the index rather than competing with it.
 * Palette and type match the hero exactly.
 */

.hunza-archive-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #000;
	margin: 0 calc(50% - 50vw) 40px;
	width: 100vw;
}

.hunza-archive-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at center, rgba(212, 98, 42, .10), transparent 60%),
		linear-gradient(to top, rgba(0, 0, 0, .92), rgba(0, 0, 0, .60));
}

.hunza-archive-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 54px 30px;
}

.hunza-archive-hero__eyebrow,
.hunza-archive-hero__eyebrow:hover,
.hunza-archive-hero__eyebrow:focus {
	display: inline-block;
	color: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .42em;
	text-transform: uppercase;
	text-decoration: none;
	margin-bottom: 20px;
	opacity: .85;
}

.hunza-archive-hero__eyebrow:hover {
	opacity: 1;
}

.hunza-archive-hero__rule {
	width: 56px;
	height: 2px;
	background: #d4622a;
	margin: 0 auto 24px;
}

.hunza-archive-hero h1 {
	color: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	font-size: clamp(1.9rem, 4vw, 3.2rem);
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.05;
	margin: 0 0 18px;
}

.hunza-archive-hero p {
	color: #d4d4d4;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.8;
	max-width: 620px;
	margin: 0 auto;
}

@media (max-width: 549px) {
	.hunza-archive-hero__content { padding: 38px 22px; }
	.hunza-archive-hero p { font-size: .95rem; }
}
