.w3s-stats-bar-wrap,
.w3s-stats-bar-wrap * {
	box-sizing: border-box;
}

.w3s-stats-bar-wrap {
	position: relative;
	z-index: 20;
	width: min(calc(100% - 40px), 1180px);
	margin: -50px auto 0;
	font-family: inherit;
}

.w3s-stats-bar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	align-items: stretch;
	overflow: hidden;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.13);
}

.w3s-stats-bar__item {
	position: relative;
	min-width: 0;
	margin: 0;
	padding: 22px 20px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
}

.w3s-stats-bar__item + .w3s-stats-bar__item::before {
	position: absolute;
	top: 22px;
	bottom: 22px;
	left: 0;
	width: 1px;
	background: #e7e9ec;
	content: "";
}

.w3s-stats-bar__icon {
	width: 46px;
	height: 46px;
	margin-bottom: 9px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: #068488;
	background: #edf6f6;
	font-size: 1.5rem;
}

.w3s-stats-bar__title {
	margin: 0;
	color: #111827;
	font-size: clamp(1.25rem, 1.7vw, 1.65rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.w3s-stats-bar__description {
	max-width: 230px;
	margin: 7px 0 0;
	color: #374151;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.4;
}

@media (max-width: 820px) {
	.w3s-stats-bar-wrap {
		width: min(calc(100% - 32px), 640px);
		margin-top: -36px;
	}

	.w3s-stats-bar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.w3s-stats-bar__item:nth-child(odd)::before {
		display: none;
	}

	.w3s-stats-bar__item:nth-child(n + 3) {
		border-top: 1px solid #e7e9ec;
	}
}

@media (max-width: 480px) {
	.w3s-stats-bar-wrap {
		width: min(calc(100% - 28px), 390px);
		margin-top: -24px;
	}

	.w3s-stats-bar {
		grid-template-columns: 1fr;
	}

	.w3s-stats-bar__item + .w3s-stats-bar__item {
		border-top: 1px solid #e7e9ec;
	}

	.w3s-stats-bar__item + .w3s-stats-bar__item::before {
		display: none;
	}

	.w3s-stats-bar__item {
		padding: 20px 18px;
	}
}
