/**
 * Appeal Section
 */
.wte-appeal__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--wte-space-xl);
}
@media (min-width: 1024px) {
	.wte-appeal__grid { grid-template-columns: repeat(3, 1fr); }
}
.wte-appeal-card {
	text-align: center;
	padding: var(--wte-space-xl);
}
.wte-appeal-card__number {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: var(--wte-font-weight-bold);
	color: var(--wte-color-accent);
	line-height: 1;
	margin-bottom: var(--wte-space-md);
	font-family: var(--wte-font-heading);
}
.wte-appeal-card__heading {
	font-size: 1.125rem;
	margin-bottom: var(--wte-space-sm);
}
.wte-appeal-card__body {
	font-size: 0.875rem;
	color: var(--wte-gray-600);
	line-height: 1.7;
	margin: 0;
}
