/* 360TFT Image Visibility Fix - Override all opacity issues */

/* FORCE ALL IMAGES TO BE VISIBLE - HIGHEST PRIORITY */
img,
img.loaded,
img[loading],
img[src],
.testimonial-author-image img,
.testimonial-image,
img.testimonial-image,
article img,
section img,
div img {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Specific testimonial image fixes */
img[src*="27-jay-bird"],
img[src*="yasin-ben-el-mhanni"],
img[src*="157549"],
img[src*="adam_teviotdale"],
img[src*="images.jpeg"],
img[alt*="Jay Bird"],
img[alt*="Yasin Ben El-Mhanni"],
img[alt*="Michael Bakare"],
img[alt*="Adam Teviotdale"],
img[alt*="Marcel Oakley"] {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

/* Member map and community images - CENTERED */
img[src*="member_map"],
img[alt*="coaching community"],
img[alt*="Global coaching community"] {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Center the container holding member map */
.community-stats div[style*="text-align: center"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Override any JavaScript-generated styles */
img[style*="opacity: 0"],
img[style*="opacity:0"] {
    opacity: 1 !important;
}

/* Disable any lazy loading opacity effects */
img[loading="lazy"],
img[loading="eager"] {
    opacity: 1 !important;
    display: block !important;
}