.image-content-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 0px;
  max-width: 1400px;
  width: 90%;
  padding: var(--space-large);
  background-color: var(--lite);
  border-radius: var(--border-rad);
}

.image-content-block.no-bg {
  /* background-color: transparent;
  border: 0px;
  margin-bottom: 0;

  .content-section {
    & > *:not(.lite-button) {
      color: #fff;
    }
  } */
}

.image-content-block {
  .image-content-container {
    display: flex;
    width: 100%;
    gap: var(--space-med);
    /* min-height: 600px !important; */

    .image-content-right,
    .image-content-left {
      width: 50%;
      /* padding: 40px; */
      padding: 0;

      .image-background-section {
        height: 100%;
        min-height: 0 !important;

        & img {
          border-radius: var(--border-rad);
        }
      }
    }
    .content-section {
      width: 50%;
      padding: 0px !important;
      align-content: center;

      & > :last-child {
        margin-bottom: 0;
      }
      & > * {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
      }
    }
  }
  .image-content-container.reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 1024px) {
  .image-content-block {
    padding: var(--space-sm);

    /* min-height: 0 !important; */
    .image-content-container.reverse {
      flex-direction: column-reverse;
    }
    .image-content-container {
      flex-direction: column;

      .image-content-left,
      .image-content-right {
      }
      .image-content-left,
      .image-content-right,
      .content-section {
        width: 100%;
        padding: 0px !important;
      }
      .content-section {
        /* padding: 40px 20px; */
      }
    }
  }
}
