/* ─── COMMUNITY / COMMENTS ─── */
.comment-card {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.comment-card:last-child { border-bottom: none; }

/* Username row — mirrors fs-card-url-row */
.comment-user-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.comment-platform-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.comment-user {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Title / quote — mirrors fs-card-title */
.comment-text {
  display: block;
  font-size: 15px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 5px;
}

/* Description / original — mirrors fs-card-desc */
.comment-original {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Source link — mirrors fs-card-display-url style */
.comment-link {
  font-size: 11px;
  color: #4caf78;
  text-decoration: none;
  margin-top: 5px;
  display: inline-block;
  transition: opacity 0.15s;
}
.comment-link:active { opacity: 0.7; }
