.two-column-text-section {
  .page-center {
    max-width: 90rem !important;
  }
}
.grid-column {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  column-gap: 5rem;
  row-gap: 2rem;

  .column-text {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

.grid-column .column-text {
  .hs-embed-wrapper, a:has(img) {
    aspect-ratio: 3 / 4;
  }

  img, .hs-embed-content-wrapper {
    height: 100% !important;
    object-fit: cover;
    background: #fff;
    padding: 2rem 2rem 5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
  }

  .hs-embed-content-wrapper > div {
    height: 100% !important;
  }
}

.grid-column.left-align {
  grid-template-columns: 0.75fr 1.25fr;
  .column-text:first-of-type {
    order: 999;
  }
}

.two-column-text-section .column-text.right-column img {
  max-width: 100%;
  height: auto;
}

.column-text {
  display: flex;
  flex-flow: column;
  justify-content: center;

  h2 {
    /* Heading/heading/H2 */
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 70.4px */
    letter-spacing: -1.28px;
  }
}

@media screen and (max-width: 992px) {
  .grid-column {
    grid-template-columns: 1fr;
    .column-text:first-of-type {
      order: 999;
    }
  }
  .grid-column.left-align {
    grid-template-columns: 1fr;
    .column-text:first-of-type {
      order: 999;
    }
  }

  .grid-column .column-text {
    .hs-embed-wrapper, a:has(img) {
      aspect-ratio: 3 / 4;
    }

    img, .hs-embed-content-wrapper {
      padding: 1rem 1rem 3rem 1rem;
    }
  }

  .column-text {
    h2 {
      /* Heading/heading/H2 */
      font-size: 2rem;
    }
  }