.comment-list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--rh--size--general--margin--bottom) / 2);
  list-style: none;
  margin: 0 0 var(--rh--size--general--margin--bottom);
}

.comment {
  border-bottom: 1px solid var(--rh--color--border--input);
  margin-bottom: 3em;
  padding-bottom: 3em;
}
.comment .reply {
  text-align: right;
}

.children {
  list-style: none;
}

.comments-area {
  margin: 3em auto 0;
  max-width: calc(var(--rh--size--content) - 80px);
  padding: 0 2rem;
}
@media only screen and (min-width: 840px) {
  .comments-area {
    padding: 0;
  }
}

.comments-title {
  margin-top: 0.5em;
}

.comment-meta {
  position: relative;
}

.comment-metadata {
  line-height: 1;
}
.comment-metadata > a {
  font-size: 1.2rem;
  font-weight: normal;
  text-decoration: none;
}
.comment-metadata .comment-controls {
  float: right;
  font-size: 1rem;
  text-transform: uppercase;
}

.comment-metadata .reply {
  display: inline-block;
}

.comment-author a {
  color: var(--rh--color--content--text);
  font-weight: bold;
  text-decoration: none;
}

.comment-content a {
  word-wrap: break-word;
}

.comment-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3em;
}
.comment-navigation .nav-links > div {
  flex: 0 1 auto;
}

.avatars-shown .comment .avatar {
  border-radius: 50%;
  height: 50px;
  left: -70px;
  position: absolute;
  top: -2px;
  width: 50px;
}
@media only screen and (min-width: 783px) {
  .avatars-shown .comment .avatar {
    height: 70px;
    left: -90px;
    top: -8px;
    width: 70px;
  }
}
.avatars-shown .comment-meta,
.avatars-shown .comment-content {
  margin-left: 70px;
}
@media only screen and (min-width: 783px) {
  .avatars-shown .comment-meta,
  .avatars-shown .comment-content {
    margin-left: 90px;
  }
}
