/* Liste des actus */
.actus-list {
  display: grid;
  gap: 3rem;
}

/* Carte actu */
.actu {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

/* Media / image */
.actu__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  object-fit: cover;
}
.actu__img--placeholder {
  background: #f3f3f3;
  min-height: 240px;
  border: 1px dashed #ccc;
  border-radius: 10px;
}

/* Texte */
.actu__date {
  display: inline-block;
  font-size: .95rem;
  color: #6b7280;
  margin-bottom: .5rem;
}
.actu__title {
  margin: 0 0 .5rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
}
.actu__excerpt p { margin: .5rem 0 0; }
.actu__edit { margin-top: .75rem; }

/* Alternance sur desktop */
@media (min-width: 900px) {
  .actu {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .actu--odd .actu__media { order: 1; }
  .actu--odd .actu__body  { order: 2; }
  .actu--even .actu__media { order: 2; }
  .actu--even .actu__body  { order: 1; }
}
