
/**
 * Shared Hover Glow effect
 *
 * This CSS is intentionally global so it can be reused
 * by both the core Button block and the custom Fancy Button.
 */

.wp-block-button.is-style-cs-hover-glow .wp-block-button__link,
.cs-hover-glow {
    transition: box-shadow .3s ease, transform .3s ease;
}

.wp-block-button.is-style-cs-hover-glow .wp-block-button__link:hover,
.cs-hover-glow:hover {
    box-shadow:
        0 0 15px rgba(0,153,255,.8),
        0 0 30px rgba(0,153,255,.6);
    transform: translateY(-2px);
}
