.wp-element-button.has-text-color:hover {
    text-decoration: underline;
}

.wp-element-button.has-transparent-background-color:hover {
    background: var(--wp--preset--color--neutral) !important;
    text-decoration: none !important;
}

/* is-style-outline */
.wp-block-button.is-style-outline .wp-block-button__link {
    background: var(--wp--preset--color--transparent);
    color: var(--wp--preset--color--secondary-dark);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--wp--preset--color--transparent);
    color: var(--wp--preset--color--text-primary);
}

/* is-style-cta */
.wp-block-button.is-style-cta .wp-block-button__link {
    position: relative;
    transition: all 0.3s ease;
    background: none;
    color: var(--wp--preset--color--text-primary);
    padding: 0;
    padding-right: 2em;
}

.wp-block-button.is-style-cta .wp-block-button__link:hover {
    text-decoration: underline;
}

.wp-block-button.is-style-cta .wp-block-button__link::after {
    position: absolute;
    top: 50%;
    right: 0.5em;
    z-index: 1;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: '\f178';
    transform: translate(0, -50%);
    transition: all 0.3s ease
}

.wp-block-button.is-style-cta .wp-block-button__link[target="_blank"]::after {
    content: '\f08e';
    font-weight: 600;
}

.wp-block-button.is-style-cta .wp-block-button__link[target="_blank"]:hover::after {   
    transform: translate(0, -50%) scale(1.1);
}

.wp-block-button.is-style-cta .wp-block-button__link:hover::after {
    transform: translate(0.5em, -50%);
    transition: all 0.3s ease
}

/* is-style-badge */
.wp-block-button.is-style-badge .wp-block-button__link {
    position: relative;
    transition: all 0.3s ease;
    background: var(--wp--preset--color--quaternary);
    color: var(--wp--preset--color--text-primary);
    font-weight: 400;
    padding: 0.5em 2em;
    border-radius: 8px;
}

.wp-block-button.is-style-badge .wp-block-button__link:hover {
    text-decoration: none;
    padding-left: 1.2em;
    padding-right: 2.8em;
}

.wp-block-button.is-style-badge .wp-block-button__link::after {
    position: absolute;
    top: 50%;
    right: 1.2em;
    z-index: 1;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: '\f178';
    transform: translate(-100%, -50%);
    opacity: 0;
    transition: all 0.3s ease
}

.wp-block-button.is-style-badge .wp-block-button__link:hover::after {
    transform: translate(0, -50%);
    opacity: 1;
}

/* is-style-download-icon */
.wp-block-button.is-style-download-icon .wp-block-button__link {
    position: relative;
    transition: all 0.3s ease;
    background: none;
    color: var(--wp--preset--color--text-primary);
    font-weight: 600;
    padding: 0;
    padding-right: 3.5em;
}

.wp-block-button.is-style-download-icon .wp-block-button__link:hover {
    text-decoration: underline;
}

.wp-block-button.is-style-download-icon .wp-block-button__link::after {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 2.2em;
    height: 2.2em;
    border-radius: 99px;
    background-color: var(--wp--preset--color--tertiary);
    z-index: 1;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Pro";
    color: var(--wp--preset--color--text-primary) !important;
    font-size: var(--wp--preset--font-size--medium) !important;
    font-weight: 400;
    content: '\f33d';
    transform: translate(0, -50%);
    transition: all 0.3s ease
}

.wp-block-button.is-style-download-icon .wp-block-button__link[target="_blank"]::after {
    content: '\f08e';
}

.wp-block-button.is-style-download-icon .wp-block-button__link:hover::after {
    transform: translate(0, -50%) scale(1.1);
    transition: all 0.3s ease
}

