/* PEIBWA card columns (Lake block) — "Program Structure" style section. */

.lake-root .b-card-columns .head-row {
	margin-bottom: 2.5rem;
}

.lake-root .b-card-columns .head-row.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
}

.lake-root .b-card-columns .head-row .s-head {
	margin: 0;
}

.lake-root .b-card-columns .head-row .intro {
	font-size: 1.125rem;
	line-height: 1.65;
}

.lake-root .b-card-columns .head-row .intro p:last-child {
	margin-bottom: 0;
}

/* Equal columns: as many as fit (up to card count), min 260px each. */
.lake-root .b-card-columns .cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

.lake-root .b-card-columns .card {
	background: #fff;
	border-radius: 12px;
	padding: 2rem;
}

.lake-root .b-card-columns .card .card-title {
	color: var(--color-secondary, #6F5EAE);
	margin: 0 0 1rem;
}

.lake-root .b-card-columns .card .card-body {
	line-height: 1.65;
}

.lake-root .b-card-columns .card .card-body ul,
.lake-root .b-card-columns .card .card-body ol {
	padding-left: 1.5rem;
	list-style: revert;
	list-style-position: outside;
}

.lake-root .b-card-columns .card .card-body ul li,
.lake-root .b-card-columns .card .card-body ol li {
	margin-bottom: 4px;
}

.lake-root .b-card-columns .card .card-body p:last-child {
	margin-bottom: 0;
}

/* Navy band variant — header text goes white; cards keep dark body text. */
.lake-root .b-card-columns.dark .head-row .s-head,
.lake-root .b-card-columns.dark .head-row .intro {
	color: #fff;
}

.lake-root .b-card-columns.dark .card {
	color: var(--brand-body, #374151);
}

@media (max-width: 900px) {
	.lake-root .b-card-columns .cards {
		grid-template-columns: 1fr;
	}

	.lake-root .b-card-columns .head-row.two-col {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}
