/* ANIMA — Tarjetas para el shortcode [aa_tarjetas_categoria] */

/* GRID GENERAL */
.aa-grid-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

/* TARJETA */
.aa-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.aa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.aa-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* BLOQUE DE IMAGEN */
.aa-thumb {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

/* MINIATURA INFALIBLE */
.aa-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TÍTULO */
.aa-title {
  font-size: 20px;
  padding: 15px 20px 5px;
  margin: 0;
}

/* EXCERPT */
.aa-excerpt {
  padding: 0 20px 20px;
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* POR SI ALGÚN POST NO TUVIERA IMAGEN */
.aa-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #f1f1f1;
}
