
    /* ══════════════════════════════════════════
       VARIABLES & RESET
    ══════════════════════════════════════════ */
    :root {
      --ink:       #0a0a0a;
      --muted:     #888;
      --muted-lt:  #bbb;
      --line:      #e8e8e8;
      --line-dk:   #222;
      --bg:        #fff;
      --soft:      #f8f8f8;
      --accent:    #0a0a0a;
      --serif:     'Cormorant Garamond', 'Playfair Display', Georgia, serif;
      --sans:      'Montserrat', system-ui, Arial, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }

    body {
      color: var(--ink);
      background: var(--bg);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Progress bar ── */
    .progress-top {
      position: fixed;
      left: 0; top: 0;
      height: 2px;
      width: 0;
      background: var(--ink);
      z-index: 9999;
      transition: width .12s linear;
    }

    /* ══════════════════════════════════════════
       LAYOUT DEUX COLONNES
    ══════════════════════════════════════════ */
    .vg-wrap {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .vg-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 60px;
      align-items: start;
    }

    .vg-main {
      min-width: 0;
    }

    /* ── Sidebar ── */
    .vg-sidebar {
      position: sticky;
      top: 80px;
    }

    .sidebar-section-title {
      font-family: var(--sans);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink);
      padding-bottom: 10px;
      border-bottom: 2px solid var(--ink);
      margin-bottom: 0;
    }

    .sidebar-divider {
      border: none;
      border-top: 1px solid var(--line);
      margin: 0;
    }

    .sidebar-card {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
      text-decoration: none;
      color: var(--ink);
      transition: opacity .2s;
    }
    .sidebar-card:last-child { border-bottom: none; }
    .sidebar-card:hover { opacity: .72; }

    .sidebar-card-img {
      width: 80px;
      height: 60px;
      object-fit: cover;
      display: block;
      flex-shrink: 0;
    }

    .sidebar-card-rubrique {
      font-family: var(--sans);
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-bottom: 5px;
    }

    .sidebar-card-titre {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.3;
      color: var(--ink);
    }

    /* ══════════════════════════════════════════
       HEADER ARTICLE
    ══════════════════════════════════════════ */
    .article-header-wrap {
      padding: 40px 0 28px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 28px;
    }

    .article-kicker {
      font-family: var(--sans);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      text-align: center;
      margin-bottom: 20px;
    }
    .article-kicker a {
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }
    .article-kicker a:hover { color: var(--ink); }
    .article-kicker .sep { margin: 0 8px; color: var(--muted-lt); }

    h1.article-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400;
      line-height: 1.08;
      color: var(--ink);
      text-align: center;
      margin: 0 auto 20px;
      max-width: 820px;
      letter-spacing: -0.01em;
    }

    .article-byline {
      font-family: var(--sans);
      font-size: 0.7rem;
      font-weight: 400;
      color: var(--muted);
      text-align: center;
      letter-spacing: 0.05em;
      margin-bottom: 20px;
    }
    .article-byline .byline-sep { margin: 0 10px; color: var(--line); }

    /* ── Share bar ── */
    .share-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin: 16px 0;
    }

    .share-bar a {
      width: 34px;
      height: 34px;
      display: inline-grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--ink);
      text-decoration: none;
      font-size: 0.8rem;
      transition: background .18s, border-color .18s, transform .15s;
    }
    .share-bar a:hover {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
      transform: translateY(-1px);
    }

    /* ── Reactions sticky ── */
    .reactions-sticky {
      position: fixed;
      top: 50%;
      left: 18px;
      transform: translateY(-50%);
      z-index: 100;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 40px;
      padding: 10px 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
    }

    .btn-vote {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      background: none;
      border: 0;
      cursor: pointer;
      padding: 6px 10px;
      color: var(--ink);
      font-family: var(--sans);
      font-size: 0.7rem;
    }
    .btn-vote .fa-heart { font-size: 1.1rem; transition: transform .18s, color .18s; }
    .btn-vote:hover .fa-heart { transform: scale(1.2); color: #c0392b; }
    .btn-vote.active .fa-heart { color: #c0392b; }

    @media (max-width: 991.98px) {
      .reactions-sticky {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        margin: 12px auto;
        width: fit-content;
        flex-direction: row;
        border-radius: 40px;
      }
      .btn-vote { flex-direction: row; }
    }

    /* ══════════════════════════════════════════
       HERO IMAGE
    ══════════════════════════════════════════ */
    .hero-figure {
      margin: 0 0 8px;
      overflow: hidden;
    }
    .hero-figure img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
    .hero-caption {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      text-align: center;
      padding: 6px 0 20px;
    }

    /* ══════════════════════════════════════════
       STANDFIRST / ACCROCHE
    ══════════════════════════════════════════ */
    .standfirst {
      font-family: var(--serif);
      font-size: clamp(1.1rem, 1.8vw, 1.35rem);
      font-weight: 400;
      line-height: 1.55;
      color: var(--ink);
      border-left: 2px solid var(--ink);
      padding-left: 18px;
      margin: 24px 0 30px;
    }

    /* ══════════════════════════════════════════
       CORPS ARTICLE
    ══════════════════════════════════════════ */
    .article-body {
      font-family: 'Georgia', var(--serif);
      font-size: 1.02rem;
      line-height: 1.82;
      color: #1a1a1a;
    }

    .article-body p { margin: 0 0 1.2rem; }

    .article-body figure {
      margin: 2rem 0;
      text-align: center;
    }
    .article-body figure img {
      width: 100%;
      height: auto;
    }
    .article-body figcaption {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 8px;
    }

    .dropcap:first-letter {
      float: left;
      font-family: var(--serif);
      font-size: 4rem;
      line-height: 0.82;
      padding: 0.18rem 0.35rem 0 0;
      color: var(--ink);
      font-weight: 400;
    }

    /* ── Maillage interne ── */
    .maillage-interne {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 18px 0;
      margin: 28px 0;
    }
    .maillage-label {
      font-family: var(--sans);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 12px;
    }
    .maillage-inner {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .maillage-img {
      width: 80px;
      height: 60px;
      flex-shrink: 0;
      overflow: hidden;
    }
    .maillage-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .3s;
    }
    .maillage-img:hover img { transform: scale(1.05); }
    .maillage-content h3 {
      margin: 0;
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.3;
    }
    .maillage-content h3 a {
      text-decoration: none;
      color: var(--ink);
      transition: opacity .2s;
    }
    .maillage-content h3 a:hover { opacity: .65; }

    /* ══════════════════════════════════════════
       GALERIE PHOTOS
    ══════════════════════════════════════════ */
    .galerie-titre {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      text-align: center;
      margin-bottom: 24px;
      letter-spacing: 0.03em;
    }

    /* ══════════════════════════════════════════
       SONDAGE
    ══════════════════════════════════════════ */
    .sondage {
      --sondage-bg: #f9f5f2;
      --sondage-border: #e3ddd6;
      --sondage-ink: #1b1b1b;
      --sondage-accent: #d88999;
      --sondage-accent-soft: #f3c6d3;
      background: var(--sondage-bg);
      border-radius: 16px;
      padding: 28px;
      position: relative;
      margin: 32px 0;
    }
    .sondage::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(248,220,230,.6), transparent 60%);
      opacity: .7;
      pointer-events: none;
      border-radius: 16px;
    }
    .sondage h2 {
      font-family: var(--sans);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .75rem;
      font-weight: 600;
      color: var(--sondage-ink);
      margin-bottom: 1.25rem;
    }
    #question {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--sondage-ink);
      margin-bottom: 1rem;
    }
    #reponses { gap: .5rem !important; }
    .sondage button {
      position: relative;
      padding: .75rem 1rem;
      border-radius: 999px;
      border: 1px solid var(--sondage-border);
      background: #fff;
      font-size: .75rem;
      text-align: left;
      color: var(--sondage-ink);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 500;
      overflow: hidden;
      transition: background-color .18s, border-color .18s, transform .12s, box-shadow .18s;
    }
    .sondage button:hover {
      border-color: var(--sondage-accent);
      box-shadow: 0 6px 24px rgba(0,0,0,.06);
      transform: translateY(-1px);
    }
    .sondage .bar {
      background: linear-gradient(90deg, var(--sondage-accent-soft), var(--sondage-accent));
      height: 18px;
      border-radius: 999px;
      color: #fff;
      font-size: .7rem;
      padding: 0 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    #resultats {
      border-top: 1px solid var(--sondage-border);
      padding-top: 1rem;
      font-size: .78rem;
      color: #7a7470;
      margin-top: 1rem;
    }

    /* ══════════════════════════════════════════
       BLOC COMMUNAUTÉ (FORUM)
    ══════════════════════════════════════════ */
    .community-dzirielle {
      --bg: #0b0b0b;
      --fg: #e9e9e9;
      --muted: #9a9a9a;
      --line-c: rgba(255,255,255,.12);
      background: linear-gradient(180deg, #0b0b0b 0%, #111 100%);
      color: var(--fg);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      padding: clamp(20px,3vw,32px);
      margin: 32px 0;
      box-shadow: 0 16px 40px rgba(0,0,0,.25);
      font-family: var(--serif);
    }
    .cvg-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid var(--line-c);
      padding-bottom: 14px;
      margin-bottom: 12px;
    }
    .cvg-kicker {
      letter-spacing: .18em;
      font-size: .7rem;
      text-transform: uppercase;
      color: var(--muted);
      font-family: var(--sans);
    }
    .cvg-all {
      font-family: var(--sans);
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .08em;
      color: var(--fg);
      text-decoration: none;
      border: 1px solid var(--line-c);
      padding: 7px 14px;
      border-radius: 999px;
      transition: background .2s;
    }
    .cvg-all:hover { background: rgba(255,255,255,.1); }
    .cvg-list { list-style: none; margin: 0; padding: 0; }
    .cvg-list li { border-top: 1px solid var(--line-c); padding: 14px 0 12px; }
    .cvg-list li:first-child { border-top: none; }
    .cvg-list a {
      color: var(--fg);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.02rem;
      transition: opacity .2s;
    }
    .cvg-list a:hover { opacity: .75; }
    .cvg-meta {
      margin: .35rem 0 0;
      font-family: var(--sans);
      font-size: .72rem;
      color: var(--muted);
    }

    /* ══════════════════════════════════════════
       COMMENTAIRES
    ══════════════════════════════════════════ */
    .comments-section {
      border-top: 2px solid var(--ink);
      padding-top: 28px;
      margin-top: 32px;
    }

    .comments-heading {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 400;
      margin-bottom: 24px;
      letter-spacing: 0.02em;
    }

    .comment-item {
      display: flex;
      gap: 14px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }
    .comment-item:last-child { border-bottom: none; }

    .commentorImg {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .comment-author {
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 2px;
    }

    .comment-date {
      font-family: var(--sans);
      font-size: 0.65rem;
      color: var(--muted);
      margin-left: 10px;
    }

    .comment-text {
      font-family: 'Georgia', serif;
      font-size: 0.92rem;
      line-height: 1.65;
      color: #2a2a2a;
      margin: 0;
    }

    .comments-empty {
      text-align: center;
      padding: 40px 20px;
      border: 1px solid var(--line);
      background: var(--soft);
    }
    .comments-empty p:first-child {
      font-family: var(--serif);
      font-size: 1.2rem;
      margin-bottom: 6px;
    }
    .comments-empty p:last-child {
      font-family: var(--sans);
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* Formulaire commentaire */
    .comment-form-section { margin-top: 32px; }
    .comment-form-section h4 {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 16px;
    }

    .join-cta {
      text-align: center;
      padding: 40px 24px;
      border: 1px solid var(--line);
      margin-top: 24px;
    }
    .join-cta p:first-child {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 8px;
    }
    .join-cta p:nth-child(2) {
      font-family: var(--sans);
      font-size: 0.78rem;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .btn-dzirielle {
      display: inline-block;
      background: var(--ink);
      color: #fff;
      font-family: var(--sans);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 12px 28px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .btn-dzirielle:hover {
      background: #333;
      color: #fff;
      transform: translateY(-1px);
    }
    .join-cta-login {
      font-family: var(--sans);
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: 14px;
    }
    .join-cta-login a { color: var(--ink); }

    /* ══════════════════════════════════════════
       SECTION VOIR AUSSI + RECOS (FULL WIDTH)
    ══════════════════════════════════════════ */
    .fullwidth-section {
      border-top: 2px solid var(--ink);
      margin-top: 60px;
      padding: 48px 0 60px;
    }

    .section-label-premium {
      font-family: var(--sans);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .section-label-premium::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--line);
    }

    /* Grille articles voir aussi */
    .voir-aussi-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .voir-aussi-card {
      text-decoration: none;
      color: var(--ink);
      display: block;
    }
    .voir-aussi-card:hover .voir-aussi-img img { transform: scale(1.04); }

    .voir-aussi-img {
      overflow: hidden;
      aspect-ratio: 3/2;
      margin-bottom: 12px;
    }
    .voir-aussi-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }

    .voir-aussi-titre {
      font-family: var(--serif);
      font-size: 1.02rem;
      font-weight: 400;
      line-height: 1.35;
      color: var(--ink);
    }

    /* Grille recommandations (portrait) */
    .reco-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .reco-card {
      text-decoration: none;
      color: var(--ink);
      display: block;
    }
    .reco-card:hover .reco-thumb img { transform: scale(1.04); }

    .reco-thumb {
      overflow: hidden;
      aspect-ratio: 2/3;
      margin-bottom: 12px;
    }
    .reco-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }

    .reco-titre {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ══════════════════════════════════════════
       TOAST
    ══════════════════════════════════════════ */
    #toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; }
    .toast-vg {
      background: var(--ink);
      color: #fff;
      font-family: var(--sans);
      font-size: 0.78rem;
      padding: 10px 16px;
      border-radius: 4px;
      box-shadow: 0 4px 14px rgba(0,0,0,.2);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .22s, transform .22s;
    }
    .toast-vg.show { opacity: 1; transform: translateY(0); }
.comments-empty { border: 1px solid #e0e0e0; padding: 28px; margin-bottom: 24px; }
.comments-empty .ce-title { font-family:'Playfair Display',serif; font-size:1.15rem; font-weight:700; color:#0f0f0f; margin-bottom:6px; }
.comments-empty .ce-sub { font-family:Georgia,serif; font-size:0.9rem; font-style:italic; color:#888; margin-bottom:22px; }
.ce-prompt-label { font-family:'Montserrat',sans-serif; font-size:0.55rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:#bbb; margin-bottom:8px; }
.ce-prompt-btn { display:block; width:100%; text-align:left; background:#f8f7f5; border:1px solid #e0e0e0; padding:12px 16px; font-family:Georgia,serif; font-size:0.88rem; font-style:italic; color:#666; cursor:pointer; margin-bottom:8px; transition:all 0.18s; }
.ce-prompt-btn:hover { background:#fff; border-color:#0f0f0f; color:#0f0f0f; }
.ce-textarea-wrap { display:none; }
.ce-textarea-wrap.visible { display:block; }
.ce-footer { display:flex; align-items:center; justify-content:space-between; margin-top:10px; flex-wrap:wrap; gap:8px; }
.ce-char { font-family:'Montserrat',sans-serif; font-size:0.65rem; color:#bbb; }
.ce-cancel { font-family:'Montserrat',sans-serif; font-size:0.65rem; color:#bbb; background:none; border:none; cursor:pointer; text-decoration:underline; padding:0; }
.ce-cancel:hover { color:#666; }
    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .vg-layout {
        grid-template-columns: 1fr 280px;
        gap: 40px;
      }
    }

    @media (max-width: 900px) {
      .vg-layout {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .vg-sidebar {
        position: static;
        border-top: 2px solid var(--ink);
        margin-top: 40px;
        padding-top: 28px;
      }
      .voir-aussi-grid { grid-template-columns: repeat(2, 1fr); }
      .reco-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
      .vg-wrap { padding: 0 16px; }
      h1.article-title { font-size: 1.7rem; }
      .voir-aussi-grid { grid-template-columns: 1fr; }
      .reco-grid { grid-template-columns: 1fr; }
      .sidebar-card { grid-template-columns: 70px 1fr; }
    }

/* 1. Forcer Georgia/Cormorant sur le corps article */
#article-text,
.article-body {
  font-family: 'Georgia', 'Cormorant Garamond', serif !important;
  font-size: 1rem !important;
}

/* 2. Écraser le !important de main.css sur les paragraphes */
#article-text p,
#article-text li {
  font-family: 'Georgia', serif !important;
  font-size: 1.05rem !important;
  line-height: 1.82 !important;
  color: #1a1a1a !important;
}

/* 3. Forcer le titre H1 */
h1.article-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  text-align: center !important;
  line-height: 1.08 !important;
}

/* 4. Montserrat sur le body (bat Roboto de main.css) */
body {
  font-family: 'Montserrat', system-ui, Arial, sans-serif !important;
}

/* 5. Rétablir Georgia sur le standfirst */
.standfirst {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem) !important;
}/* Header + Hero pleine largeur */
.vg-main-full {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.vg-main-full .hero-figure {
  max-width: 100%;
}

/* Le grid ne démarre qu'après la photo */
.vg-layout {
  margin-top: 32px;
}

.dz-cta-wrap {
  border-top: 2px solid #0f0f0f;
  padding-top: 2rem;
  margin-top: 2rem;
}

.dz-cta-main {
  background: #0f0f0f;
  padding: 36px 32px;
  margin-bottom: 1px;
}

.dz-cta-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8892A;
  margin-bottom: 12px;
  display: block;
}

.dz-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 10px;
}

.dz-cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 480px;
}

.dz-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.dz-benefit {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
}

.dz-cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.dz-btn-primary {
  display: inline-block;
  background: #B8892A;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.dz-btn-primary:hover { opacity: 0.82; color: #fff; }

.dz-login-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}
.dz-login-link a {
  color: rgba(255,255,255,0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dz-login-link a:hover { color: #fff; }

/* ── Bloc partage (second niveau) ── */
.dz-cta-share {
  background: #f8f7f5;
  border: 1px solid #e0e0e0;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.dz-share-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #666;
}

.dz-share-btns {
  display: flex;
  gap: 8px;
}

.dz-share-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  text-decoration: none;
  border: 1px solid #0f0f0f;
  color: #0f0f0f;
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
.dz-share-btn:hover {
  background: #0f0f0f;
  color: #fff;
}

.dz-share-btn.forum {
  background: #0f0f0f;
  color: #ffffff;
}
.dz-share-btn.forum:hover { opacity: 0.82; }

/* ── Responsive ── */
@media (max-width: 576px) {
  .dz-cta-main    { padding: 28px 20px; }
  .dz-cta-share   { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .dz-cta-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dz-btn-primary { width: 100%; text-align: center; }
}
