/* Sepanta System — quiet, branded viewport scrollbar (desktop only). */
@media (min-width: 769px) {
	html,
	body {
		scrollbar-width: thin;
		scrollbar-color: rgba(0, 15, 89, .68) #f3f5f8;
	}

	html::-webkit-scrollbar,
	body::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}

	html::-webkit-scrollbar-track,
	body::-webkit-scrollbar-track {
		background: #f3f5f8;
	}

	html::-webkit-scrollbar-thumb,
	body::-webkit-scrollbar-thumb {
		min-height: 48px;
		background-color: rgba(0, 15, 89, .68);
		background-clip: padding-box;
		border: 3px solid #f3f5f8;
		border-radius: 999px;
	}

	html::-webkit-scrollbar-thumb:hover,
	body::-webkit-scrollbar-thumb:hover {
		background-color: #ff7614;
	}

	html::-webkit-scrollbar-corner,
	body::-webkit-scrollbar-corner {
		background: #f3f5f8;
	}
}
