/* ──────────────────────────────────────────────
 * Statistics
 * ────────────────────────────────────────────── */

.da-statistics {
	position: relative;
	background-color: #4F4CA0;
	background-image: var(--da-statistics-bg, none);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.da-statistics::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #4F4CA0;
}

.da-statistics .da-widget__inner {
	/* position: relative; */
	z-index: 1;
}

.da-statistics__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.da-statistics__flower {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: unset !important;
	height: 100% !important;
	pointer-events: none;
	z-index: 0;
	opacity: 0.4;
}

.da-statistics__lines {
	display: none;
	position: absolute;
	bottom: 0;
	right: 0;
	height: auto;
	max-height: 100% !important;
	pointer-events: none;
	z-index: 0;
	opacity: 0.4;
}

@media (min-width: 640px) {
	.da-statistics__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.da-statistics__flower {
		max-height: 100% !important;
	}

	.da-statistics__lines {
		display: block;
	}
}

@media (min-width: 1024px) {
	.da-statistics__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.da-statistics__flower {
		max-height: 100% !important;
	}

	.da-statistics__lines {
		display: block;
	}
}

.da-statistics__card {
	background: rgba(70, 67, 141, 0.90);
	padding: 36px 26px;
	display: flex;
	flex-direction: column;
	gap: var(--da-space-2xl);
}

.da-statistics__stat {
	margin: 0;
	color: #fff;
}

.da-statistics__description {
	color: #fff;
}

.da-statistics__description p {
	margin: 0;
}
