/* Fletcher Scroll Line */
.fsl-container {
	position: absolute;
	left: 0;
	width: 100%;
	pointer-events: none;
	overflow: visible;
}

.fsl-svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.fsl-track {
	opacity: 1;
}

.fsl-draw {
	transition: stroke-dashoffset 0.05s linear;
}

/* Respect reduced-motion: show the full line, no animated draw. */
@media (prefers-reduced-motion: reduce) {
	.fsl-draw {
		stroke-dashoffset: 0 !important;
		transition: none;
	}
}
