/*
Theme Name: Blocksy Child
Template: blocksy
Version: 1.0
*/

.ultima-nova h2 {
	font-size:20px;
	margin-top: 10px;
}


/* =========================
   GRID PRINCIPAL
========================= */
.categoria-entradas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* =========================
   TARJETA (CADA ENTRADA)
========================= */
.entrada-categoria {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* hover */
.entrada-categoria:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* =========================
   INTERIOR
========================= */
.entrada-categoria-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* =========================
   IMAGEN
========================= */
.imagen-destacada {
  width: 100%;
  background: #f5f5f5;
  padding: 10px;
  box-sizing: border-box;
}

.imagen-destacada img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;   /* clave: NO recorta, no fuerza zoom */
  display: block;
  margin: 0 auto;
}

/* =========================
   CONTENIDO
========================= */
.contenido-entrada {
  padding: 15px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* título */
.contenido-entrada h2 {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
}

.contenido-entrada h2 a {
  text-decoration: none;
  color: inherit;
}

/* texto */
.contenido-completo {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

/* párrafos */
.contenido-completo p {
  margin-bottom: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .categoria-entradas-grid {
    grid-template-columns: 1fr;
  }
}


.ct-footer-copyright {
	display: none;
}