/* ═══════════════════════════════════════════════════════════════════════════
   APPROACH PAGE — FULL-BLEED SPLIT SECTIONS
   Dark navy text panel flush to one viewport edge, square image to the other.
   ═══════════════════════════════════════════════════════════════════════════ */

.approach-section {
	margin-top: 0.3rem;
	margin-bottom: 0;
}

.approach-section:last-of-type {
	margin-bottom: 0;
}

/* Full-viewport 50:50 grid — no site-container */
.approach-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	width: 100%;
	gap: 0.3rem;
	min-height: 480px;
}

/* Dark text panel — centred within its half */
.approach-section__text-panel {
	background: #253d47;
	padding: 3.5rem 5rem;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	justify-content: center;
	align-items: flex-start;
}

.approach-section--reversed .approach-section__text-panel {
	padding: 3.5rem 5rem;
}

.approach-section__heading {
	font-family: var(--ci-font-primary);
	font-size: clamp(1.6rem, 2.4vw, 2.4rem);
	font-weight: 700;
	color: #c6a54e;
	margin: 0;
	line-height: 1.25;
}

.approach-section__text-panel p {
	font-family: var(--ci-font-primary);
	font-size: 1.15rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
}

.approach-section__text-panel strong {
	color: #ffffff;
}

.approach-section__text-panel ul {
	margin: 0;
	padding-left: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.approach-section__text-panel ul li {
	font-family: var(--ci-font-primary);
	font-size: 1.15rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

/* Suppress stray empty <p> tags injected by wpautop into the grid as ghost grid items */
.approach-section__grid > p:empty {
	display: none;
}

/* Image — fills its grid cell completely, matches text panel height */
.approach-section__image {
	overflow: hidden;
	min-height: 480px;
}

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

/* Maroon text panel variant */
.approach-section--maroon .approach-section__text-panel {
	background: #751a3b;
}

/* Image placeholder — used when no image is available yet */
.approach-section__image--placeholder {
	background-color: #b0b0b0;
	aspect-ratio: 1 / 1;
}

/* ── Mobile: stack vertically, image above text ── */
@media (max-width: 767px) {
	.approach-section {
		margin-top: 0.3rem;
		margin-bottom: 0;
	}

	.approach-section__grid {
		grid-template-columns: 1fr;
	}

	.approach-section__image {
		min-height: 0;
		aspect-ratio: 1 / 1;
		order: -1;
	}

	.approach-section--reversed .approach-section__image {
		order: -1;
	}

	.approach-section__text-panel,
	.approach-section--reversed .approach-section__text-panel {
		padding: 2rem var(--ci-container-padding);
	}

	.approach-section__heading {
		font-size: clamp(1.2rem, 5vw, 1.6rem);
	}

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

	.approach-section__text-panel ul li {
		font-size: 0.95rem;
		line-height: 1.7;
	}
}
