/*
 * TPF — Case Study Text and List
 * Two-column block on navy bg: cyan-headed body paragraph on the left,
 * white-headed cyan-bullet list on the right. Typography mirrors
 * Case Study Text Block (left) and Case Study List (right).
 */

.tpf-cstal {
	background-color: #293c7b;
	color: #ffffff;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: 0;
	padding: 2rem 0;
	font-family: proxima-nova, "Proxima Nova", -apple-system, BlinkMacSystemFont, sans-serif;
}

.tpf-cstal__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.tpf-cstal__grid {
	display: grid;
	/* Left text column matches the Case Study Text Block body width (720px). */
	grid-template-columns: minmax(0, 720px) 1fr;
	gap: 3rem;
	align-items: start;
}

/* ---------- Left (text) ---------- */

.tpf-cstal__text-heading {
	font-size: 38px;
	line-height: 1.2;
	font-weight: 700;
	color: #00b3f1;
	margin: 0 0 1rem;
	padding: 0;
}

.tpf-cstal__text-body {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: #ffffff;
}

.tpf-cstal__text-body p {
	margin: 0 0 1rem;
	padding: 0;
}

.tpf-cstal__text-body p:last-child {
	margin-bottom: 0;
}

/* ---------- Right (list) ---------- */

.tpf-cstal__list-heading {
	font-size: 38px;
	line-height: 1.2;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1rem;
	padding: 0;
}

.tpf-cstal__list {
	list-style: disc outside;
	padding-left: 1.5rem;
	margin: 0;
	color: #00b3f1;
}

.tpf-cstal__list li {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: #00b3f1;
	margin: 0;
	padding: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.tpf-cstal__grid { gap: 2rem; }
	.tpf-cstal__text-heading,
	.tpf-cstal__list-heading { font-size: 30px; }
	.tpf-cstal__text-body,
	.tpf-cstal__list li { font-size: 18px; line-height: 28px; }
}

@media (max-width: 767px) {
	.tpf-cstal__grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
	.tpf-cstal__text-heading,
	.tpf-cstal__list-heading { font-size: 26px; }
}
