.about-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-item__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 592px;
  width: 100%;
}

.about-item__title {
  margin: 0;
  font-weight: 400;
  font-size: 36px;
  line-height: 122%;
  color: #282828;
}

.about-item__desc {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #282828;
  max-width: 100%;
  padding-right: 0;
  letter-spacing: inherit;
  margin: 0;
}

.about-item__time {
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  color: #282828;
}

.about-item__image {
  aspect-ratio: 37/45;
  flex-shrink: 0;
  object-fit: cover;
  max-width: 592px;
}

@media (max-width: 1024px) {
  .about-item__row {
    flex-direction: column;
    gap: 32px;
  }

  .about-item__content {
    max-width: 100%;
  }

  .about-item__image {
    order: 1;
    max-width: 100%;
  }
}

@media (max-width: 861px) {
  .about-item__desc {
    font-size: 18px;
  }

  .about-item__time {
    font-size: 16px;
  }
}