.comments {
    margin-bottom: 80px;
  }
  .comments__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 50px;
  }

  .comments__item_hidden {
    display: none;
  }
  .comments__item-author-ava img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  .comments__item-author {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .comments__item-author-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #414042;
  }
  .comments__item-author-name-wrap {
    width: 200px;
    flex: none;
    margin-left: 20px;
  }
  .comments__item-text {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
  }
  .comments .btn {
    margin-right: 40px;
  }
  @media (max-width: 479px) {
    .comments__item {
      flex-direction: column;
    }
    .comments__item-author {
      margin-bottom: 10px;
    }
  }