/* MCDP site-wide scroll-dot navigation (right rail, always-visible labels) */
.mcdp-dots {
	position: fixed;
	right: 44px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 90;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 15.375px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mcdp-dots::before,
.mcdp-dots::after {
	content: '';
	width: 1.5px;
	height: 130px;
	background: rgba(110, 130, 145, 0.45);
	margin: 10px 5.5px;
}
.mcdp-dots a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	text-decoration: none;
}
.mcdp-dots a::before {
	content: attr(data-label);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.2px;
	white-space: nowrap;
	color: rgba(110, 130, 145, 0.9);
	transition: color 0.2s ease;
}
.mcdp-dots a::after {
	content: '';
	flex: none;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(140, 158, 172, 0.6);
	transition: all 0.2s ease;
	margin-right: 1px;
}
.mcdp-dots a:hover::before { color: #2c6396; }
.mcdp-dots a:hover::after { background: #2c6396; }
.mcdp-dots a:focus-visible {
	outline: 2px solid #2c6396;
	outline-offset: 6px;
	border-radius: 2px;
}
.mcdp-dots li.is-active a::before {
	color: #2c6396;
	font-weight: 500;
	font-size: 12px;
}
.mcdp-dots li.is-active a::after {
	width: 13px;
	height: 13px;
	margin-right: 0;
	background: #2c6396;
	box-shadow: 0 0 0 5px rgba(44, 99, 150, 0.18);
}
/* labels need ~150px clearance beyond the 1248px content box on each side:
   1248 + 2*(150 + 44) = ~1636 → labels only on wide screens; dots-only in between */
@media (max-width: 1719px) {
	.mcdp-dots a::before { display: none; }
	.mcdp-dots li.is-active a::before { display: none; }
}
@media (max-width: 1359px) {
	.mcdp-dots { display: none; }
}
