.text_image .inner_section {
  display: flex;
  border-radius: 20px;
  box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  background: #fff;
  width: var(--baseWidth);
  max-width: var(maxWidth);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .text_image .inner_section {
    display: block;
  }
}
.text_image .inner_section.image--right {
  flex-direction: row-reverse;
}
.text_image .inner_section .image_section {
  display: block;
  width: 100%;
  flex: 0 0 393px;
  position: relative;
}
@media (max-width: 1024px) {
  .text_image .inner_section .image_section {
    width: 100%;
    height: 350px;
  }
}
@media (max-width: 768px) {
  .text_image .inner_section .image_section {
    width: 100%;
    height: 250px;
  }
}
.text_image .inner_section .image_section > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text_image .inner_section .text_section {
  padding: 50px;
  background: #fff;
}
@media (max-width: 768px) {
  .text_image .inner_section .text_section {
    padding: 30px 20px;
  }
}
.wp-block-columns .text_image .inner_section, .px-frame-layout .text_image .inner_section, .accordion-content .text_image .inner_section, .tab_wrapper .text_image .inner_section {
  width: 100%;
}
