section {
	position: relative;
}

section.alt {
	background: linear-gradient(180deg, #f7f9fb 0%, #fff 100%);
}

section.dark {
	background: #0b2a57;
	color: #fff;
}

section.dark h2 {
	color: #fff;
}

section.dark p {
	color: #cbd5e1;
}

.largest-program-door {
  padding: var(--vertical-padding) 0;
}

.statgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin: 38px 0 12px;
}

.stat {
	position: relative;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 30px 28px;
	overflow: hidden;
}

.stat::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #1b6bc9, #7bb6f0);
}

.stat .num {
	font-size: 42px;
	font-weight: 700;
	color: #0b2a57;
	line-height: 1;
	margin-bottom: 10px;
	letter-spacing: -0.025em;
}

.stat .num .sub {
	font-size: 24px;
	color: #1b6bc9;
}

.stat .lbl {
	font-size: 14.5px;
	color: #4b5563;
	line-height: 1.45;
}

.highlight-band {
	background: linear-gradient(135deg, #0b2a57 0%, #0a1f3f 100%);
	color: #fff;
	padding: 50px 40px;
	border-radius: 18px;
	margin: 32px 0;
	position: relative;
	overflow: hidden;
}

.highlight-band::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -15%;
	width: 50%;
	height: 200%;
	background: radial-gradient(
		ellipse,
		rgba(27, 107, 201, 0.25),
		transparent 70%
	);
	pointer-events: none;
}

.highlight-band .label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7bb6f0;
	margin-bottom: 14px;
}

.highlight-band h3 {
	color: #fff;
	font-size: 26px;
	margin: 0 0 12px;
	max-width: 760px;
}

.highlight-band p {
	color: #cbd5e1;
	font-size: 17px;
	max-width: 760px;
	margin: 0;
}

.pull {
	border-left: 4px solid #1b6bc9;
	padding: 16px 0 16px 28px;
	margin: 32px 0;
}

.pull p {
	font-size: 21px;
	line-height: 1.5;
	font-style: italic;
	color: #0b2a57;
	font-weight: 500;
	margin: 0 0 12px;
	max-width: none;
}

.pull .src {
	font-size: 14px;
	color: #6b7280;
	font-style: normal;
}

.cred-strip {
	background: #0b2a57;
	color: #fff;
	padding: var(--vertical-padding) 0;
}

.cred-strip .label {
	color: #7bb6f0;
}

.cred-strip .names {
	font-size: 16px;
	color: #cbd5e1;
	line-height: 1.7;
}

.cred-strip .names strong {
	color: #fff;
	font-weight: 600;
}

.cogan-lineage {
  padding: var(--vertical-padding) 0;
}