/* =============================================================================
   Bento Grid — 2x2 (desktop) / 1-col (mobile) for the Four Powerhouses
   ========================================================================== */

.wt-bento-grid {
	max-width: var(--wt-container-max);
	margin: 0 auto;
	padding: var(--wt-stack-2xl) var(--wt-gutter);
}

.wt-bento-grid__header {
	text-align: center;
	margin-bottom: var(--wt-stack-xl);
}

.wt-bento-grid__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--wt-gutter);
}

@media (max-width: 900px) {
	.wt-bento-grid__cards { grid-template-columns: 1fr; }
	.wt-bento-card { min-height: 320px; }
}
