/* ─── Stat Card Widget ─────────────────────────────────────────────────────── */

.hbc-sc-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* ── Card ── */

.hbc-sc-card {
	position: relative;
	background-color: #ffffff;
	border-radius: 16px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 1px solid #e8edf3;
	overflow: hidden;
}

/* 右上角装饰圆弧 */
.hbc-sc-card::after {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: rgba(37, 99, 235, 0.05);
	pointer-events: none;
}

/* ── Icon ── */

.hbc-sc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background-color: transparent;
	border: 1.5px solid #e0d6ca;
	border-radius: 10px;
	color: #c19a6b !important;
}

.hbc-sc-icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.hbc-sc-icon i {
	font-size: 20px;
	color: inherit !important;
}

/* ── Number ── */

.hbc-sc-number {
	font-size: 40px;
	font-weight: 700;
	color: #2563eb;
	line-height: 1.1;
}

.hbc-sc-suffix {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

/* ── Label ── */

.hbc-sc-label {
	font-size: 12px;
	font-weight: 600;
	color: #c19a6b;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.3;
}

/* ── Description ── */

.hbc-sc-desc {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: #666666;
	line-height: 1.6;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
	.hbc-sc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.hbc-sc-grid {
		grid-template-columns: 1fr;
	}

	.hbc-sc-number {
		font-size: 32px;
	}
}
