/* ==========================================================
   BASE.CSS - Global base styles and accessibility
   ========================================================== */

/* ---------------------------------------------------------
   ACCESSIBILITY - Skip to content link (keyboard navigation)
   --------------------------------------------------------- */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 9999;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid #4a7c59;
    outline-offset: 2px;
}

/* ---------------------------------------------------------
   reCAPTCHA Badge
   --------------------------------------------------------- */
/* Position and z-index */
.grecaptcha-badge {
    z-index: 9999 !important;
    position: fixed !important;
    bottom: 14px !important;
    right: 14px !important;
    width: 70px !important;
    height: 60px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

/* Prevent expansion on hover */
.grecaptcha-badge:hover {
    width: 70px !important;
    height: 60px !important;
}

/* Badge content */
.grecaptcha-badge > div {
    width: 70px !important;
    height: 60px !important;
}
