/*COMMENTS*/
.comments__title {
  border-bottom: 2px solid #e2e2e2;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 22px;
}

.comment-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eaeaea;
}



.comment-body {
  font-size: 22px;
}

.comment-text {
  color: #333333;
  margin: 8px 0;
  line-height: 1.3;
  font-size: 20px;
}

.reply-link {
  color: #0b57d0;
  cursor: pointer;
}

.comment-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  flex-wrap: wrap;
}

.comment-footer-link {
  color: inherit;
  font-size: 14px;
}

.comment-footer-link::after {
  content: "•";
  margin-left: 8px;
  color: #555555; 
  pointer-events: none;
}

.comment__ava{
    width: 45px;
    height: 45px;
    border-radius: 100%;
    object-fit: cover;
    overflow: hidden;
}

.comment-footer-link:last-child::after{
    display: none;
}

.comment-item.beforequestion{
    border-bottom: none;
}

.comment-item.question{
    padding-left: 50px;
}
/*COMMENTS*/
