/* RE PAGE — CHALLENGES SECTION
   Lives in components/subject-challenges.css, shared with the other five
   single-subject pages. Nothing on this page differs from it. */


/* ═══════════════════════════════════════════════════════════════════════════
   RE PAGE — INSIDE THE CURRICULUM SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

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

.ce-re-inside::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-re-inside::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-re-inside .site-container {
	position: relative;
	z-index: 1;
}

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

.ce-re-inside__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-re-inside__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;
}

.ce-re-inside .ce-re-inside__grid {
	grid-template-columns: repeat(2, 1fr);
}

.ce-re-inside__card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.ce-re-inside__card-header .ce-feature-list__title {
	margin: 0;
}

.ce-re-inside__grid .ce-feature-list__item {
	gap: 0.5rem;
	padding: 1.25rem 1.5rem;
	min-height: auto !important;
}

.ce-re-inside__btn-wrap {
	text-align: center;
	margin-top: 2.5rem;
}

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

	.ce-re-inside .ce-re-inside__grid {
		grid-template-columns: 1fr;
	}
}
