#ai-solution {
  .item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;

    .side-wrapper {
      flex: 1 1 300px;

      &:has(img) {
        flex: 1 1 650px;
      }

      display: flex;
      justify-content: center;
      align-items: center;
    }

    img {
      width: 100%;
      border-radius: 36px;
    }

    .content {
      max-width: 400px;

      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 19px;
    }
  }
}

@media screen and (max-width: 600px) {
  #ai-solution {
    .item {
      gap: 32px;

      .content {
        max-width: 350px;
      }
    }
  }
}
