/**
 * Approach: timeline progress bar — smooth height while scrolling.
 */

#approach .celtic-approach__progress {
	height: 0;
	transition: height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: height;
}

@media (prefers-reduced-motion: reduce) {
	#approach .celtic-approach__progress {
		transition-duration: 0.01ms;
	}
}
