.angie-stats-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.angie-stat-item {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	padding: 0 30px;
	flex: 1;
	justify-content: center;
}

/* Divider line */
.angie-stat-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 10%;
	height: 80%;
	width: 1px;
	background-color: #E5E5E5; /* Default fallback */
}

/* Visual Column (Icon or Number) */
.angie-stat-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.angie-stat-number {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.angie-stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Text Column */
.angie-stat-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
}

.angie-stat-title-top,
.angie-stat-title-bottom {
	white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 767px) {
	.angie-stats-container {
		flex-direction: column;
		gap: 30px;
	}
	
	.angie-stat-item {
		width: 100%;
		border-right: none;
		padding: 0;
		justify-content: flex-start;
	}

	.angie-stat-item:not(:last-child)::after {
		display: none; /* Hide vertical divider on mobile */
	}
}
