[data-gcs-load-reveal="true"] .gcs-lr-word {
	display: inline-block;
	white-space: nowrap;
}

[data-gcs-load-reveal="true"] .gcs-lr-char-mask {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
}

[data-gcs-load-reveal="true"] .gcs-lr-char {
	display: inline-block;
	opacity: 0;
	transform: translate3d(0, 1.08em, 0);
	will-change: transform, opacity;
}

[data-gcs-load-reveal="true"].gcs-lr-visible .gcs-lr-char {
	animation-name: gcs-lr-rise;
	animation-duration: 460ms;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	animation-fill-mode: forwards;
	animation-delay: var(--gcs-lr-delay, 0ms);
}

@keyframes gcs-lr-rise {
	0% {
		opacity: 0;
		transform: translate3d(0, 1.08em, 0);
	}

	60% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	[data-gcs-load-reveal="true"] .gcs-lr-char {
		opacity: 1;
		transform: none;
	}

	[data-gcs-load-reveal="true"].gcs-lr-visible .gcs-lr-char {
		animation: none;
	}
}
