/* =========================================================================
   Sterling Design — scroll-reveal motion
   Companion to assets/js/reveal.js, which tags reveal units with .sd-anim
   and flips on .sd-in as they enter the viewport. Only the script ever
   applies .sd-anim, so without JS nothing on the page is hidden.
   ========================================================================= */

.sd-anim {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.sd-anim.sd-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.sd-anim {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
