/* ═══════════════════════════════════════════════════════════════════════════
   CURRICULUM AND ASSESSMENT REVIEW PAGE
   ═══════════════════════════════════════════════════════════════════════════ */


/* ── The hidden complexity of curriculum change ── */

.ce-car-complexity {
	background: #fff;
	padding: 5rem 0;
	position: relative;
	overflow: clip;
}

.ce-car-complexity::before {
	content: '';
	position: absolute;
	width: 450px;
	height: 450px;
	background: #f9f9f9;
	border-radius: 2.75rem;
	transform: rotate(45deg);
	top: -80px;
	left: -90px;
	pointer-events: none;
	z-index: 0;
}

.ce-car-complexity::after {
	content: '';
	position: absolute;
	width: 260px;
	height: 260px;
	background: #f9f9f9;
	border-radius: 2rem;
	transform: rotate(45deg);
	top: 420px;
	left: 178px;
	pointer-events: none;
	z-index: 0;
}

.ce-car-complexity .site-container {
	position: relative;
	z-index: 1;
}

.ce-car-complexity__title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: 0.75rem;
}

.ce-car-complexity__heading {
	font-family: var(--ci-font-primary);
	font-size: var(--ci-text-h2);
	font-weight: 700;
	color: #646464;
	margin: 0;
	line-height: 1.25;
}

.ce-car-complexity__sub {
	font-family: var(--ci-font-primary);
	font-size: var(--ci-text-body);
	color: #7a8a9a;
	text-align: center;
	margin: 0 auto 3rem;
	line-height: 1.7;
}

/* stretch, not start: each card fills its grid row, so the two cards in a row
   are always the same height regardless of how much copy they carry. */
.ce-car-complexity .ce-car-complexity__grid {
	grid-template-columns: repeat(2, 1fr);
	align-items: stretch;
}

.ce-car-complexity .ce-feature-list__item {
	padding: 1.25rem 1.5rem;
	min-height: auto !important;
}

.ce-car-complexity .ce-feature-list__header {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.ce-car-complexity .ce-feature-list__badge {
	font-size: 1.75rem;
	flex-shrink: 0;
}

@media (max-width: 680px) {
	.ce-car-complexity {
		padding: 3rem 0;
	}

	.ce-car-complexity .ce-car-complexity__grid {
		grid-template-columns: 1fr;
	}
}


/* ── Where do you want your school to be? (Timeline) ── */

.ce-car-timeline {
	background: #ffffff;
	position: relative;
	overflow: clip;
}

.ce-car-timeline::before {
	content: '';
	position: absolute;
	width: 450px;
	height: 450px;
	background: #f9f9f9;
	border-radius: 2.75rem;
	transform: rotate(45deg);
	top: -80px;
	left: -90px;
	pointer-events: none;
	z-index: 0;
}

.ce-car-timeline::after {
	content: '';
	position: absolute;
	width: 260px;
	height: 260px;
	background: #f9f9f9;
	border-radius: 2rem;
	transform: rotate(45deg);
	top: 420px;
	left: 178px;
	pointer-events: none;
	z-index: 0;
}

.ce-car-timeline .about-timeline__inner {
	position: relative;
	z-index: 1;
}

.ce-car-timeline__title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: 0.75rem;
}

.ce-car-timeline__subtext {
	font-family: var(--ci-font-primary);
	font-size: var(--ci-text-body);
	color: #7a8a9a;
	text-align: center;
	max-width: 620px;
	margin: 2.5rem auto 0;
	line-height: 1.75;
}

