#comment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#comment-form input,
#comment-form textarea {
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--bg0);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

#comment-form input:focus,
#comment-form textarea:focus {
  border-color: var(--muted);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

#comment-form textarea {
  resize: vertical;
  min-height: 80px;
}

#comment-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.comment-status {
  font-size: 13px;
  margin-top: 6px;
}

.comment-status-success {
  color: #4ade80;
}

.comment-status-error {
  color: #f87171;
}

#comment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.comment-item {
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

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

.comment-header strong {
  font-size: 14px;
}

.comment-date {
  font-size: 11.5px;
  color: var(--muted);
}

.comment-message {
  margin: 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.6;
}

.comment-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.comment-notice {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: 6px 0 0;
  padding: 8px 12px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
}
