/* Comments widget — whatthemindisfor.com */
.comment-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #1a1a24;
}

.comment-section h3 {
  font-size: 1.1rem;
  color: #e8e4dc;
  font-weight: normal;
  margin-bottom: 1.5rem;
}

/* Comment form */
.comment-form {
  margin-bottom: 2rem;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  background: #0e0e16;
  border: 1px solid #2a2a34;
  color: #c8c4bc;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: #5a5548;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #3a3a44;
}

.comment-form textarea {
  min-height: 100px;
  resize: vertical;
}

.comment-form button {
  background: #0e0e16;
  border: 1px solid #2a2a34;
  color: #c49a6c;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
}

.comment-form button:hover {
  border-color: #c49a6c;
  color: #e8e4dc;
}

.comment-form button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.comment-form .form-feedback {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.comment-form .form-feedback.success { color: #7caa8e; }
.comment-form .form-feedback.error { color: #c47a6c; }

/* Comment list */
.comment-list {
  list-style: none;
}

.comment-item {
  border-left: 2px solid #2a2a34;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  background: #0e0e16;
  border-radius: 0 3px 3px 0;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.comment-author {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c49a6c;
}

.comment-date {
  font-size: 0.75rem;
  color: #5a5548;
}

.comment-body {
  font-size: 0.95rem;
  color: #c8c4bc;
  line-height: 1.7;
}

.comment-empty {
  font-size: 0.9rem;
  color: #5a5548;
  font-style: italic;
}

@media (max-width: 600px) {
  .comment-meta {
    flex-direction: column;
    gap: 0.15rem;
  }
}
