/* ============================================================
   Bandeau « Participer » flottant — gabarit Événement
   ============================================================ */

:root { --ev-aside-w: 340px; --ev-aside-gap: 72px; }

/* ────────────────────────────────────────────────────────────
   OPTION B 
   ──────────────────────────────────────────────────────────── */

@media (min-width: 901px) {
  .pf-page .ev-body__grid { display: block; }
  .pf-page .ev-body__grid::after { content: ""; display: block; clear: both; }
  .pf-page .ev-aside {
    position: static; float: right;
    width: var(--ev-aside-w); margin: 0 0 44px var(--ev-aside-gap);
  }
  /* Le gabarit enveloppe {{post_content}} dans un .prose : en enfant direct,
     ces sélecteurs ne visaient plus rien et le corps courait sur la pleine
     largeur, à côté du flottant. */
  .pf-page :is(.ev-content, .ev-content .prose)
    > :is(p, ul, ol, h2, h3, blockquote) { max-width: 74ch; }
}
@media (max-width: 900px) {
  .pf-page .ev-aside { float: none; width: auto; margin: 0 0 40px; }
}


/* la FAQ imbriquée ne doit pas rajouter ses marges de section */
.pf-page .ev-content .pf-faq { padding-left: 0; padding-right: 0; }
/* le sommaire Rank Math reste lisible même en colonne étroite */
.pf-page .pf-faq__toc { max-width: 100%; }
