/* ═══════════════════════════════════════════════════════════════════════════
   APPROACH PAGE — BANNER HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.approach-banner {
	position: relative;
	width: 100%;
	height: 82vh;
	min-height: 520px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.approach-banner__bg {
	position: absolute;
	inset: 0;
}

.approach-banner__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.approach-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

.approach-banner__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem var(--ci-container-padding, 2rem);
}

.approach-banner__title {
	font-family: var(--ci-font-primary);
	font-size: clamp(2rem, 5.5vw, 4.5rem);
	font-weight: 400;
	line-height: 1.15;
	color: #ffffff;
	margin: 0;
	letter-spacing: -0.01em;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.75);
}

.approach-banner__subtitle {
	font-family: var(--ci-font-primary);
	font-size: clamp(0.95rem, 1.6vw, 1.25rem);
	font-weight: 300;
	color: #ffffff;
	margin: 0.75rem 0 0;
	text-shadow: 0 1px 16px rgba(0, 0, 0, 0.8);
}

/* ═══════════════════════════════════════════════════════════════════════════
   APPROACH PAGE — INTRO TEXT
   ═══════════════════════════════════════════════════════════════════════════ */

.approach-intro {
	padding: 3.5rem 0;
	background: var(--ci-color-white);
}

.approach-intro p {
	font-family: var(--ci-font-primary);
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--ci-color-text);
	margin: 0 0 1.25rem;
}

.approach-intro p:last-child {
	margin-bottom: 0;
}

/* ── Mobile ── */
@media (max-width: 640px) {
	.approach-banner {
		height: 52svh;
		min-height: 300px;
	}

	.approach-intro {
		padding: 2.5rem 0;
	}

	.approach-intro p {
		font-size: 0.95rem;
		line-height: 1.7;
	}
}
