.wp-core-ui a.custom_button,
a.custom_button {
    display: inline-flex;
    position: relative;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;

    font-family: Roboto, sans-serif;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    white-space: nowrap;

    border-radius: 8px !important;
    border: 1px solid var(--primary-purple-700, #673AB7) !important;

    transition: all .3s ease;
}

.wp-core-ui a.custom_button svg path,
a.custom_button svg path {
    transition: all .3s ease;
}

.wp-core-ui a.custom_button:hover,
a.custom_button:hover,
.article .article__content .wp-block-group a.custom_button:hover {
    color: #fff !important;
    background-color: #481B98 !important;
}

.wp-core-ui a.custom_button:hover svg path,
a.custom_button:hover svg path {
    stroke: #fff;
}

.article .article__content .wp-block-group:has(a.custom_button) {
    background-color: inherit !important;
}

.article .article__content .wp-block-group a.custom_button {
    color: var(--custom-text-color) !important;
    background-color: var(--custom-background-color) !important;
}