.comments-section h3 {
  font-size: 16px;
  margin-bottom: 16px;
}

.comment {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.comment-author {
  font-weight: 600;
  font-size: 13px;
}

.comment-date {
  font-size: 12px;
  color: var(--text3);
}

.comment-body {
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.comment-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment-form input,
.comment-form textarea {
  resize: vertical;
  min-height: 40px;
}

.comment-form textarea {
  min-height: 80px;
}

.comment-form button {
  align-self: flex-end;
  padding: 8px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.comment-form button:hover {
  background: var(--primary-hover);
}
