/* ===== Gradient Text Block ===== */
.wp-block-awgt-gradient-text {
	line-height: 1.2;
	margin: 0.5em 0;
}

/* Animated Gradient */
.awgt-gt-animated {
	background-size: 200% 200% !important;
	animation: awgt-gt-shift 5s ease infinite;
}

@keyframes awgt-gt-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.editor-styles-wrapper .wp-block-awgt-gradient-text,
.wp-block-awgt-gradient-text {
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}