/* Official Google reCAPTCHA v3 badge (not a custom logo).
   The icon sits on the LEFT of Google's 256×60 bar. clip-path from the
   left hid the logo and overflow-x:clip on html/body hid the rest.
   Park the bar inside the viewport (pages use overflow-x-hidden) and
   crop to the icon; hover reveals "protected by reCAPTCHA". */
.grecaptcha-badge {
  display: block !important;
  position: fixed !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 70px !important;
  overflow: hidden !important;
  bottom: 96px !important;
  right: 8px !important;
  z-index: 2147483647 !important;
  transform: scale(0.82) !important;
  transform-origin: bottom right !important;
  transition: width 0.25s ease !important;
}

.grecaptcha-badge:hover,
.grecaptcha-badge:focus-within {
  width: 256px !important;
}

@media (max-width: 767px) {
  /* Sit above the Call Now FAB (and sticky CTA if it is visible). */
  .grecaptcha-badge {
    bottom: 148px !important;
  }
}
