/* Solid Addons — Scroll Fill effect (applied to Heading / Text Editor) */

/* Word/letter units stay inline so natural wrapping + justification are preserved. */
.solidae-sf .solidae-sf-w {
	display: inline;
	transition: none;
}

/* Block / gradient-sweep mode clips a moving gradient to the text. */
.solidae-sf-target--block {
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent;
	color: transparent;
	background-repeat: no-repeat;
}

/* Accessibility: users who prefer reduced motion see the text fully filled. */
@media (prefers-reduced-motion: reduce) {
	.solidae-sf .solidae-sf-w {
		opacity: 1 !important;
	}
}
