/**
 * About Page Stats — matches About design comp.
 */

.about-page-stats {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: linear-gradient(325deg, #090035 29.27%, #0f0059 45.59%, #a74972 100.36%);
}

.about-page-stats__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 1;
}

.about-page-stats__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

@media (min-width: 1024px) {
	.about-page-stats__bg-img {
		object-fit: fill;
	}
}

@media (max-width: 1023px) {
	.about-page-stats__bg-img {
		height: auto;
		min-height: 100%;
	}
}

.about-page-stats__inner {
	position: relative;
	z-index: 1;
}

.about-page-stats__headline {
	margin: 0 0 90px 0;
	max-width: 420px;
	font-size: 60px;
	line-height: 126%;
	font-weight: 500;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(180deg, #fff 0%, #c3c0ff 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-page-stats__grid {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 20px;
	column-gap: 20px;
	align-items: stretch;
}

@media (min-width: 640px) {
	.about-page-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.about-page-stats__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.about-page-stats__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 50px 42px;
	border-radius: 18px;
	border: 2px solid rgba(243, 131, 255, 0.3);
	background: radial-gradient(
		76.02% 104.16% at 43.57% 103.27%,
		rgba(245, 154, 255, 0.2) 0%,
		rgba(93, 75, 255, 0.2) 100%
	);
	backdrop-filter: blur(2px);
}

.about-page-stats__value {
	margin: 0 0 20px 0;
}

.about-page-stats__value-text {
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 0;
	white-space: nowrap;
	color: #fff;
	font-size: 70px;
	line-height: 62%;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.about-page-stats__value-prefix,
.about-page-stats__value-suffix {
	margin: 0;
	padding: 0;
}

.about-page-stats__label {
	margin: 0;
	color: #c9a5ff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
}

.about-page-stats__placeholder {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 767px) {
	.about-page-stats__headline {
		font-size: 1.75rem;
		margin-bottom: 2rem;
		max-width: 100%;
	}

	.about-page-stats__grid {
		row-gap: 12px;
	}

	.about-page-stats__card {
		padding: 1.25rem 1rem;
	}

	.about-page-stats__value {
		margin-bottom: 0.5rem;
	}

	.about-page-stats__value-text {
		font-size: 2rem;
		line-height: 1;
	}

	.about-page-stats__label {
		font-size: 0.875rem;
	}
}

@media (max-width: 479px) {
	.about-page-stats__headline {
		font-size: 1.5rem;
	}

	.about-page-stats__value-text {
		font-size: 1.75rem;
	}

	.about-page-stats__label {
		font-size: 0.8125rem;
	}
}

