
/* =========================================================
   ADDITIONAL STYLES – POST CARD SIMPLE
   Image à gauche, texte à droite
   N'affecte PAS la home page
   ========================================================= */

/* Cartes de posts (listes) */
body:not(.home-template) article.post-card-simple {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  align-items: start;
}

/* Image dans la carte */
body:not(.home-template) article.post-card-simple img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  display: block;
  margin: 0;
}

/* Mobile : empilement */
@media (max-width: 768px) {
  body:not(.home-template) article.post-card-simple {
    grid-template-columns: 1fr;
  }

  body:not(.home-template) article.post-card-simple img {
    width: 100%;
    height: 180px;
  }
}
