/* ══════════════════════════
   blog.css
   ══════════════════════════ */

a,button,[role="button"]{touch-action:manipulation;}
    input,select,textarea{font-size:16px;}
    img{max-width:100%;height:auto;}

    /* ── VARIABLES ── */
    :root{
      --blog-line: rgba(28,26,23,.08);
      --tag-bg: rgba(184,150,90,.1);
    }

    /* ── HERO ── */
    .blog-hero{
      background: var(--charcoal);
      padding: 150px 80px 72px;
      position: relative;
      overflow: hidden;
    }
    .blog-hero::after{
      content: 'Blog';
      position: absolute;
      right: -20px; bottom: -40px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 220px;
      font-weight: 600;
      color: rgba(255,255,255,.025);
      pointer-events: none;
      line-height: 1;
      user-select: none;
    }
    .blog-hero-inner{max-width:900px;margin:0 auto;position:relative;z-index:1;}
    .blog-hero .eyebrow{
      font-size: 11px;font-weight:500;letter-spacing:.28em;
      text-transform:uppercase;color:var(--gold);
      margin-bottom:18px;display:block;
    }
    .blog-hero h1{
      font-family:'Cormorant Garamond',serif;
      font-size:clamp(38px,5vw,68px);
      font-weight:300;
      color:rgba(255,255,255,.88);
      line-height:1.12;
      margin-bottom:22px;
    }
    .blog-hero h1 em{font-style:italic;color:var(--gold);}
    .blog-hero .hero-sub{
      font-size:15px;color:rgba(255,255,255,.38);
      line-height:1.8;max-width:480px;
    }

    /* ── LAYOUT GÉNÉRAL ── */
    .blog-main{
      background: #FDFCFA;
      padding: 0 80px 100px;
    }
    .blog-container{
      max-width: 900px;
      margin: 0 auto;
    }

    /* ── SÉPARATEUR THÉMATIQUE ── */
    .blog-section-divider{
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 64px 0 48px;
      border-bottom: 1px solid var(--blog-line);
      margin-bottom: 0;
    }
    .blog-section-divider span{
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
    }
    .blog-section-divider::after{
      content: '';
      flex: 1;
      height: 1px;
      background: var(--blog-line);
    }

    /* ── ARTICLE CARD ── */
    .blog-article{
      border-bottom: 1px solid var(--blog-line);
      padding: 56px 0;
    }
    .blog-article:last-child{border-bottom:none;}

    /* meta ligne */
    .article-meta{
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 22px;
      flex-wrap: wrap;
    }
    .article-tag{
      display: inline-block;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      background: var(--tag-bg);
      padding: 4px 12px;
      border-radius: 2px;
    }
    .article-date{
      font-size: 12px;
      color: rgba(28,26,23,.35);
      letter-spacing: .04em;
    }
    .article-read-time{
      font-size: 12px;
      color: rgba(28,26,23,.28);
    }
    .article-read-time::before{content:'· ';}

    /* titre article */
    .article-title{
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 400;
      color: var(--charcoal);
      line-height: 1.25;
      margin-bottom: 16px;
      text-decoration: none;
      display: block;
      transition: color .2s;
    }
    .article-title:hover{color: var(--gold);}

    /* chapô */
    .article-intro{
      font-size: 15px;
      color: rgba(28,26,23,.55);
      line-height: 1.85;
      margin-bottom: 28px;
      font-style: italic;
      border-left: 2px solid var(--gold);
      padding-left: 18px;
    }

    /* corps article */
    .article-body{
      font-size: 14.5px;
      color: rgba(28,26,23,.65);
      line-height: 1.9;
    }
    .article-body p{margin-bottom:16px;}
    .article-body p:last-child{margin-bottom:0;}
    .article-body strong{color:var(--charcoal);font-weight:500;}

    /* vidéo embed dans article */
    .article-video{
      margin: 32px 0;
      border-radius: 3px;
      overflow: hidden;
      box-shadow: 0 6px 40px rgba(0,0,0,.08);
    }
    .article-video-wrap{
      position: relative;
      padding-bottom: 56.25%;
      background: #111;
    }
    .article-video-wrap iframe{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .article-video-caption{
      background: #fff;
      padding: 16px 22px;
      font-size: 12px;
      color: rgba(28,26,23,.4);
      display: flex;
      align-items: center;
      gap: 10px;
      border-top: 1px solid var(--blog-line);
    }
    .article-video-caption svg{
      width: 14px; height: 14px;
      fill: #FF0000;
      flex-shrink: 0;
    }

    /* signature auteur */
    .article-author{
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--blog-line);
    }
    .author-avatar{
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      color: #fff;
      font-weight: 600;
      flex-shrink: 0;
    }
    .author-info{display:flex;flex-direction:column;gap:2px;}
    .author-name{font-size:13px;font-weight:500;color:var(--charcoal);}
    .author-role{font-size:11px;color:rgba(28,26,23,.4);letter-spacing:.02em;}

    /* ── SIDEBAR CTA flottant ── */
    .blog-layout{display:grid;grid-template-columns:1fr 280px;gap:64px;align-items:start;}
    .blog-sidebar{padding-top:64px;position:sticky;top:24px;align-self:start;}
    .sidebar-card{
      background: #fff;
      border: 1px solid #E0DAD0;
      border-radius: 3px;
      padding: 32px 28px;
      margin-bottom: 24px;
    }
    .sidebar-card h4{
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .sidebar-card p{
      font-size: 13px;
      color: rgba(28,26,23,.5);
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .sidebar-card .btn-primary{
      display: block;
      text-align: center;
      font-size: 11px;
      padding: 12px 16px;
    }
    .sidebar-yt{
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid var(--blog-line);
      transition: opacity .2s;
    }
    .sidebar-yt:last-child{border-bottom:none;}
    .sidebar-yt:hover{opacity:.7;}
    .sidebar-yt-thumb{
      width: 64px; height: 40px;
      background: #111;
      border-radius: 2px;
      flex-shrink: 0;
      overflow: hidden;
      position: relative;
    }
    .sidebar-yt-thumb img{width:100%;height:100%;object-fit:cover;}
    .sidebar-yt-info{flex:1;}
    .sidebar-yt-title{font-size:12px;color:var(--charcoal);line-height:1.4;font-weight:400;}
    .sidebar-yt-tag{font-size:10px;color:rgba(28,26,23,.35);margin-top:3px;display:block;}

    /* ── RESPONSIVE ── */
    @media(max-width:1100px){
      .blog-hero{padding:140px 48px 64px;}
      .blog-main{padding:0 48px 80px;}
      .blog-layout{grid-template-columns:1fr 240px;gap:48px;}
    }
    @media(max-width:860px){
      .blog-hero{padding:120px 28px 56px;}
      .blog-main{padding:0 28px 72px;}
      .blog-layout{grid-template-columns:1fr;}
      .blog-sidebar{padding-top:0;}
      .sidebar-card{position:static;}
    }
    @media(max-width:560px){
      .blog-hero{padding:110px 20px 48px;}
      .blog-main{padding:0 20px 60px;}
      .blog-article{padding:44px 0;}
      .article-intro{font-size:14px;}
      .blog-section-divider{padding:48px 0 36px;}
    }
    @media(max-width:380px){
      .blog-hero{padding:100px 16px 40px;}
      .blog-main{padding:0 16px 52px;}
    }