/* Modern Comments 2026 */
.otv-comment {
  background: #fff;
  border: 1px solid #e6e5e3;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  transition: box-shadow .2s ease;
}
.otv-comment:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.otv-comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.otv-comment-author {
  font-weight: 600;
}
.otv-comment-date {
  color: #7d7a75;
  font-size: 13px;
}
.otv-comment-content {
  font-size: 15px;
  line-height: 1.6;
}
.otv-comment-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.otv-vote-btn {
  background: none;
  border: 1px solid #e6e5e3;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.otv-vote-btn:hover {
  background: #f9f8f7;
}
.otv-vote-btn.active {
  background: #2783de;
  color: #fff;
  border-color: #2783de;
}
