/* Mobile Responsive Fixes for MyCity Affiliate Login */
@media screen and (max-width: 480px) {
    
    /* 1. Fix the form box container layout to prevent clipping */
    div[class*="sumo_affiliates"], 
    .sumo-affiliates-login-wrapper,
    div[style*="border"] {
        max-width: 92% !important;
        width: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        padding: 15px !important;
    }

    /* 2. Scale the Google reCAPTCHA container so it stays inside the card borders */
    .g-recaptcha, 
    div[class*="recaptcha"] {
        transform: scale(0.97) !important;
        -webkit-transform: scale(0.97) !important;
        transform-origin: 0 0 !important;
        -webkit-transform-origin: 0 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
}

a[href*="/affiliate-registration/"] {
    display: none !important;
}

/* Prevent thumbnail cropping on blog archives/featured images */
.wp-post-image, 
.post-thumbnail img, 
.entry-thumb img {
    object-fit: contain !important;
    background-color: transparent; /* Or change to #fff / #f9f9f9 if you want a background fill */
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
}