/* Button style variants - hover states only (base styles in theme.json) */

.wp-block-button.is-style-blue .wp-block-button__link:hover {
    background: var(--wp--preset--color--blue-80);
}

.wp-block-button.is-style-black .wp-block-button__link:hover {
    background: var(--wp--preset--color--gray-80);
}

.wp-block-button.is-style-blue-outline .wp-block-button__link:hover {
    background: rgba(0, 68, 237, 0.08);
}

.wp-block-button.is-style-black-outline .wp-block-button__link:hover {
    background: rgba(0, 0, 0, 0.06);
}

.wp-block-button.is-style-white-outline .wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.15);
}
