.ec-stats-wrapper {
	width: 100%;
	box-sizing: border-box;
	padding: clamp(16px, 4vw, 40px) clamp(10px, 4vw, 24px);
}
.ec-stats-wrapper *,
.ec-stats-wrapper *::before,
.ec-stats-wrapper *::after {
	box-sizing: border-box;
}
.ec-stats-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	gap: clamp(4px, 3vw, 32px);
	max-width: 1100px;
	margin: 0 auto;
}
.ec-stat-item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: clamp(8px, 2vw, 24px) clamp(4px, 2vw, 16px);
	position: relative;
	min-width: 0;
}
.ec-stat-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 12%;
	height: 76%;
	width: 1px;
	background: rgba(0, 0, 0, 0.1);
}
.ec-icon {
	width: clamp(30px, 8vw, 56px);
	height: clamp(30px, 8vw, 56px);
	color: var(--ec-color, #1a73e8);
	margin-bottom: clamp(6px, 1.5vw, 14px);
}
.ec-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}
.ec-number {
	font-size: clamp(1.3rem, 5.2vw, 2.6rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--ec-text, #ffffff);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	white-space: nowrap;
}
.ec-label {
	font-size: clamp(0.65rem, 2.4vw, 1rem);
	color: var(--ec-text, #ffffff);
	margin-top: clamp(2px, 1vw, 6px);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
@media (max-width: 480px) {
	.ec-stats-container {
		gap: 2px;
	}
	.ec-stat-item {
		padding: 6px 2px;
	}
	.ec-label {
		letter-spacing: 0.01em;
	}
}
