/* Reading progress bar fixed at viewport top */
.blogie-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 9999;
	background: transparent;
	pointer-events: none;
}
.blogie-progress__fill {
	display: block;
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #2563eb, #3b82f6);
	transition: width 0.1s linear;
	box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}
