.comment {
  margin: 2rem 0;
  font-family: Helvetica, Arial, sans-serif;
  background: #fff;
  border: 1px solid #dddfe2;
  border-radius: 0;
  overflow: hidden;
  border-radius: 10px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #4267b2;
  color: #fff;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}

.comment-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.comment-header__logo svg {
  display: block;
  width: 20px;
  height: 20px;
}

.comment-signup {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid #e9ebee;
}

.comment-signup__avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
}

.comment-signup__field {
  flex: 1;
  background: #f0f2f5;
  border-radius: 18px;
  padding: 8px 12px;
  font-size: 13px;
  color: #65676b;
  line-height: 1.4;
}

.comment-content {
  display: flex;
  flex-direction: column;
  padding: 8px 12px 12px;
}

.comment-block {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
}

.comment-block:first-child {
  margin-top: 4px;
}

.block-avatar {
  flex-shrink: 0;
}

.block-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.block-info {
  flex: 1;
  min-width: 0;
}

.block-info-comment {
  position: relative;
  display: inline-block;
  max-width: calc(100% - 8px);
  margin-bottom: 4px;
}

.block-info-comment__bubble {
  background: #f0f2f5;
  border-radius: 18px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.35;
  color: #050505;
  word-wrap: break-word;
  display: inline-block;
  max-width: 100%;
}

.block-info-comment__name {
  font-weight: 700;
  color: #050505;
  cursor: pointer;
}

.block-info-comment__name:hover {
  text-decoration: underline;
}

.block-info-comment__text {
  color: #050505;
}

.block-info-comment__text a {
  color: #1877f2;
  text-decoration: none;
}

.block-info-comment__text a:hover {
  text-decoration: underline;
}

.block-info-comment__image {
  display: block;
  max-width: 240px;
  width: 100%;
  margin-top: 8px;
  border-radius: 8px;
}

.block-info-comment__reactions {
  position: absolute;
  right: 8px;
  bottom: -10px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #fff;
  border-radius: 10px;
  padding: 1px 4px 1px 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  font-size: 11px;
  color: #65676b;
  line-height: 1;
}

.block-info-comment__reaction-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.block-info-comment__reaction-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.block-info-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 14px;
  padding-left: 12px;
  font-size: 12px;
  color: #65676b;
  font-weight: 600;
}

.block-info-line__date {
  color: #65676b;
  font-weight: 600;
}

.block-info-line__dot {
  color: #65676b;
  font-weight: 400;
}

.block-info-line__action {
  color: #65676b;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.block-info-line__action:hover {
  text-decoration: underline;
}

.comment-block-answer {
  margin-left: 40px;
}

.block-info-comment__svg {
  display: none;
}

.block-info-line__like {
  display: none;
}

.comment-line,
.comment-display,
.comments__more {
  display: none;
}
