/* =============================
   SECCIÓN DE COMENTARIOS — FACTOR
   ============================= */

.ft-comments-wrapper {
  width: 100%;
  background: #fff;
  padding: 50px 0 80px;
  border-top: 1px solid #e8e8e8;
}

.ft-comments-inner {
  max-width: 900px;        /* <= tu requerimiento */
  margin: 0 auto;
  padding: 0 20px;
}

/* TÍTULO */
.ft-comments-inner h2,
.ft-comments-inner h3#comments {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

.ft-comments-inner h2:after,
.ft-comments-inner h3#comments:after {
  content: "";
  width: 55px;       /* <= subrayado corto, estilo ABC */
  height: 3px;
  background: #0070f3;
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* TEXTO LEGAL */
.ft-comment-legal {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

/* FORMULARIO */
.comment-form p {
  margin-bottom: 22px;
}

.comment-form label {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.comment-form textarea {
  height: 150px;
  resize: vertical;
}

/* BOTÓN */
.comment-form input[type="submit"] {
  background: #0070f3;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
  width: 260px;
}

.comment-form input[type="submit"]:hover {
  background: #005ad1;
}

/* =============================
   LISTA DE COMENTARIOS
   ============================= */

#ft-comment-list-wrapper {
  margin-top: 50px;
}

/* ITEM */
.ft-comment-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 22px;
  margin-bottom: 22px;
}

/* AVATAR CON INICIAL */
.ft-comment-avatar {
  width: 52px;
  height: 52px;
  background: #0070f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-comment-avatar span {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}

/* TEXTO */
.ft-comment-body {
  flex: 1;
}

.ft-comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-comment-author {
  font-weight: 700;
  font-size: 15px;
}

.ft-comment-date {
  font-size: 12px;
  color: #0070f3;
  text-transform: uppercase;
}

.ft-comment-text {
  font-size: 15px;
  margin-top: 8px;
}

/* Botón Cargar Más */
.ft-load-more-comments {
  margin: 30px auto 0;
  display: block;
  padding: 12px 20px;
  background: #0070f3;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.ft-load-more-comments:hover {
  background: #005ad1;
}

.ft-comments-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #111;
}

.ft-comments-underline{
    width: 60px;
    height: 4px;
    background:#0094ff;
    margin-top:6px;
    margin-bottom:25px;
    border-radius:3px;
}
