.mc-commitments-section {
	width: 100%;
	display: flex;
	justify-content: center;
}

.mc-container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.mc-header {
	margin-bottom: 50px;
	text-align: left;
	max-width: 800px;
}

.mc-section-title {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.2;
}

.mc-intro-text {
	font-size: 1.125rem;
	line-height: 1.6;
}

.mc-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	align-items: stretch;
}

.mc-commitment-card {
	padding: 30px 24px;
	border-top: 4px solid #E2725B;
	box-shadow: 0 4px 20px rgba(240, 233, 216, 0.6); /* Soft warm shadow using #F0E9D8 */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mc-commitment-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(240, 233, 216, 0.8);
}

.mc-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.3;
}

.mc-card-description {
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
	flex-grow: 1;
}

/* Tablet */
@media (max-width: 1024px) {
	.mc-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	
	/* Make the last item span full width on 2-col layout if odd number */
	.mc-commitment-card:last-child:nth-child(odd) {
		grid-column: span 2;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.mc-section-title {
		font-size: 1.75rem;
	}

	.mc-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.mc-commitment-card:last-child:nth-child(odd) {
		grid-column: auto;
	}
}
