/* REMP blue buttons — replaces the theme's heavy black buttons.
   Excludes .remp-card buttons (they have their own compact style). */

:root .wp-block-button__link:not(.remp-card .wp-block-button__link) {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

:root .wp-block-button__link:not(.remp-card .wp-block-button__link):hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

/* Spectra (UAGB) buttons: their per-block generated CSS carries the black
   background and #333 border, hence the !important overrides. */
.uagb-buttons-repeater.wp-block-button__link {
    background-color: #2563eb !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

.uagb-buttons-repeater.wp-block-button__link:hover {
    background-color: #1d4ed8 !important;
    border-color: transparent !important;
    color: #ffffff !important;
}
