.wp-block-nemtly-shimmer-lines {
    .shimmer-text {
        background: var(--shimmer-gradient, linear-gradient(90deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%));
        background-size: var(--shimmer-background-size, 200%) auto;
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
        animation: shimmer var(--shimmer-animation-duration, 3s) var(--shimmer-animation-type, linear) infinite;
        // Inherit typography styles from parent
        font-style: inherit;
        font-weight: inherit;
        letter-spacing: inherit;
        text-transform: inherit;
    }
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}