.mpz-wrap {
	--mpz-a: #c75b3a; /* orange / terracotta */
	--mpz-b: #a6ce39; /* vert lime */
	--mpz-ink: #2b2b28;
	--mpz-muted: #6b6b64;
	--mpz-line: #d7d4c9;
	--mpz-card: #ffffff;

	font-family: 'Work Sans', sans-serif;
	color: var(--mpz-ink);
	padding: 32px 16px 8px;
	box-sizing: border-box;
}

.mpz-wrap *,
.mpz-wrap *::before,
.mpz-wrap *::after {
	box-sizing: border-box;
}

.mpz-heading {
	font-family: 'Fraunces', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: clamp(24px, 3.6vw, 32px);
	text-align: center;
	margin: 0 0 48px;
	color: var(--mpz-ink);
}

/* ---------- Desktop / tablet: zigzag row ---------- */
.mpz-row {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 4px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 30px 4px 10px;
}

.mpz-connector {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.mpz-connector polyline {
	fill: none;
	stroke: var(--mpz-line);
	stroke-width: 2;
	stroke-dasharray: 5 6;
	stroke-linecap: round;
}

.mpz-item {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 0;
	min-width: 0;
}

.mpz-up {
	margin-top: 0;
}

.mpz-down {
	margin-top: 74px;
}

.mpz-slot {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 3px;
}

.mpz-slot-top {
	min-height: 40px;
	justify-content: flex-end;
}

.mpz-slot-bottom {
	min-height: 78px;
	justify-content: flex-start;
	max-width: 175px;
}

.mpz-num {
	font-weight: 600;
	font-size: 26px;
	line-height: 1;
    font-family: Anton, sans-serif;
    letter-spacing: 1px;
}

.mpz-num.mpz-a {
	color: var(--mpz-a);
}

.mpz-num.mpz-b {
	color: var(--mpz-b);
}

.mpz-label {
	font-weight: 600;
	font-size: 13px;
	line-height: 1.35;
	color: var(--mpz-ink);
}

.mpz-desc {
	font-size: 10.5px;
	color: var(--mpz-muted);
	line-height: 1.45;
}

.mpz-tick {
	width: 0;
	height: 14px;
	border-left: 2px dashed var(--mpz-line);
}

.mpz-circle {
	width: 68px;
	height: 68px;
	min-width: 68px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(20, 20, 15, 0.1);
}

.mpz-circle.mpz-a {
	border-color: var(--mpz-a);
	color: var(--mpz-a);
}

.mpz-circle.mpz-b {
	border-color: var(--mpz-b);
	color: var(--mpz-b);
}

.mpz-circle svg {
	width: 30px;
	height: 30px;
}

/* ---------- Mobile: vertical list ---------- */
.mpz-mobile-list {
	display: none;
	flex-direction: column;
	gap: 16px;
	max-width: 480px;
	margin: 0 auto;
}

.mpz-mobile-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--mpz-card);
	border: 1px solid #ebe8de;
	border-radius: 14px;
	padding: 14px 16px;
}

.mpz-mobile-item .mpz-circle {
	width: 54px;
	height: 54px;
	min-width: 54px;
	border-width: 2px;
}

.mpz-mobile-item .mpz-circle svg {
	width: 22px;
	height: 22px;
}

.mpz-mobile-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 2px;
}

.mpz-mobile-content .mpz-num {
	font-size: 14px;
}

.mpz-mobile-title {
	font-family: 'Fraunces', serif;
	font-weight: 600;
	font-size: 16px;
	margin: 0;
	line-height: 1.3;
}

.mpz-mobile-desc {
	font-size: 13px;
	color: var(--mpz-muted);
	margin: 0;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.mpz-row,
	.mpz-connector {
		display: none;
	}

	.mpz-mobile-list {
		display: flex;
	}

	.mpz-heading {
		margin-bottom: 28px;
	}
}