/* === Cambr Stats — Vertical Layout === */

.cambr-stats {
	width: 100%;
	padding-bottom: 100px;
}

/* === Stat Item === */

.cambr-stats__item {
	display: flex;
	align-items: center;
}

.cambr-stats__number {
	font-family: 'Figtree', sans-serif;
	font-weight: 800;
	font-size: 130px;
	line-height: 40px;
	color: #003b77;
	text-align: center;
	width: 40%;
	flex-shrink: 0;
	padding: 100px 0 120px 20px;
}

.cambr-stats__prefix,
.cambr-stats__value,
.cambr-stats__suffix {
	display: inline;
}

.cambr-stats__label {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 40px;
	color: #1f1f1f;
	flex: 1;
	padding: 100px 60px 120px;
}

/* === Divider === */

.cambr-stats__divider {
	height: 2px;
	background-image: linear-gradient(270deg, #ffffff26, #fff);
	margin: 0;
}

/* === Dark Scheme === */

.cambr-stats--dark .cambr-stats__number {
	color: #ffffff;
}

.cambr-stats--dark .cambr-stats__label {
	color: #ffffff;
}

/* === Responsive === */

@media (max-width: 991px) {
	.cambr-stats__number {
		font-size: 80px;
		width: 50%;
		padding: 60px 0 80px 10px;
	}

	.cambr-stats__label {
		font-size: 24px;
		padding: 60px 30px 80px;
	}
}

@media (max-width: 767px) {
	.cambr-stats__item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.cambr-stats__number {
		font-size: 48px;
		line-height: 150%;
		width: 100%;
		padding: 20px 0 0 0;
	}

	.cambr-stats__label {
		font-size: 24px;
		line-height: 150%;
		text-align: center;
		margin-bottom: 40px;
		padding: 0;
	}
}
