
   .article-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
  .article-meta-row .meta { margin-bottom: 0; }
  
  /* ── Bouton déclencheur ── */
  .share-trigger {
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #333;
    color: #555;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: color .2s, border-color .2s, transform .2s;
  }
  .share-trigger:hover  { color: #fff; border-color: #666; transform: rotate(15deg); }
  .share-trigger:active { transform: scale(.92); }
  
  .share-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
  }
  .share-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  
  .share-modal {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 500px;
    padding: 22px 20px 38px;
    transform: translateY(100%);
    transition: transform .36s cubic-bezier(.22,1,.36,1);
  }
  
  @media (min-width: 600px) {
    .share-overlay { align-items: center; }
    .share-modal {
      border-radius: 16px;
      max-width: 400px;
      transform: translateY(12px) scale(.97);
      opacity: 0;
      transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .22s ease;
    }
    .share-overlay.open .share-modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
  }
  
  .share-overlay.open .share-modal {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* ── Handle mobile ── */
  .share-handle {
    width: 32px; height: 3px;
    background: #333;
    border-radius: 2px;
    margin: 0 auto 20px;
  }
  @media (min-width: 600px) { .share-handle { display: none; } }
  
  /* ── Header ── */
  .share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .share-modal-title {
    font-family: 'Syne', sans-serif;
    font-size: .92rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .05em;
    text-transform: uppercase;
  }
  .share-close {
    background: #252525;
    border: 1px solid #333;
    color: #666;
    width: 26px; height: 26px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: color .2s, background .2s, transform .22s;
  }
  .share-close:hover { color: #fff; background: #333; transform: rotate(90deg); }
  
  /* ── Icônes ── */
  .share-icons { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
  .share-icon-btn {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .share-icon-inner {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: transform .22s cubic-bezier(.34,1.56,.64,1), filter .18s, box-shadow .22s;
  }
  .share-icon-btn:hover .share-icon-inner {
    transform: translateY(-3px) scale(1.07);
    filter: brightness(1.12);
    box-shadow: 0 6px 16px rgba(0,0,0,.4);
  }
  .share-icon-btn:active .share-icon-inner { transform: scale(.95); transition-duration: .08s; }
  .share-icon-label {
    font-family: 'DM Mono', monospace;
    font-size: .6rem; color: #444;
    letter-spacing: .04em;
    transition: color .18s;
  }
  .share-icon-btn:hover .share-icon-label { color: #777; }
  
  /* ── Copier URL ── */
  .share-copy-row {
    display: flex;
    border: 1px solid #252525;
    border-radius: 8px;
    overflow: hidden;
    background: #141414;
    transition: border-color .2s;
  }
  .share-copy-row:hover { border-color: #333; }
  .share-url {
    flex: 1; padding: 10px 12px;
    font-family: 'DM Mono', monospace;
    font-size: .7rem; color: #3a3a3a;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .share-copy-btn {
    background: #007acc; color: #fff;
    border: none; padding: 0 16px;
    font-family: 'Syne', sans-serif;
    font-size: .78rem; font-weight: 600;
    cursor: pointer; letter-spacing: .03em;
    white-space: nowrap;
    transition: filter .18s, transform .12s;
  }
  .share-copy-btn:hover  { filter: brightness(1.1); }
  .share-copy-btn:active { transform: scale(.97); }
  .share-copy-btn.copied { background: #1a7a4a; }
  
  /* ── Animations icônes ── */
  .share-overlay.open .share-icon-btn {
    animation: iconPop .4s cubic-bezier(.34,1.56,.64,1) both;
  }
  .share-overlay.open .share-icon-btn:nth-child(1) { animation-delay: .05s; }
  .share-overlay.open .share-icon-btn:nth-child(2) { animation-delay: .10s; }
  .share-overlay.open .share-icon-btn:nth-child(3) { animation-delay: .15s; }
  .share-overlay.open .share-icon-btn:nth-child(4) { animation-delay: .20s; }
  .share-overlay.open .share-icon-btn:nth-child(5) { animation-delay: .25s; }
  .share-overlay.open .share-icon-btn:nth-child(6) { animation-delay: .30s; }
  
  @keyframes iconPop {
    from { opacity: 0; transform: translateY(10px) scale(.78); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }