/* =========================================================
   Dotyrich — Achievements widget
   Scope: .dr-ach-wrap, .dr-ach
   ========================================================= */

.dr-ach-wrap { background: var(--dr-bg); }

.dr-ach {
	background: var(--dr-bg);
	padding: 96px 32px;
}

.dr-ach__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.dr-ach__heading { margin-bottom: 64px; }

.dr-ach__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.dr-ach__item {
	padding: 24px 32px;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: var(--dr-transition);
}

.dr-ach__item:first-child { border-left: none; }

.dr-ach__value {
	font-size: clamp(2.5rem, 4.5vw, 4rem);
	font-weight: 300;
	color: var(--dr-text);
	letter-spacing: -0.03em;
	line-height: 1;
	font-family: 'Source Serif Pro', 'Playfair Display', Georgia, serif;
}

.dr-ach__text {
	font-size: 0.9375rem;
	color: var(--dr-text-muted);
	line-height: 1.5;
}

.dr-ach__footnote {
	display: inline;
	color: var(--dr-accent);
	font-weight: 600;
	margin-left: 2px;
}

.dr-ach__footnotes {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--dr-text-dim);
	font-size: 0.8125rem;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* === Responsive === */
@media (max-width: 1024px) {
	.dr-ach__grid { grid-template-columns: repeat(2, 1fr); }
	.dr-ach__item:nth-child(2n+1) { border-left: none; }
	.dr-ach__item:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 40px; margin-top: 16px; }
}

@media (max-width: 640px) {
	.dr-ach { padding: 56px 20px; }
	.dr-ach__grid { grid-template-columns: 1fr; }
	.dr-ach__item { border-left: none !important; padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
	.dr-ach__item:nth-child(n+3) { border-top: none; margin-top: 0; padding-top: 24px; }
	.dr-ach__item:last-child { border-bottom: none; }
}
