.columns-with-centered-image {
  .columns-with-centered-image__heading {
    max-width: 650px;
    margin: unset;
    margin-inline: auto;
    font-weight: 500;
  }

  .columns-with-centered-image__blocks.text-columns-and-centered-image-wrapper {
    margin-top: 4.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px auto;

    @media (max-width: 750px) {
      row-gap: 5rem;
      column-gap: 1.5rem;
    }

    @media (min-width: 750px) {
      display: flex;
      justify-content: space-between;
      column-gap: 5rem;
      margin-top: 7rem;
    }
  }

  .centered-image-wrapper {
    position: relative;
    grid-row-start: 1;
    grid-column: 1 / 3;
    width: 100%;

    @media (min-width: 750px) {
      /* padding-top: 100%; */
    }
  }

  .centered-image {
    width: 100%;
    object-fit: contain;
    object-position: center;
    height:auto;
    @media (max-width: 750px) {
      height: 100%;
    }
  }

  .columns-with-centered-image__button-block {
    margin-top: 3rem;
  }

  .columns-with-centered-image__buttons {
    .button,
    .button:after {
      font-weight: 600;
    }
    .button {
      svg {
        margin-left: 1rem;
      }
    }
    .ratings-text-and-stars-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
  }
}

.text-columns-blocks-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  @media (min-width: 750px) {
    justify-content: space-around;
  }

  @media (max-width: 750px) {
    text-align: left;
  }
}

.text-column.column-bottom {
  justify-content: top;
  flex-direction: column;
  display: flex;
}
.text-column-heading {
  margin: unset;
  margin-block: 1rem;
  font-weight: 500;
  font-size:2.4rem;
}
.columns-with-centered-image__text {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin-inline: auto;
  @media (max-width: 750px) {
    flex-direction: column;
  }
  svg {
    margin-right: 1rem;
  }
}
.text-column-text-content {
  margin-block: unset;
  font-size:1.6rem;
}

@media (max-width: 750px) {
  .text-column-icon-wrapper {
    display: flex;
    height: 35px;
    margin-bottom: 2rem;

    svg {
      width: 100%;
      height: 100%;
    }
    img {
      object-fit:contain;
      width: 100%;
      height: 100%;
    }
  }
}

.text-column.column-top {
    text-align: left;
}
.text-column {
  min-height:270px;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
    position: relative;
}