/* Zone globale */
.comments-area {
  margin-top: 3rem;
}

/* Titre */
.comments-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Liste des commentaires */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Un commentaire */
.comment {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Auteur + date */
.comment-meta {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.comment-author {
  font-weight: 600;
  color: #111827;
}

/* Contenu */
.comment-content {
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* Répondre */
.reply a {
  font-size: 0.85rem;
  color: #2563eb;
  text-decoration: none;
}

.reply a:hover {
  text-decoration: underline;
}

/* Formulaire */
.comment-form {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* Champs */
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

/* Bouton */
.comment-form input[type="submit"] {
  background: #111827;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.comment-form input[type="submit"]:hover {
  background: #374151;
}