/**
 * Hide Google reCAPTCHA floating badge site-wide (same approach as Hyvä HvaSupply recaptcha.css).
 * Invisible/v3 still works; if admin uses v2 checkbox, the in-form challenge must stay visible.
 */
html body .grecaptcha-badge,
html body .grecaptcha-badge-wrapper {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
}
