/* ─── Stats Card ─────────────────────────────────────────────────────────────── */

.stats-card {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 14px;
	transition: transform 0.3s ease;
}

.stats-card:hover {
	transform: translateY(-3px);
}

/* ─── Background Image ────────────────────────────────────────────────────────── */

.stats-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.stats-card:hover .stats-card__image {
	transform: scale(1.05);
}

/* ─── Gradient Overlay ────────────────────────────────────────────────────────── */

.stats-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #001009, transparent);
	pointer-events: none;
}

/* ─── Content ─────────────────────────────────────────────────────────────────── */

.stats-card__content {
	position: absolute;
	bottom: 24px;
	left: 34px;
	right: 34px;
	z-index: 1;
}

.stats-card__number {
	font-size: 32px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1;
	margin: 0;
}

.stats-card__description {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	margin: 4px 0 0;
	line-height: 1.4;
}
