.general-image-text-horizontal-component-container {
  &[data-theme="dark"] {
    background: var(--dark-base-grey-100-base) !important;
  }
  .container {
    &.container-image-left {
      flex-direction: row-reverse;
    }
    gap: 80px;
    & > .left {
      min-height: 600px;
      .texts {
        .subtitle-and-title_content {
          gap: 8px;
          .title-and-content {
            gap: 24px;
          }
        }
      }
      .mob-image {
        display: none;
      }
      @media (max-width: 767px) {
        .mob-image {
          display: flex;
          width: 100%;
          padding: 32px 0 12px;
          .image {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            img {
              width: 100%;
              float: left;
            }
          }
        }
      }
      .points {
        display: grid;
        &.column-amount-1 {
          grid-template-columns: repeat(1, 1fr);
        }
        &.column-amount-2 {
          grid-template-columns: repeat(2, 1fr);
        }
        &.column-amount-3 {
          grid-template-columns: repeat(3, 1fr);
        }
        &.column-amount-4 {
          grid-template-columns: repeat(4, 1fr);
        }
        gap: 12px;
        @media (max-width: 767px) {
          gap: 8px;

          &.column-amount-mobile-1{
            grid-template-columns: repeat(1, 1fr);
          }
          &.column-amount-mobile-2{
            grid-template-columns: repeat(2, 1fr);
          }
          &.column-amount-mobile-3{
            grid-template-columns: repeat(3, 1fr);
          }
          &.column-amount-mobile-4{
            grid-template-columns: repeat(4, 1fr);
          }
        }
        .point-item {
          border-radius: 8px;
          background: var(
            --Base-Grey-Gradient-Gray-20,
            rgba(119, 119, 119, 0.2)
          );
          gap: 8px;
          &.flex-column {
            .icon {
              width: 100%;
              min-width: unset !important;
              img {
                float: unset;
              }
            }
          }
          &.padding-normal {
            padding: 16px;
            @media (max-width: 767px) {
              padding: 12px;
            }
          }
          &.padding-smaller {
            padding: 8px;
            @media (max-width: 767px) {
              padding: 6px;
            }
          }
          .icon {
            overflow: hidden;
            img {
              float: left;
            }
            &.size-large {
              min-width: 80px;
              img {
                width: 80px;
              }
            }
            &.size-normal {
              min-width: 64px;
              img {
                width: 64px;
              }
            }
            &.size-small {
              min-width: 32px;
              img {
                width: 32px;
              }
            }
            @media (max-width: 767px) {
              &.size-large img {
                width: 40px;
              }
              &.size-normal img {
                width: 32px;
              }
              &.size-small img {
                width: 24px;
              }
            }
            overflow: hidden;
            &.left {
              text-align: left;
            }
            &.center {
              text-align: center;
            }
            &.right {
              text-align: right;
            }
          }
          .title-and-text {
            width: 100%;
            gap: 4px;
            &.bottom {
              flex-direction: column-reverse;
            }
            &.left {
              text-align: left;
            }
            &.center {
              text-align: center;
            }
            &.right {
              text-align: right;
            }
            ._title {
              font-weight: 600;
              &.size-normal {
                font-size: 24px;
                @media (max-width: 767px) {
                  font-size: 20px;
                }
              }
              &.size-larger {
                font-size: 32px;
                @media (max-width: 767px) {
                  font-size: 28px;
                }
              }
            }
          }
        }
      }
    }
    .right {
      @media (max-width: 767px) {
        display: none;
      }
      .image {
        width: 600px;
        aspect-ratio: 1/1;
        border-radius: 8px;
        overflow: hidden;
        img {
          width: 100%;
          height: 100%;
          float: left;
          object-fit: cover;
        }
      }
    }
  }
  .flex {
    display: flex;
  }
  .flex-column {
    display: flex;
    flex-direction: column;
  }
  .align-items-center {
    align-items: center;
  }
  .align-items-start {
    align-items: flex-start;
  }
  .align-items-stretch {
    align-items: stretch;
  }
  .space-between {
    justify-content: space-between;
  }
}
