/* ============================
   TE PUEDE INTERESAR — FACTOR
   ============================ */

.ft-related-full {
  width: 100%;
  background: #e5f1ff; /* celeste suave */
  padding: 40px 0;
  margin-top: 60px;
}

.ft-related-inner {
  width: 100%;
  max-width: 1200px; /* igual que tu layout principal */
  margin: 0 auto;
  padding: 0 20px;  /* consistente con tu header/single */
  box-sizing: border-box;
}


.ft-related-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.ft-related-title strong {
  color: #0070f3;
}

/* GRID como ABC: 5 columnas */
.ft-related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ft-related-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

.ft-related-cat {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: #0070f3;
}

.ft-related-title-item {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.ft-related-title-item a {
  color: #111;
  text-decoration: none;
}

.ft-related-title-item a:hover {
  color: #0070f3;
}

/* Mobile ABC Style */
@media(max-width: 900px) {
  .ft-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
