/* Emergency fix for stuck expanded testimonial cards */

/* Hide any testimonial card that's positioned fixed (expanded state) on page load */
.testimonial-card[style*="position: fixed"] {
    display: none !important;
}

/* Also hide any orphaned placeholder images that might be stuck */
body > .placeholder-image,
body > div > .placeholder-image:only-child {
    display: none !important;
}

/* Debug: Add red border to any element with logo in the middle of the page */
body > img[src*="logo"],
body > div > img[src*="logo"],
main > img[src*="logo"] {
    border: 10px solid red !important;
}
