.image-with-text-section{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:10px;
}

.image-with-text-section .image-with-text_media{
  overflow: hidden;
  border-radius:10px;
  order: 2;
  max-height: 80vh;
}

.image-with-text-section .image-with-text_info{
  display: flex;
  flex-direction: column;
}

.image-with-text-section .image-with-text_info>.block-heading{
  padding-bottom:20px;
  border-bottom:1px solid rgba(var(--color-entry-line),0.2);
}
.image-with-text-section .image-with-text_info>.rte{
  padding-top:20px;
}
.image-with-text-section .image-with-text_container{
  order: 2;
}
@media(max-width:768px){
  .image-with-text-section{
    grid-template-columns: repeat(1,1fr);
    gap:8vw;
  }
  .image-with-text-section.mobile-image-top .image-with-text_media{
    order: 1;
  }
  .image-with-text-section .image-with-text_info>.block-heading{
    padding-bottom: 10px;
  }
  .image-with-text-section .image-with-text_info>.rte{
    padding-top: 10px;
  }
  .image-with-text-section .image-with-text_media{
    max-height: 80vh;
  }
}