.landing-page--itg-container {
  position: relative;
  max-width: 100%;
  display: grid;
  grid-template-areas: "img title" "img blocks" "img btn";
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  column-gap: 96px;

  &.itg-no-image {
    grid-template-areas: "title" "blocks" "btn";
    grid-template-columns: 1fr;
  }

  & .itg-area-img {
    grid-area: img;

    & img {
      width: 100%;
      height: auto;
    }
  }

  & .itg-area-title {
    grid-area: title;
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 24px;
  }

  & .itg-area-text-blocks {
    grid-area: blocks;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
    gap: 1rem;

    & .itg-text-block {
      & .itg-text-header {
        font-size: 19px;
        font-weight: bold;
        margin-bottom: 14px;
      }

      & .metafield-rich_text_field {
        font-size: 16px;
      }
    }
  }

  & .itg-area-btn {
    grid-area: btn;

    & a {
      width: 57%;
    }
  }
}

@media (max-width: 719px) {
  .landing-page--itg-container {
    position: relative;
    max-width: 100%;
    display: flex;
    flex-direction: column;

    & .itg-area-img {
      margin-bottom: 24px;

      & img {
        width: 100%;
        height: auto;
      }
    }

    & .itg-area-title {
      width: 100%;
      height: auto;
      text-align: center;
      margin-bottom: 32px;
    }

    & .itg-area-text-blocks {
      display: flex;
      flex-direction: column;
      max-width: 90vh;

      & .itg-text-block {
        & .itg-text-header {
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 8px;
        }

        & .metafield-rich_text_field {
          font-size: 15px;
        }
      }
    }

    & .itg-area-btn {
      & a {
        width: 100%;
      }
    }
  }
}