/**
 * About page, page-about.php
 */

.about-page {
	overflow-x: clip;
}

.about-hero {
	position: relative;
	min-height: clamp(420px, 58vh, 620px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background-color: var(--color-navy);
}

.about-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 45%;
	background-repeat: no-repeat;
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(6, 21, 36, 0.9) 0%, rgba(6, 21, 36, 0.65) 42%, rgba(6, 21, 36, 0.25) 100%),
		linear-gradient(to top, rgba(6, 21, 36, 0.75) 0%, transparent 55%),
		linear-gradient(to bottom, rgba(6, 21, 36, 0.38) 0%, transparent 30%);
	pointer-events: none;
}

.about-hero__body {
	position: relative;
	z-index: 1;
	padding: clamp(5rem, 12vw, 7rem) 0 clamp(2.75rem, 6vw, 4rem);
	max-width: 42rem;
}

.about-hero__eyebrow {
	color: var(--color-teal-light, var(--color-teal));
	margin-bottom: 0.75rem;
}

.about-hero__heading {
	font-family: var(--font-display, var(--font-heading));
	font-size: clamp(2rem, 4.5vw, 3.1rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--color-white);
	margin: 0 0 1rem;
}

.about-hero__sub {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 1.75rem;
	max-width: 38rem;
}

.about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.about-story__copy {
	margin-top: 1.5rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--color-text, #2a3441);
}

.about-story__copy p + p {
	margin-top: 1rem;
}

.about-focus__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 2rem;
}

.about-focus__card {
	background: var(--color-white);
	border: 1px solid rgba(0, 90, 135, 0.12);
	border-radius: var(--radius-md, 12px);
	padding: 1.5rem 1.35rem;
	box-shadow: 0 8px 24px rgba(0, 40, 70, 0.05);
}

.about-focus__title {
	font-family: var(--font-display, var(--font-heading));
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--color-navy);
	margin: 0 0 0.65rem;
}

.about-focus__desc {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--color-muted, #5a6575);
}

.about-focus__note {
	margin: 1.75rem auto 0;
	max-width: 40rem;
	text-align: center;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--color-muted, #5a6575);
}

.about-focus__note a {
	color: var(--color-teal);
	font-weight: 600;
}

.about-area__copy {
	margin: 1.25rem auto 0;
	max-width: 40rem;
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--color-text, #2a3441);
}

.about-cta {
	position: relative;
	padding: clamp(3rem, 7vw, 4.5rem) 0;
	background: linear-gradient(145deg, var(--color-navy) 0%, #0a2540 55%, #0d3a4a 100%);
	color: var(--color-white);
	text-align: center;
}

.about-cta__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(32, 169, 224, 0.18) 0%, transparent 55%);
	pointer-events: none;
}

.about-cta__body {
	position: relative;
	z-index: 1;
}

.about-cta__heading {
	font-family: var(--font-display, var(--font-heading));
	font-size: clamp(1.75rem, 3.5vw, 2.4rem);
	font-weight: 600;
	margin: 0 0 0.75rem;
	color: var(--color-white);
}

.about-cta__sub {
	margin: 0 auto 1.5rem;
	max-width: 36rem;
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.about-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
}

@media (max-width: 900px) {
	.about-focus__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.about-hero__actions,
	.about-cta__actions {
		flex-direction: column;
	}

	.about-hero__actions .btn,
	.about-cta__actions .btn {
		width: 100%;
		justify-content: center;
	}
}
