/* 通用评论区块 — match / news 详情页 */
.comment-section {
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--ax-card, var(--nv-card, var(--gt-card-bg, #fff)));
  border: 1px solid var(--ax-line, var(--nv-line, #e2e8f0));
  border-radius: var(--ax-radius, var(--nv-radius, 10px));
  box-shadow: var(--ax-shadow, 0 2px 12px rgba(15, 23, 42, .06));
}
.comment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.comment-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ax-navy, var(--nv-text, #1e293b));
}
.comment-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  min-height: 22px;
  margin-left: 8px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(232, 93, 4, .12);
  color: var(--ax-amber, var(--nv-cyan, #e85d04));
  font-size: 12px;
  font-weight: 700;
}
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comment-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: start;
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8f4ec, #ebe4d8);
  color: #1a2744;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(26, 39, 68, .08);
}
.comment-body { min-width: 0; }
.comment-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 4px;
}
.comment-user {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}
.comment-time {
  font-size: 12px;
  color: #94a3b8;
}
.comment-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  word-break: break-word;
}
.comment-actions { margin-top: 6px; }
.comment-like {
  font-size: 12px;
  color: #94a3b8;
}
@media (max-width: 768px) {
  .comment-section { padding: 14px; }
  .comment-item { grid-template-columns: 36px minmax(0, 1fr); }
  .comment-avatar { width: 36px; height: 36px; font-size: 14px; }
}