/* =============================================================================
   Vida en Aspaldiko — Grid de posts destacados sobre fondo rosa palo.
   Reutiliza .card-noticia de components/cards.css.
   ========================================================================== */

.vida-posts {
  background: var(--color-pink-soft);
  padding-block: var(--section-pad-y);
}

.vida-posts__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .vida-posts__head {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: var(--space-5);
  }
}

.vida-posts__titulo {
  margin: 0 0 var(--space-2);
}

.vida-posts__subtitulo {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-p-m);
  line-height: var(--lh-p-m);
  max-width: 60ch;
}

.vida-posts__cta {
  flex-shrink: 0;
}

.vida-posts__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 600px) {
  .vida-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vida-posts__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Quitar enlace decorado en títulos */
.vida-posts__grid .card-noticia__titulo a {
  color: inherit;
  text-decoration: none;
}
.vida-posts__grid .card-noticia__titulo a:hover {
  color: var(--color-burgundy);
}
