/**
 * PA Hero Banner — full-bleed background photo with copy + glass stat card.
 *
 * Sits inside .pa-v2__home-inner (max-width 1240px), so the section escapes
 * the container width using negative margins to reach the viewport edge.
 */

.pa-hero-banner {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height:630px;
	color: var(--pa-v2-white);
	display: flex;
	align-items: center;
	box-sizing: border-box;

	/* Full-bleed inside the constrained .pa-v2__home-inner container. */
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;

	padding: clamp(120px, 12vw, 240px) clamp(16px, 4vw, 32px) clamp(80px, 8vw, 120px);
}

.pa-hero-banner__bg,
.pa-hero-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
}

.pa-hero-banner__bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.pa-hero-banner__overlay {
	background: rgba(3, 9, 32, var(--pa-hero-overlay, 0.1));
}

.pa-hero-banner--no-image {
	background: var(--pa-v2-navy);
}

.pa-hero-banner__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: end;
}

@media (min-width: 961px) {
	.pa-hero-banner__inner {
		grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
		align-items: end;
	}
}

.pa-hero-banner__copy {
	max-width: unset;
}

/* Headline — defer sizing/family to .h1 from pa-v2.css; just paint white. */
.pa-hero-banner__headline,
.pa-hero-banner__headline * {
	color: var(--pa-v2-white);
}

.pa-hero-banner__headline {
	margin: 0;
}

/* Subhead — defer sizing/family to .large from pa-v2.css; tighten the gap. */
.pa-hero-banner__subhead {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.95);
	max-width: 58ch;
	padding-bottom: 0;
	max-width: 607px;
}

.pa-hero-banner__aside {
	width: 100%;
	max-width: 292px;
	justify-self: stretch;
}

@media (min-width: 961px) {
	.pa-hero-banner__aside {
		justify-self: end;
	}
}

@media (max-width: 640px) {
	.pa-hero-banner {
		padding-top: clamp(80px, 18vw, 140px);
		padding-bottom: clamp(60px, 14vw, 100px);
	}
}
