/* =========================
   COMENTARIOS – RedExpertos
   ========================= */

.comments-area {
  margin-top: 40px;
}

/* Título */
.comments-title,
.comment-reply-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
}

/* Texto informativo */
.comment-notes {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

/* Formulario */
.comment-form {
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

/* Campos */
.comment-form p {
  margin-bottom: 14px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Focus */
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #2ecc71;
  box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.15);
}

/* Checkbox */
.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #444;
}

.comment-form-cookies-consent input {
  margin-top: 3px;
}

/* Botón */
.form-submit {
