.wdfth-hero {
	--wdfth-height: 390px;
	--wdfth-mobile-height: 240px;
	--wdfth-accent: #d4aa5a;
	--wdfth-overlay-start: rgba(7, 20, 32, 0.62);
	--wdfth-overlay-end: rgba(7, 20, 32, 0.28);
	--wdfth-bg-position: center center;

	position: relative;
	display: flex;
	width: 100%;
	min-height: var(--wdfth-height);
	align-items: center;
	overflow: hidden;
	background-color: #102130;
	background-position: var(--wdfth-bg-position);
	background-repeat: no-repeat;
	background-size: cover;
	isolation: isolate;
}

.wdfth-hero__overlay {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, var(--wdfth-overlay-start) 0%, var(--wdfth-overlay-start) 42%, var(--wdfth-overlay-end) 100%);
}

.wdfth-hero__inner {
	width: 100%;
	max-width: 1230px;
	margin: 0 auto;
	padding: 56px 30px;
	color: #fff;
}

.wdfth-hero__eyebrow {
	margin: 0 0 13px;
	color: var(--wdfth-accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.2px;
	line-height: 1.4;
	text-transform: uppercase;
}

.wdfth-hero__title {
	max-width: 980px;
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 4.1vw, 60px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.12;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
	text-transform: none;
}

.wdfth-hero__line {
	width: 62px;
	height: 3px;
	margin-top: 25px;
	background: var(--wdfth-accent);
}

.wdfth-hero--center .wdfth-hero__inner {
	text-align: center;
}

.wdfth-hero--center .wdfth-hero__title {
	margin-right: auto;
	margin-left: auto;
}

.wdfth-hero--center .wdfth-hero__line {
	margin-right: auto;
	margin-left: auto;
}

@media (max-width: 849px) {
	.wdfth-hero__inner {
		padding-right: 24px;
		padding-left: 24px;
	}
}

@media (max-width: 549px) {
	.wdfth-hero {
		min-height: var(--wdfth-mobile-height);
	}

	.wdfth-hero__inner {
		padding: 40px 20px;
	}

	.wdfth-hero__eyebrow {
		margin-bottom: 10px;
		font-size: 11px;
		letter-spacing: 1.6px;
	}

	.wdfth-hero__title {
		font-size: clamp(27px, 8.5vw, 38px);
		line-height: 1.16;
	}

	.wdfth-hero__line {
		width: 50px;
		margin-top: 19px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wdfth-hero,
	.wdfth-hero * {
		scroll-behavior: auto !important;
	}
}

