.recommendations {
  background: #f8f8f8;
}

.recommendations__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.recommendations__head {
  max-width: 704px;
}

.recommendations__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 125%;
  color: #282828;
  margin: -13px 0 0 0;
  letter-spacing: inherit;
}

.recommendations__content {
  max-width: 480px;
  width: 100%;
}

.recommendations__item {
  padding: 20px 0;
  border-top: 1px solid rgba(40, 40, 40, 0.5);
}

.recommendations__item:last-child {
  border-bottom: 1px solid rgba(40, 40, 40, 0.5);
}

.recommendations__item-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #282828;
}

.recommendations__desc {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #282828;
  margin-top: 20px;
}

.recommendations__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #282828;
  margin-bottom: 8px;
}

.recommendations__item-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #000;
}

@media (max-width: 1024px) {

  .recommendations__content,
  .recommendations__head {
    max-width: 100%;
  }

  .recommendations__row {
    align-items: flex-start;
  }
}

@media (max-width: 861px) {
  .recommendations__title {
    font-size: 30px;
    line-height: 1.4em;
  }

  .recommendations__row {
    flex-direction: column;
  }

  .recommendations__desc {
    font-size: 18px;
  }
}