.wp-block-ccma-stat-pill,
.ccma-stat-pill {
	display: inline-flex;
	align-items: flex-end;
	gap: 0;
	width: fit-content;
	max-width: 100%;
	line-height: 0;
	box-sizing: border-box;
}

.ccma-stat-pill__icon-box {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 60px;
	height: 60px;
	margin-right: 0;
	border-radius: 15px;
	background: var(--ccma-stat-pill-icon-bg, #BBCBB2);
	color: var(--ccma-stat-pill-card-bg, #6A855A);
	overflow: hidden;
}

.ccma-stat-pill__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	color: currentColor;
	line-height: 0;
}

.ccma-stat-pill__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	color: currentColor;
	fill: currentColor;
}

.ccma-stat-pill__icon svg * {
	fill: currentColor;
}

.ccma-stat-pill__card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;

	min-width: 128px;
	height: 98px;
	padding: 0.8rem 1rem;
	border-radius: 15px;

	background: var(--ccma-stat-pill-card-bg, #6A855A);
	color: var(--ccma-stat-pill-text, #F7F1E1);
	box-sizing: border-box;
}

.ccma-stat-pill__number {
	display: block;
	font-size: 45px;
	font-weight: 800;
	line-height: 0.85;
	letter-spacing: -0.04em;
	color: inherit;
}

.ccma-stat-pill__subtitle {
	display: block;
	margin-top: 1.2em;
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: inherit;
}

/* Variante responsive */
@media (max-width: 520px) {
	.ccma-stat-pill__icon-box {
		width: 52px;
		height: 52px;
		border-radius: 13px;
	}

	.ccma-stat-pill__icon {
		width: 38px;
		height: 38px;
	}

	.ccma-stat-pill__card {
		min-width: 112px;
		height: 84px;
		border-radius: 13px;
	}

	.ccma-stat-pill__number {
		font-size: 2.6rem;
	}

	.ccma-stat-pill__subtitle {
		font-size: 0.6rem;
	}
}