/* CSS Resource Document for: Army Sustainment Command -> ABOUT PAGE  		*
!  Global classes should be defined in portal.css  							*
*  The proponent agency for this source is AMAS-PC							*/

/* Stats */
.stats-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1rem;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5rem;
	text-align: center;
}
.stat-card {
	background: #fff;
	border: 2px solid #ccc;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}
.stat-card:hover {
	transform: scale(1.05);
}
.icon {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}
.value {
	font-size: 1.8rem;
	font-family: GI7;
	color: #222;
	margin: 0.25rem 0;
}
.label {
	font-size: 0.95rem;
	color: #666;
}