
.spt-dual-page {
	background: #f2f4f6;
	color: #28243d;
	font-family: "Public Sans", sans-serif;
}

.spt-dual-shell {
	width: min(100% - 40px, 960px);
	margin: 0 auto;
}

.spt-dual-intro {
	padding: 34px 0 0;
}

.spt-dual-content-card {
	background: #fff;
}

.spt-dual-hero {
	position: relative;
	min-height: 300px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: flex-end;
	padding: 42px 50px;
	overflow: hidden;
}

.spt-dual-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, .58) 0%,
		rgba(0, 0, 0, .12) 55%,
		rgba(0, 0, 0, 0) 100%
	);
}

.spt-dual-hero h1 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #fff;
	font-size: 35px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -.025em;
}

.spt-dual-copy {
	padding: 48px 72px 58px;
}

.spt-dual-copy section + section {
	margin-top: 30px;
}

.spt-dual-copy h2 {
	margin: 0 0 15px;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 800;
	color: #28243d;
}

.spt-dual-copy p {
	margin: 0;
	font-size: 13px;
	line-height: 1.85;
	color: #353147;
}

.spt-dual-copy p + p {
	margin-top: 12px;
}

.spt-dual-schools {
	padding: 66px 0 120px;
}

.spt-dual-schools-title {
	margin: 0 0 32px;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 800;
	color: #28243d;
}

.spt-dual-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 24px;
}

.spt-dual-school-card {
	background: #fff;
	min-width: 0;
	transition: transform .25s ease, box-shadow .25s ease;
}

.spt-dual-school-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(40, 36, 61, .08);
}

.spt-dual-school-link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.spt-dual-school-image-wrap,
.spt-dual-school-image-placeholder {
	width: 100%;
	aspect-ratio: 1.62 / 1;
	overflow: hidden;
	background: #e6e9ed;
}

.spt-dual-school-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.spt-dual-school-card:hover .spt-dual-school-image {
	transform: scale(1.025);
}

.spt-dual-school-body {
	position: relative;
	min-height: 185px;
	padding: 24px 28px 32px;
}

.spt-dual-school-body h3 {
	margin: 0;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 800;
	color: #28243d;
}

.spt-dual-school-body p {
	margin: 14px 0 0;
	font-size: 12px;
	line-height: 1.45;
	font-weight: 700;
	color: #28243d;
}

.spt-dual-school-line {
	position: absolute;
	left: 28px;
	bottom: 0;
	display: block;
	width: 34px;
	height: 4px;
	background: var(--spt-dual-card-color, #347fdc);
	transition: width .32s ease;
}

.spt-dual-school-card:hover .spt-dual-school-line {
	width: calc(100% - 56px);
}

.spt-dual-empty {
	background: #fff;
	padding: 42px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
}

@media (max-width: 860px) {
	.spt-dual-shell {
		width: min(100% - 32px, 760px);
	}

	.spt-dual-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spt-dual-copy {
		padding: 40px 42px 48px;
	}
}

@media (max-width: 600px) {
	.spt-dual-intro {
		padding-top: 20px;
	}

	.spt-dual-hero {
		min-height: 230px;
		padding: 28px 24px;
	}

	.spt-dual-hero h1 {
		font-size: 28px;
	}

	.spt-dual-copy {
		padding: 32px 24px 38px;
	}

	.spt-dual-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.spt-dual-schools {
		padding: 48px 0 80px;
	}
}
