.dcc-h2-hero {
	position: relative;
	min-height: clamp(560px, 50vw, 760px);
	display: flex;
	align-items: center;
	color: var(--dcc-white);
	overflow: hidden;
	background: var(--dcc-navy);
	scroll-margin-top: clamp(80px, 8vw, 140px);
}

.dcc-h2-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.dcc-h2-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.dcc-h2-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(10,21,48,.85) 0%, rgba(10,21,48,.55) 55%, rgba(10,21,48,.15) 100%);
}

.dcc-h2-hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1rem, 3vw, 3rem);
	padding-block: clamp(3rem, 5vw, 5rem);
}

.dcc-h2-hero__content {
	max-width: clamp(420px, 45vw, 620px);
	margin-left: clamp(1rem, 4vw, 5rem);
}

.dcc-h2-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: clamp(.65rem, 1vw, 1rem);
	margin-bottom: clamp(1rem, 1.5vw, 1.4rem);
	color: var(--dcc-gold);
	font-family: var(--ff-sans);
	font-weight: 600;
	font-size: clamp(.75rem, .78vw, .85rem);
	letter-spacing: .22em;
	text-transform: uppercase;
}

.dcc-h2-hero__eyebrow-line {
	display: inline-block;
	width: clamp(40px, 4vw, 64px);
	height: 1px;
	background: var(--dcc-gold);
}

.dcc-h2-hero__heading {
	font-family: var(--ff-serif);
	font-weight: 700;
	font-size: clamp(2rem, 3.6vw, 3.75rem);
	line-height: 1.1;
	margin: 0 0 clamp(1rem, 1.5vw, 1.5rem);
	color: var(--dcc-white);
	letter-spacing: -.005em;
}

.dcc-h2-hero__sub {
	font-family: var(--ff-sans);
	font-weight: 400;
	font-size: clamp(.9375rem, 1.05vw, 1.0625rem);
	line-height: 1.55;
	color: rgba(255,255,255,.88);
	margin: 0;
	max-width: 50ch;
}

@media (max-width: 1024px) {
	.dcc-h2-hero__overlay {
		background: linear-gradient(180deg, rgba(10,21,48,.75) 0%, rgba(10,21,48,.65) 100%);
	}
	.dcc-h2-hero__content { max-width: 100%; margin-left: 0; }
}

@media (max-width: 600px) {
	.dcc-h2-hero { min-height: 540px; }
	.dcc-h2-hero__container { padding-block: 3rem; }
}

@media (min-width: 1025px) {
	.dcc-h2-hero__container {
		width: 100%;
		max-width: 100%;
		margin-inline: 0;
		padding-inline: 7rem;
	}
}

@media (min-width: 1441px) {
	.dcc-h2-hero {
		min-height: clamp(720px, 52vw, 920px);
	}

	.dcc-h2-hero__container {
		width: 100%;
		max-width: 100%;
		margin-inline: 0;
		padding-block: clamp(4rem, 5vw, 6rem);
		padding-inline: 13rem;
	}

	.dcc-h2-hero__content {
		max-width: clamp(580px, 44vw, 760px);
		margin-left: 0;
	}

	.dcc-h2-hero__eyebrow {
		font-size: clamp(.85rem, .85vw, .95rem);
		gap: clamp(.85rem, 1.1vw, 1.25rem);
		margin-bottom: clamp(1.25rem, 1.6vw, 1.6rem);
	}

	.dcc-h2-hero__eyebrow-line {
		width: clamp(56px, 4.5vw, 80px);
	}

	.dcc-h2-hero__heading {
		font-size: clamp(3rem, 4vw, 4.75rem);
		margin-bottom: clamp(1.25rem, 1.8vw, 1.75rem);
	}

	.dcc-h2-hero__sub {
		font-size: clamp(1.0625rem, 1.1vw, 1.25rem);
		max-width: 56ch;
	}
}
