/**
 * How We Advocate Widget Styles
 */

/* Main Wrapper */
.mc-how-advocate-wrapper {
	width: 100%;
	box-sizing: border-box;
}

/* Section Title */
.mc-how-advocate-title {
	text-align: center;
	font-weight: 700;
	line-height: 1.2;
}

/* Grid Container */
.mc-how-advocate-grid {
	display: grid;
	width: 100%;
	/* Columns and gap handled by controls */
}

/* Individual Card */
.mc-how-advocate-card {
	display: flex;
	flex-direction: column;
	height: 100%; /* Ensure equal height */
	box-sizing: border-box;
	border-left: 3px solid transparent; /* Color set by control */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mc-how-advocate-card:hover {
	transform: translateY(-5px);
}

/* Card Title */
.mc-how-advocate-card-title {
	margin: 0 0 10px 0;
	line-height: 1.3;
}

/* Card Description */
.mc-how-advocate-card-desc {
	margin: 0;
	line-height: 1.6;
	flex-grow: 1; /* Pushes content to fill height if needed */
}
