/**
 * Design 2026 — si_stat_counters WPBakery element
 */

.si-stat-counters {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 1.5rem 2rem;
	width: 100%;
}

.si-stat-counters__item {
	display: flex;
	align-items: center;
	gap: 0.75rem 1rem;
	min-width: 0;
}

.si-stat-counters__value {
	flex: 0 0 auto;
	font-family: var(--font-family-plain);
	font-size: 1.375rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.04125rem;
	color: var(--color-white);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.si-stat-counters__label {
	flex: 1 1 auto;
	min-width: 0;
	font-family: var(--font-family-plain);
	font-size: 1.375rem;
	font-style: normal;
	font-weight: 300;
	line-height: 120%;
	letter-spacing: -0.04125rem;
	color: var(--color-blue-lighter);
}

@media (max-width: 575.98px) {
	.si-stat-counters {
		flex-direction: column;
		align-items: stretch;
		gap: 1.5rem;
	}
}
