.comment {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem;
}
.comment__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.comment__author {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-width: 0;
}
.comment__unread-indicator {
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #d8222a;
  width: 0.5rem;
  height: 0.5rem;
  text-indent: -9999px;
  font-size: 0;
}
.comment__unread-indicator:not(.hidden) {
  display: inline-block;
}
.comment__permalink {
  flex-shrink: 0;
}
.comment__permalink-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #959595;
}
.comment__permalink-link .icon__wrapper {
  width: 1rem;
  height: 1rem;
}
.comment__permalink-link .icon__wrapper svg {
  width: 100%;
  height: 100%;
}
.comment__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 576px) {
  .comment__header {
    align-items: center;
  }
  .comment__actions {
    justify-content: flex-start;
  }
}

/*# sourceMappingURL=comment.css.map */
