/* Comments Section - Velvet Pine Skin */
.comments-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.comments-section h2 {
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.comment {
  display: flex;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.comment-body {
  flex: 1;
}
.comment-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.comment-date {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-left: 8px;
}
.comment-text {
  margin-top: 4px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.comment-likes {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 6px;
}
.comment-likes span {
  color: var(--green);
  margin-right: 4px;
}
@media (max-width: 600px) {
  .comment { gap: 8px; }
  .comment-avatar { width: 32px; height: 32px; font-size: 0.75rem; }
}
