/* ── Metrics bar ── */
.metric-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.25em 1em;
	text-align: center;
	flex: 1 1 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.metric-number {
	font-size: 2.4em;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1;
}
.metric-label {
	font-size: 0.8em;
	color: #888;
	margin-top: 0.4em;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ── Skill tag groups ── */
.skill-groups {
	max-width: 860px;
	margin: 0 auto;
}
.skill-group {
	display: flex;
	align-items: flex-start;
	gap: 1em;
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid #eee;
}
.skill-group:last-child {
	border-bottom: none;
	margin-bottom: 0;
}
.skill-group-label {
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #666;
	min-width: 110px;
	padding-top: 0.35em;
	flex-shrink: 0;
}
.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
}
.tag {
	display: inline-block;
	padding: 0.25em 0.75em;
	border-radius: 20px;
	font-size: 0.78em;
	font-weight: 500;
}

/* ── Experience / Education entries ── */
.stat-badge {
	display: inline-block;
	background: #76b900;
	color: #fff;
	border-radius: 4px;
	padding: 0.1em 0.5em;
	font-size: 0.9em;
	font-weight: bold;
	margin-right: 0.3em;
}
.exp-entry {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2.5em;
	gap: 1.5em;
	text-align: left;
}
.exp-logo {
	width: 52px;
	height: 52px;
	object-fit: contain;
	flex-shrink: 0;
	border-radius: 6px;
}
.exp-bullets {
	font-size: 0.85em;
	color: #555;
	margin: 0.5em 0 0 1.2em;
	padding: 0;
}
.exp-bullets li {
	margin-bottom: 0.4em;
}
@media (max-width: 600px) {
	.skills-grid { grid-template-columns: 1fr; }
}
