/* =========================================================
   CATEGORY PAGE — ESTILO ABC / FACTOR TELEVISIÓN
   ========================================================= */

/* Layout general */
.ft-cat-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.ft-cat-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 40px;
  padding: 0 20px;
}

/* Título de la categoría */
.ft-cat-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #111;
}

/* =========================================================
   LISTA PRINCIPAL DE NOTICIAS
   ========================================================= */

.ft-cat-item {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 22px;
}

.ft-cat-thumb img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

/* Información */
.ft-cat-info {
  flex: 1;
}

/* Fecha */
.ft-cat-date {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0070f3; /* azul celeste de Factor */
  margin-bottom: 4px;
}

/* Título */
.ft-cat-item-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin: 6px 0 10px;
}

.ft-cat-item-title a {
  color: #111;
  text-decoration: none;
}

.ft-cat-item-title a:hover {
  color: #0070f3;
}

/* Extracto */
.ft-cat-excerpt {
  font-size: 15px;
  line-height: 1.45;
  color: #333;
}

/* =========================================================
   BOTÓN "CARGAR MÁS"
   ========================================================= */

.ft-cat-loadmore {
  background: #0070f3;
  color: #fff;
  padding: 10px 24px;
  border: none;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 10px auto 30px;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.2s;
}

.ft-cat-loadmore:hover {
  background: #005ad1;
}

/* =========================================================
   SIDEBAR — "LO MÁS LEÍDO"
   ========================================================= */

.ft-cat-sidebar {
  position: sticky;
  top: 110px;
}

.ft-sidebar-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.ft-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-sidebar-list li {
  margin-bottom: 26px;
}

.ft-sidebar-list a {
  display: flex;
  text-decoration: none;
  color: #111;
  gap: 12px;
}

.ft-number {
  font-size: 22px;
  font-weight: 800;
  color: #0070f3; /* número azul */
}

.ft-cat-small {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: #0070f3;
}

.ft-sidebar-item-title {
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
  line-height: 1.3;
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 900px) {
  .ft-cat-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ft-cat-item {
    flex-direction: column;
  }

  .ft-cat-thumb img {
    width: 100%;
    height: auto;
  }

  .ft-cat-sidebar {
    margin-top: 40px;
  }
}
