.wp-block-button .wp-block-button__link {
    transition: 150ms ease-out;
    text-wrap: nowrap !important;
    width: max-content;
}
.is-style-gradient .wp-block-button__link {
    color: var(--wp--preset--color--background) !important;
    background: linear-gradient(90deg, #F47C57 0%, #F79A3A 66%) !important;
    position: relative;
    overflow: clip;
    z-index: 5;
}
.is-style-gradient .wp-block-button__link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: var(--wp--preset--gradient--primary-gradient);
    transition: 300ms ease-out;
    z-index: -1;
}
.is-style-gradient:hover .wp-block-button__link::after {
    opacity: 0;
}


/* Fill style */
.wp-block-button:hover > .wp-block-button__link {
    background-color: #E6E6E6;
}