/**
 * Phytest Metrics Stats Styles
 * Clean metrics display with vertical dividers
 */

/* Wrapper */
.phytest-metrics-stats-wrapper {
	width: 100%;
	padding: 60px 20px;
	position: relative;
}

/* Container */
.phytest-metrics-stats-container {
	margin: 0 auto;
	position: relative;
}

/* Title */
.phytest-metrics-stats-title {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	margin: 0 0 60px 0;
	line-height: 1.2;
	font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
}

/* Metrics Grid */
.phytest-metrics-stats-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	max-width: 900px;
	margin: 0 auto;
}

/* Individual Metric */
.phytest-metric-stat {
	flex: 1;
	text-align: center;
	padding: 0 40px;
}

/* Metric Value (Large Number) */
.phytest-metric-value {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px 0;
	line-height: 1;
	font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
}

/* Metric Label (Description) */
.phytest-metric-label {
	font-size: 16px;
	font-weight: 400;
	color: #4a4a4a;
	margin: 0;
	line-height: 1.4;
	font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
}

/* Vertical Divider */
.phytest-metric-divider {
	width: 1px;
	height: 80px;
	background: #d0d0d0;
	flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.phytest-metrics-stats-title {
		font-size: 32px;
		margin-bottom: 50px;
	}
	
	.phytest-metric-stat {
		padding: 0 30px;
	}
	
	.phytest-metric-value {
		font-size: 42px;
	}
	
	.phytest-metric-label {
		font-size: 15px;
	}
	
	.phytest-metric-divider {
		height: 70px;
	}
}

@media (max-width: 768px) {
	.phytest-metrics-stats-wrapper {
		padding: 50px 20px;
	}
	
	.phytest-metrics-stats-title {
		font-size: 28px;
		margin-bottom: 40px;
	}
	
	.phytest-metrics-stats-grid {
		flex-direction: column;
		gap: 40px;
	}
	
	.phytest-metric-stat {
		padding: 0;
		width: 100%;
	}
	
	.phytest-metric-value {
		font-size: 40px;
	}
	
	.phytest-metric-label {
		font-size: 14px;
	}
	
	.phytest-metric-divider {
		display: none;
	}
}

@media (max-width: 480px) {
	.phytest-metrics-stats-wrapper {
		padding: 40px 15px;
	}
	
	.phytest-metrics-stats-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
	
	.phytest-metrics-stats-grid {
		gap: 30px;
	}
	
	.phytest-metric-value {
		font-size: 36px;
	}
	
	.phytest-metric-label {
		font-size: 13px;
	}
}

