/* ============================================
   SINGLE – FACTOR TELEVISIÓN
============================================ */

.ft-single-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 16px;
  box-sizing: border-box;
  background: #fff;
}

.ft-single-container {
  display: grid;
  grid-template-columns: 2fr 0.9fr;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

/* META */
.ft-single-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: #6d6d6d;
}

.ft-single-cat a {
  color: #0070f3;
  font-weight: 700;
  text-decoration: none;
}

.ft-single-date {
  color: #111;
  font-weight: 700;
}

/* TITULO */
.ft-single-title {
  font-size: 34px;
  line-height: 1.2;
  margin: 10px 0 20px;
  font-weight: 800;
}

/* IMAGEN DESTACADA */
.ft-single-thumb img {
  width: 100%;
  border-radius: 6px;
  margin: 10px 0 10px;
}

/* SUBTÍTULO */
.ft-single-excerpt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #444;
  margin: 16px 0 18px;
}

/* AUTOR */
.ft-single-author {
  font-size: 14px;
  color: #111;
  margin-bottom: 20px;
}

/* CONTENIDO */
.ft-single-content {
  font-size: 19px;
  line-height: 1.65;
  color: #222;
}

/* SIDEBAR */
.ft-single-sidebar {
  border-left: 1px solid #ddd;
  padding-left: 24px;
}

.ft-sidebar-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 800;
}

/* LISTA */
.ft-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-sidebar-list li {
  margin-bottom: 20px;
}

.ft-sidebar-list a {
  display: flex;
  text-decoration: none;
  color: #111;
}

.ft-number {
  font-size: 22px;
  font-weight: 900;
  color: #0070f3; /* amarillo ABC */
  width: 40px;
}

.ft-cat-small {
  font-size: 12px;
  text-transform: uppercase;
  color: #555;
}

.ft-sidebar-item-title {
  margin: 2px 0 0;
  line-height: 1.3;
  font-size: 14px;
  color: #111;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ft-single-container {
    grid-template-columns: 1fr;
  }

  .ft-single-sidebar {
    border: none;
    padding: 0;
    margin-top: 40px;
  }
}

/* Estilo del crédito del autor */
.ft-credito {
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 6px;
  color: #111;
}

/* Línea azul separadora */
.ft-author-divider {
  width: 100%;
  height: 4px;
  background: #0070f3;
  margin: 14px 0 24px;
  border-radius: 2px;
}
