/**
 * Section: Stats
 * Hiển thị số liệu thống kê dạng pill tags
 * 
 * @package spawell-child
 * @since 1.0.0
 */

/* ========================================
   SECTION: STATS - PILL TAGS
   ======================================== */
.mf-stats {
	padding: 60px 0;
	background: #fff;
}

.mf-stats .stats-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	max-width: 1000px;
	margin: 0 auto;
}

.mf-stats .stat-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 28px;
	background: #fff;
	border: 1.5px solid #eeedec;
	border-radius: 50px;
	font-size: 15px;
	color: var(--e-global-color-accent, #4a7c59);
	white-space: nowrap;
	transition: all 0.3s ease;
}

.mf-stats .stat-pill:hover {
	background: var(--e-global-color-accent, #4a7c59);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(74, 124, 89, 0.3);
}

.mf-stats .stat-pill:hover .stat-number {
	color: #fff;
}

.mf-stats .stat-label {
	font-weight: 400;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 767px) {
	.mf-stats {
		padding: 40px 0;
	}
	
	.mf-stats .stats-list {
		gap: 10px;
	}
	
	.mf-stats .stat-pill {
		padding: 10px 20px;
		font-size: 13px;
	}
}
