.ai {
  @media (max-width: 1024px) {
    padding-bottom: var(--section-spacing-lg);
    border-bottom: 1px solid var(--c-gray-900);
  }

  h2 {
    margin: 0 0 32px 0;
    color: #181818;
    font-size: 200px;
    font-style: normal;
    font-weight: 700;
    line-height: 77%;
    letter-spacing: -8px;

    @media (max-width: 1440px) {
      font-size: 78px;

      font-weight: 700;
      line-height: 90%;
      letter-spacing: -1px;
    }
  }

  .text {
    max-width: 491px;
    margin-bottom: 32px;
    color: #1a1616;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.36px;

    @media (max-width: 1024px) {
      max-width: unset;
      display: none;
    }

    &.mobile {
      display: none;

      @media (max-width: 1024px) {
        display: block;
      }
    }
  }

  .bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 24px;

    @media (max-width: 1024px) {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  }

  .fibbl_lists {
    margin: 0 !important;
  }

  .ai-images-wrapper {
    margin: 0 0 32px 0;

    @media (max-width: 1024px) {
      margin: 0 -20px 32px 0;
    }

    .ai-images {
      width: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: start;
      gap: 28px;
      flex-wrap: nowrap;
      overflow-x: scroll;

      img {
        border-radius: 5px;

        @media (max-width: 1024px) {
          width: 134px;
          height: 134px;
        }

      }

      @media (max-width: 1024px) {
        gap: 10px;
      }
    }
  }

  .ai-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    @media (max-width: 1024px) {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .fibbl_lists {
      order: 1;

      @media (max-width: 1024px) {
        order: 2;
      }
    }

    .cta {
      order: 2;
      white-space: nowrap;

      @media (max-width: 1024px) {
        order: 1;
      }
    }
  }

  .fibbl_lists {
    max-width: 950px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 5px;
    background: #fffaee;

    @media (max-width: 1024px) {
      justify-content: start;
      padding: 24px 0;
      /* margin-bottom: 64px; */
    }

    >.cta {
      display: none;

      @media (max-width: 1024px) {
        display: flex;
        margin-bottom: 50px;
        justify-content: center;
      }
    }

    ul {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 24px;

      @media (max-width: 1024px) {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 16px;
      }

      li {
        margin: 0;
      }
    }
  }
}