/* Fix 1: Remove stacking context from col-12 so image_wrap z-index
   participates directly in the root stacking context. */
.home .testimonials .col-12 {
    z-index: auto;
}

/* Fix 2: Ensure the testimonials section does not clip the absolutely
   positioned image_wrap that overflows below it. overflow:hidden on this
   element (or an ancestor) would clip the image at the section boundary,
   making it appear cut off at the point where communities begins. */
.home .testimonials,
.home .testimonials .container,
.home .testimonials .row {
    overflow: visible !important;
}
