/* =========================================================================
   AM-FORMATS — deux mises en page compactes pour la section « Nos formats »
   Réversible : tout se joue sur une seule classe posée sur <section>.
     .v11-formats--liste   → liste à filets sur deux colonnes  (proposition B)
     .v11-formats--cartes  → cartes horizontales sur trois colonnes (proposition A)
     aucune classe         → mise en page d'origine, inchangée
   ========================================================================= */

/* ---------- socle commun aux deux variantes ---------- */
.v11-formats--liste .v11-card,
.v11-formats--cartes .v11-card{
  display:grid;
  grid-template-columns:36px 1fr;
  column-gap:15px;
  align-items:start;
  text-align:left;
}
.v11-formats--liste .v11-card-ico,
.v11-formats--cartes .v11-card-ico{
  grid-column:1;
  grid-row:1 / span 3;
  width:34px;height:34px;
  object-fit:contain;
  margin:2px 0 0;
  opacity:.6;
}
.v11-formats--liste .v11-card h3,
.v11-formats--liste .v11-card p,
.v11-formats--liste .v11-card em,
.v11-formats--cartes .v11-card h3,
.v11-formats--cartes .v11-card p,
.v11-formats--cartes .v11-card em{
  grid-column:2;
}
.v11-formats--liste .v11-card h3,
.v11-formats--cartes .v11-card h3{
  font-size:.97rem;line-height:1.3;margin:0 0 5px;
}
.v11-formats--liste .v11-card p,
.v11-formats--cartes .v11-card p{
  font-size:.85rem;line-height:1.5;margin:0;color:#5f6b71;
}
.v11-formats--liste .v11-card em,
.v11-formats--cartes .v11-card em{
  display:inline-block;font-style:normal;margin-top:9px;
  background:#eaf6fc;color:#3096bf;
  font-size:.62rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  padding:5px 11px;border-radius:99px;
}

/* ---------- proposition A : cartes horizontales ---------- */
.v11-formats--cartes .v11-card-grid{
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.v11-formats--cartes .v11-card{
  border:1px solid #e6edf1;border-radius:18px;padding:19px;background:#fff;
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.v11-formats--cartes .v11-card:hover{
  border-color:#75C4E7;
  box-shadow:0 10px 26px rgba(117,196,231,.18);
  transform:translateY(-2px);
}

/* ---------- proposition B : liste à filets ---------- */
.v11-formats--liste .v11-card-grid{
  grid-template-columns:1fr 1fr;
  gap:0 44px;
}
.v11-formats--liste .v11-card{
  border:0;border-top:1px solid #e6edf1;border-radius:0;
  background:transparent;box-shadow:none;
  padding:19px 0;
  transition:padding-left .2s ease;
}
.v11-formats--liste .v11-card:hover{
  padding-left:8px;box-shadow:none;transform:none;background:transparent;
}
.v11-formats--liste .v11-card:hover h3{color:#3096bf}
.v11-formats--liste .v11-card h3{transition:color .2s ease}
.v11-formats--liste .v11-card h3::after{
  content:" \2192";color:#75C4E7;opacity:0;transition:opacity .2s ease;
}
.v11-formats--liste .v11-card:hover h3::after{opacity:1}

/* ---------- responsive ---------- */
@media (max-width:1100px){
  .v11-formats--cartes .v11-card-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:780px){
  .v11-formats--liste .v11-card-grid,
  .v11-formats--cartes .v11-card-grid{grid-template-columns:1fr;gap:12px 0}
  .v11-formats--cartes .v11-card{padding:16px}
}
