/* Split Section
 * Reusable two-column layout: large title pinned left, content right.
 * BEM block: .split-section
--------------------------------------------- */

.split-section {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 3rem;
}

.split-section__title {
	font-family: "Maax Bold";
	font-size: 5.313rem;
	font-style: normal;
	font-weight: 400;
	line-height: 90%;
	letter-spacing: -4.25px;
	margin: 0;
	align-self: start;
}

.split-section__content {
	min-width: 0;
}

/* Tablet portrait and below */
@media (max-width: 768px) {
	.split-section {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.split-section__title {
		font-size: 3rem;
		letter-spacing: -2px;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.split-section__title {
		font-size: 2.5rem;
		letter-spacing: -1.5px;
	}
}
