@use 'mixins/mixins' as *;
@use 'mixins/var' as *;
@use 'common/var' as *;

@include b(comment) {
  display: flex;
  flex-wrap: nowrap;
  font-size: var(--lt-font-size-base);
  line-height: 1.5715;

  &:not(:first-of-type),
  &-inner-comment {
    margin-top: 20px;
  }
  &-inner {
    flex: 1;
  }
  &-avatar {
    flex-shrink: 0;
    margin-right: 12px;
    cursor: pointer;

    > img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
    }
  }

  &-author {
    margin-right: 8px;
    color: rgb(78, 89, 105);
    font-size: 14px;
  }

  &-datetime {
    color: rgb(134, 144, 156);
    font-size: 12px;
  }

  &-content {
    color: rgb(29, 33, 41);
  }

  &-title-align-right {
    display: flex;
    justify-content: space-between;
  }

  &-actions {
    margin-top: 8px;
    color: rgb(78, 89, 105);
    font-size: 14px;

    > *:not(:last-child) {
      margin-right: 8px;
    }
  }

  &-actions-align-right {
    display: flex;
    justify-content: flex-end;
  }
}
