.news-page-hero {
	position: relative;
	min-height: min(52rem, 82svh);
	overflow: hidden;
	background: #111;
	color: #fff;
}

.news-page-hero__background {
	position: absolute;
	right: -0.04em;
	bottom: -0.22em;
	color: transparent;
	font-size: clamp(12rem, 31vw, 40rem);
	font-weight: 700;
	line-height: 0.75;
	letter-spacing: -0.08em;
	-webkit-text-stroke: 3px rgba(255, 255, 255, 0.055);
	pointer-events: none;
	user-select: none;
}

.news-page-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: min(52rem, 82svh);
	padding-top: clamp(11rem, 20vh, 15rem);
	padding-bottom: clamp(2rem, 5vw, 4rem);
	flex-direction: column;
	justify-content: space-between;
}

.news-page-hero__content {
	max-width: 76rem;
}

.news-page-hero__eyebrow {
	margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.news-page-hero__eyebrow::before {
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	margin-right: 0.7rem;
	border-radius: 0.12rem;
	background: var(--color-accent, #d52b22);
	content: "";
}

.news-page-hero__title {
	max-width: none;
	margin: 0;
	color: #fff;
	font-size: clamp(3.5rem, 8vw, 9rem);
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.news-page-hero__title span {
	display: inline-block;
}

@media (min-width: 768px) {
	.news-page-hero__title {
		white-space: nowrap;
	}
}

.news-page-hero__lead {
	max-width: 40rem;
	margin: clamp(2rem, 4vw, 3.5rem) 0 0;
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
}

.news-page-hero__meta {
	display: flex;
	padding-top: 1.25rem;
	justify-content: space-between;
	gap: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.news-page-hero__meta p {
	margin: 0;
}

@media (max-width: 767px) {
	.news-page-hero,
	.news-page-hero__inner {
		min-height: 85svh;
	}

	.news-page-hero__title {
		max-width: 100%;
		font-size: clamp(2rem, 10vw, 4.5rem);
		white-space: nowrap;
	}

	.news-page-hero__meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.5rem;
	}
}

.news-page-hero__title-word {
	display: inline-block;
	will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
	.news-page-hero__background,
	.news-page-hero__eyebrow,
	.news-page-hero__title-word,
	.news-page-hero__lead,
	.news-page-hero__meta p {
		opacity: 1 !important;
		transform: none !important;
	}
}