.comments {
  padding-top: var(--space--base);
}

.comments-list,
.comments {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment-item {
  display: flex;
  flex-direction: column;
  gap: 0.5em;

  .actions {
    display: none;
    gap: 1rem;
  }

  &:hover {
    .actions {
      display: flex;
    }
  }

  .comment-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .commenter {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5em;
  }

  .avatar {
    flex-shrink: 1;
  }
}
