/* needed to allow position: sticky to function */
.mm-page.mm-slideout, body {
  overflow: visible !important;
}

.leadership-testimony-section .testimony-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 1200px) { /* Assuming xl breakpoint is 1200px */
  .leadership-testimony-section .testimony-container {
    flex-direction: row;
  }
}

.leadership-testimony-section .column {
  width: 100%;
  @media (min-width: 1200px) {
    width: calc(50% - 24px);
    flex: 0 0 calc(50% - 24px);
  }
}


.leadership-testimony-section .right-column img {
  object-position: top;
}

.leadership-testimony-section .testimony-container .left-column-sticky {
  position: relative;
}

.leadership-testimony-section .testimony-container .left-column-sticky .title {
  width: 100%;
  height: auto;
  text-align: center;
  font-weight: 500;
  word-wrap: break-word;
}



.leadership-testimony-section .testimony-container .left-column-sticky .formatted-body {
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 200px; /* Distance from the top */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}