/* =============================================================
   ÉVENOS TEMPLATE v2 — custom.css
   Styles globaux pour tous les articles du site village-evenos.fr
   Inclut : Château Sainte-Anne, Fort de Pipaudon, Faune & Flore,
            Animaux Sauvages, Lavoir du Broussan, Bastide & Auberge,
            Override de catégorie (ev-catblog-*)
   Installer dans : templates/evenos2/css/custom.css
   ============================================================= */

/* ══════════════════════════════════════════════════════════════
   1. VARIABLES GLOBALES — Charte graphique Évenos
   ══════════════════════════════════════════════════════════════ */
:root {
  --ev-or:           #C4973E;
  --ev-or-vif:       #D4A843;
  --ev-pierre:       #2C2416;
  --ev-pierre-foncee:#2C2416;
  --ev-text:         #3A2E1F;
  --ev-text-clair:   #5C4A32;
  --ev-text-muted:   #7A6550;
  --ev-sable:        #F5E6C8;
  --ev-sable-2:      #EDD89A;
  --ev-eau:          #4A7C7E;
  --ev-eau-clair:    #E8F4F5;
  --ev-rouge:        #8B2A2A;
  --ev-rouge-clair:  #F9ECEC;
  --ev-font-titre:   'Cinzel Decorative', Georgia, serif;
  --ev-font-nav:     'Cinzel', Georgia, serif;
  --ev-font-body:    'Lora', Georgia, serif;
}


/* ══════════════════════════════════════════════════════════════
   ARTICLE : CHATEAU SAINTE ANNE
   ══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════
   RESET & ROOT
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   ARTICLE WRAPPER
══════════════════════════════════════ */
.csa-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 80px;
}

/* ══════════════════════════════════════
   HERO — lush vineyard feel
══════════════════════════════════════ */
.csa-hero {
  position: relative;
  background: var(--deep);
  padding: 72px 48px 60px;
  margin: 0;
  overflow: hidden;
}

.csa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201,138,46,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 100%, rgba(122,140,94,.15) 0%, transparent 50%);
}

/* Decorative vine motif */
.csa-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 280px;
  background:
    repeating-linear-gradient(
      -30deg,
      transparent,
      transparent 18px,
      rgba(122,140,94,.06) 18px,
      rgba(122,140,94,.06) 19px
    );
}

.hero-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ochre);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  display: block;
  height: 1px;
  background: rgba(201,138,46,.4);
}
.hero-tag::before { width: 32px; }
.hero-tag::after  { flex: 1; max-width: 80px; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  position: relative;
  max-width: 680px;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--light-sage);
  font-weight: 400;
  margin-bottom: 32px;
  position: relative;
}

.hero-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: rgba(255,255,255,.68);
  max-width: 560px;
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--terracotta);
}

/* ══════════════════════════════════════
   BADGES / LABELS
══════════════════════════════════════ */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  position: relative;
}
.badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}
.badge-green  { background: rgba(122,140,94,.25); color: var(--light-sage); border: 1px solid rgba(122,140,94,.3); }
.badge-ochre  { background: rgba(201,138,46,.2);  color: var(--ochre);      border: 1px solid rgba(201,138,46,.35);}
.badge-terra  { background: rgba(160,69,53,.2);   color: #e8a090;           border: 1px solid rgba(160,69,53,.35);}

/* ══════════════════════════════════════
   CONTENT BODY
══════════════════════════════════════ */
.csa-body {
  padding: 0 48px;
}

/* ══════════════════════════════════════
   KEY FIGURES
══════════════════════════════════════ */
.figures-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--vine);
  margin: 0 -48px;
}
.figure-cell {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.figure-cell:last-child { border-right: none; }
.fig-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 4px;
}
.fig-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ══════════════════════════════════════
   SECTION TITLES
══════════════════════════════════════ */
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--vine);
  margin: 56px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
h2::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
h2::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--warm);
  max-width: 120px;
}

h3 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin: 36px 0 10px;
}

/* ══════════════════════════════════════
   BODY TEXT
══════════════════════════════════════ */
p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
}
p strong { color: var(--vine); font-weight: 500; }

/* ══════════════════════════════════════
   PIONEER CARDS
══════════════════════════════════════ */
.pioneer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 36px 0;
  background: var(--warm);
  border: 2px solid var(--warm);
  border-radius: 4px;
  overflow: hidden;
}
.pioneer-card {
  background: var(--cream);
  padding: 28px 22px;
}
.pioneer-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.pioneer-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}
.pioneer-title {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pioneer-card p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   PULLQUOTE — wine style
══════════════════════════════════════ */
.wine-quote {
  margin: 48px -48px;
  padding: 48px 64px;
  background: var(--parchment);
  border-top: 1px solid var(--warm);
  border-bottom: 1px solid var(--warm);
  position: relative;
}
.wine-quote::before {
  content: '❧';
  position: absolute;
  top: 24px;
  left: 64px;
  font-size: 1.4rem;
  color: var(--terracotta);
  opacity: .5;
}
.wine-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--vine);
  margin-bottom: 16px;
}
.wine-quote cite {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
}

/* ══════════════════════════════════════
   TERROIR SPLIT
══════════════════════════════════════ */
.terroir-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 36px 0;
  background: var(--warm);
  border-radius: 4px;
  overflow: hidden;
}
.terroir-panel {
  padding: 32px 28px;
  background: var(--cream);
}
.terroir-panel:first-child { border-right: none; }
.tp-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.tp-green { background: rgba(122,140,94,.15); }
.tp-sand  { background: rgba(201,138,46,.12); }
.tp-title {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.tp-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--vine);
  line-height: 1;
  margin-bottom: 4px;
}
.terroir-panel p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   CÉPAGE TABLE
══════════════════════════════════════ */
.cepage-block {
  margin: 36px 0;
}
.cepage-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--warm);
}
.cepage-row:last-child { border-bottom: none; }
.cepage-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--vine);
  width: 160px;
  flex-shrink: 0;
}
.cepage-color-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red   { background: #6b1a2a; }
.dot-rosé  { background: #c06060; }
.dot-white { background: #c9a855; }
.cepage-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--warm);
  border-radius: 3px;
  overflow: hidden;
}
.cepage-bar {
  height: 100%;
  border-radius: 3px;
  transition: width .3s ease;
}
.bar-red   { background: linear-gradient(to right, #6b1a2a, #a03545); }
.bar-rosé  { background: linear-gradient(to right, #c06060, #d98080); }
.bar-white { background: linear-gradient(to right, #b89030, var(--ochre)); }
.cepage-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--terracotta);
  width: 50px;
  text-align: right;
}

/* ══════════════════════════════════════
   VINIFICATION STEPS
══════════════════════════════════════ */
.vini-steps {
  margin: 36px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--warm);
  border-radius: 4px;
  overflow: hidden;
}
.vini-step {
  background: var(--cream);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-sage);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.step-content strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--vine);
  margin-bottom: 3px;
}
.step-content span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   WINE PROFILES — 3 couleurs
══════════════════════════════════════ */
.wine-profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.wine-profile {
  border-radius: 4px;
  overflow: hidden;
}
.wp-header {
  padding: 20px 20px 16px;
  text-align: center;
}
.wp-rouge  .wp-header { background: #3d0e18; }
.wp-blanc  .wp-header { background: #3d3310; }
.wp-rose   .wp-header { background: #4a1e1e; }
.wp-emoji  { font-size: 2rem; display: block; margin-bottom: 8px; }
.wp-name {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.wp-body {
  padding: 20px;
  background: var(--parchment);
}
.wp-body p {
  font-size: .87rem;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.6;
}
.wp-trait {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.wp-trait::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wp-rouge .wp-trait::before { background: #8b1a2a; }
.wp-blanc .wp-trait::before { background: var(--ochre); }
.wp-rose  .wp-trait::before { background: #c06060; }
.wp-garde {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--warm);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
}

/* ══════════════════════════════════════
   INFO TABLE
══════════════════════════════════════ */
.info-card {
  background: var(--vine);
  border-radius: 4px;
  overflow: hidden;
  margin: 36px 0;
}
.info-card-header {
  padding: 20px 28px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.info-card-header span {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ochre);
}
.info-row {
  display: flex;
  align-items: flex-start;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  gap: 20px;
}
.info-row:last-child { border-bottom: none; }
.info-key {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  width: 180px;
  flex-shrink: 0;
  padding-top: 2px;
}
.info-val {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: rgba(255,255,255,.88);
  line-height: 1.5;
}
.info-val a {
  color: var(--ochre);
  text-decoration: none;
}
.info-val a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   SOURCES
══════════════════════════════════════ */
.sources {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--warm);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.sources strong {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 8px;
}
.sources a { color: var(--terracotta); text-decoration: none; }
.sources a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 680px) {
  .csa-hero    { padding: 52px 24px 44px; }
  .csa-body    { padding: 0 24px; }
  .wine-quote  { margin: 40px -24px; padding: 36px 28px; }
  .wine-quote::before { left: 28px; }
  .figures-strip { grid-template-columns: repeat(2, 1fr); margin: 0 -24px; }
  .pioneer-grid  { grid-template-columns: 1fr; }
  .terroir-split { grid-template-columns: 1fr; }
  .vini-steps    { grid-template-columns: 1fr; }
  .wine-profiles { grid-template-columns: 1fr; }
  .info-key      { width: 120px; font-size: 10px; }
  .cepage-name   { width: 110px; }
  h2             { font-size: 1.6rem; }
}


/* ══════════════════════════════════════════════════════════════
   ARTICLE : FORT PIPAUDON
   ══════════════════════════════════════════════════════════════ */
/* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  

  body {
    font-family: 'Libre Baskerville', Georgia, serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.75;
    font-size: 17px;
  }

  /* ===== ARTICLE WRAPPER ===== */
  .pipaudon-article {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 80px;
  }

  /* ===== HERO ===== */
  .article-hero {
    position: relative;
    background: var(--basalt);
    margin: 0 -24px 0;
    padding: 80px 24px 56px;
    overflow: hidden;
    border-bottom: 4px solid var(--gold);
  }

  .article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(184,150,46,0.04) 40px,
        rgba(184,150,46,0.04) 41px
      );
  }

  .hero-overline {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hero-overline::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    position: relative;
    margin-bottom: 24px;
    max-width: 720px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--sand);
  }

  .hero-intro {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--sand);
    max-width: 640px;
    position: relative;
    line-height: 1.8;
    border-left: 3px solid var(--rust);
    padding-left: 18px;
  }

  /* ===== BYLINE ===== */
  .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--fog);
    margin-bottom: 44px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
  }
  .meta-sep { color: var(--sand); }

  /* ===== LEAD PARAGRAPH ===== */
  .lead-para {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--stone);
    margin-bottom: 40px;
    padding: 28px 32px;
    background: var(--parchment);
    border-left: 5px solid var(--gold);
    border-radius: 0 4px 4px 0;
  }

  /* ===== SECTION HEADERS ===== */
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--stone);
    margin: 56px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fog);
    position: relative;
  }
  h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--rust);
  }

  h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rust);
    margin: 36px 0 10px;
  }

  /* ===== BODY TEXT ===== */
  p { margin-bottom: 24px; }
  p strong { color: var(--stone); font-weight: 700; }

  /* ===== PULLQUOTE ===== */
  .pullquote {
    margin: 48px 0;
    padding: 36px 40px;
    background: var(--basalt);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .pullquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    color: rgba(184,150,46,0.15);
    position: absolute;
    top: -20px;
    left: 10px;
    line-height: 1;
  }
  .pullquote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--sand);
    line-height: 1.65;
    position: relative;
    margin-bottom: 16px;
  }
  .pullquote cite {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
  }

  /* ===== STATS GRID ===== */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2px;
    margin: 40px 0;
    background: var(--fog);
    border: 2px solid var(--fog);
    border-radius: 4px;
    overflow: hidden;
  }
  .stat-card {
    background: var(--cream);
    padding: 24px 20px;
    text-align: center;
  }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--rust);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ===== TIMELINE ===== */
  .timeline {
    margin: 40px 0;
    padding-left: 0;
    list-style: none;
    position: relative;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--rust));
  }
  .timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
    position: relative;
  }
  .timeline-year {
    flex-shrink: 0;
    width: 48px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-align: right;
    padding-top: 2px;
  }
  .timeline-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rust);
    border: 2px solid var(--cream);
    outline: 2px solid var(--rust);
    margin-top: 5px;
  }
  .timeline-content {
    flex: 1;
    padding-bottom: 4px;
  }
  .timeline-content strong {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 4px;
  }
  .timeline-content span {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ===== ARMEMENT BOX ===== */
  .armement-box {
    background: var(--parchment);
    border: 1px solid var(--sand);
    border-radius: 4px;
    padding: 28px 32px;
    margin: 32px 0;
  }
  .armement-box h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--sand);
  }
  .arm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--sand);
    font-size: 0.9rem;
  }
  .arm-row:last-child { border-bottom: none; }
  .arm-name { color: var(--text); }
  .arm-count {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--rust);
    font-size: 1.3rem;
  }
  .arm-bar-wrap {
    flex: 1;
    margin: 0 16px;
    height: 4px;
    background: var(--fog);
    border-radius: 2px;
    overflow: hidden;
  }
  .arm-bar {
    height: 100%;
    background: linear-gradient(to right, var(--rust), var(--gold));
    border-radius: 2px;
  }

  /* ===== INFO TABLE ===== */
  .info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 0.9rem;
  }
  .info-table caption {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: left;
    padding: 0 0 12px;
  }
  .info-table tr {
    border-bottom: 1px solid var(--fog);
  }
  .info-table tr:last-child { border-bottom: none; }
  .info-table td {
    padding: 12px 16px 12px 0;
    vertical-align: top;
  }
  .info-table td:first-child {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    width: 200px;
    padding-right: 24px;
    padding-top: 14px;
  }
  .info-table td:last-child {
    color: var(--stone);
    font-weight: 700;
  }

  /* ===== HIGHLIGHT BOX ===== */
  .highlight-box {
    margin: 44px 0;
    padding: 30px 36px;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(184,150,46,0.07), transparent);
  }
  .highlight-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
  }

  /* ===== UNDERGROUND DIAGRAM ===== */
  .underground-visual {
    margin: 36px 0;
    padding: 32px;
    background: var(--stone);
    border-radius: 4px;
    color: #fff;
  }
  .underground-visual h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .layer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    margin-bottom: 3px;
    border-radius: 2px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .layer-depth {
    font-size: 10px;
    color: var(--gold);
    white-space: nowrap;
    width: 60px;
    text-align: right;
  }
  .layer-0 { background: rgba(184,150,46,0.2); color: var(--sand); }
  .layer-1 { background: rgba(139,58,42,0.25); color: #e0c9b0; }
  .layer-2 { background: rgba(42,37,32,0.5); color: #c5ad90; }
  .layer-3 { background: rgba(26,23,20,0.7); color: #a89070; }
  .layer-4 { background: rgba(15,12,10,0.85); color: #8a7060; }

  /* ===== SOURCES ===== */
  .sources-block {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--fog);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--muted);
  }
  .sources-block strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sand);
    margin-bottom: 10px;
  }
  .sources-block a {
    color: var(--rust);
    text-decoration: none;
  }
  .sources-block a:hover { text-decoration: underline; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .info-table td:first-child { width: 130px; font-size: 9px; }
    .pullquote { padding: 28px 24px; }
    .arm-bar-wrap { display: none; }
    .article-hero { padding: 60px 24px 40px; }
  }


/* ══════════════════════════════════════════════════════════════
   ARTICLE : EVENOS FAUNE FLORE
   ══════════════════════════════════════════════════════════════ */
/* ══════════════════════════
   VARIABLES & RESET
══════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

/* ══════════════════════════
   ARTICLE WRAPPER
══════════════════════════ */
.bio-article {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 80px;
}

/* ══════════════════════════
   HERO — pleine largeur avec image
══════════════════════════ */
.bio-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  background: var(--forest);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,51,38,.95) 0%,
    rgba(30,51,38,.5) 45%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 48px 48px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lichen);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '🌿';
  font-size: 14px;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 640px;
}

.hero-sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.7;
}

/* ══════════════════════════
   CHIFFRES-CLÉS STRIP
══════════════════════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--moss);
}

.stat-box {
  padding: 22px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-box:last-child { border-right: none; }

.stat-n {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--lichen);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-l {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ══════════════════════════
   INTRO + PROTECTION BADGES
══════════════════════════ */
.bio-body { padding: 0 48px; }

.intro-block {
  padding: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 36px;
  align-items: start;
}

.intro-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 18px;
}
.intro-text p strong { color: var(--forest); }

.protection-box {
  background: var(--warm);
  border-radius: 6px;
  padding: 24px 20px;
  border-top: 4px solid var(--fern);
}
.pb-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 14px;
}
.pb-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.45;
}
.pb-item::before {
  content: '✓';
  color: var(--fern);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════
   SECTION HEADERS
══════════════════════════ */
h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  margin: 60px 0 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}
h2 .sec-icon { font-size: 1.4rem; }
h2::after {
  content: none;
}

h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fern);
  margin: 36px 0 12px;
}

p { margin-bottom: 18px; }
p strong { color: var(--forest); }

/* ══════════════════════════
   IMAGE LARGE
══════════════════════════ */
.full-img-wrap {
  margin: 32px -48px;
  position: relative;
  overflow: hidden;
}
.full-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,51,38,.85));
  padding: 24px 20px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  font-style: italic;
}

/* ══════════════════════════
   ESPÈCES GRID — cards
══════════════════════════ */
.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--warm);
  border-radius: 6px;
  overflow: hidden;
  margin: 28px 0;
}

.species-card {
  background: var(--cream);
  padding: 22px 18px;
}

.sc-emoji { font-size: 2rem; margin-bottom: 10px; display: block; }

.sc-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2px;
}
.sc-latin {
  font-size: 11px;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
}
.sc-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.status-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-top: 10px;
  font-weight: 500;
}
.s-protected { background: rgba(91,124,74,.15); color: var(--fern); }
.s-menaced   { background: rgba(176,90,56,.12); color: var(--terracotta); }
.s-endemic   { background: rgba(123,164,184,.15); color: var(--sky); }
.s-rare      { background: rgba(90,80,64,.1); color: var(--muted); }

/* ══════════════════════════
   HABITAT SECTIONS — colored
══════════════════════════ */
.habitat-section {
  border-radius: 6px;
  overflow: hidden;
  margin: 32px 0;
}
.hab-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hab-forest .hab-header { background: var(--forest); }
.hab-garrigue .hab-header { background: var(--moss); }
.hab-rocky .hab-header { background: #4a3c28; }
.hab-water .hab-header { background: #1a3c50; }
.hab-farm .hab-header { background: #4a3a1a; }

.hab-icon { font-size: 2rem; flex-shrink: 0; }
.hab-title-wrap {}
.hab-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2px;
}
.hab-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hab-body {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--warm);
  border-top: none;
  border-radius: 0 0 6px 6px;
}
.hab-body p { font-size: .95rem; margin-bottom: 14px; }
.hab-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════
   SIDE-BY-SIDE IMAGE + TEXT
══════════════════════════ */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--warm);
  border-radius: 6px;
  overflow: hidden;
  margin: 28px 0;
}
.split-img {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.split-text {
  background: var(--cream);
  padding: 28px 24px;
}
.split-text p { font-size: .9rem; margin-bottom: 12px; }
.split-text p:last-child { margin-bottom: 0; }

/* ══════════════════════════
   QUOTE / ENCADRÉ
══════════════════════════ */
.nature-quote {
  margin: 44px -48px;
  padding: 44px 64px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.nature-quote::before {
  content: '🌿';
  position: absolute;
  font-size: 8rem;
  opacity: .07;
  top: -10px;
  right: 30px;
  line-height: 1;
}
.nature-quote p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--lichen);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 0 14px;
}
.nature-quote cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-style: normal;
}

/* ══════════════════════════
   MENACES & ACTIONS
══════════════════════════ */
.menaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.menace-card {
  border-radius: 4px;
  overflow: hidden;
}
.mc-head {
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mc-red .mc-head   { background: rgba(176,90,56,.2); color: var(--terracotta); }
.mc-green .mc-head { background: rgba(91,124,74,.15); color: var(--fern); }
.mc-body {
  padding: 16px 18px;
  background: var(--warm);
}
.mc-item {
  font-size: .88rem;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.mc-item:last-child { border-bottom: none; }
.mc-item::before { flex-shrink: 0; margin-top: 1px; }
.mc-red .mc-item::before  { content: '⚠'; color: var(--terracotta); }
.mc-green .mc-item::before { content: '✦'; color: var(--fern); }

/* ══════════════════════════
   AGENDA NATURE
══════════════════════════ */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--warm);
  border-radius: 6px;
  overflow: hidden;
  margin: 28px 0;
}
.cal-season {
  background: var(--cream);
  padding: 20px 16px;
}
.cs-header {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-item {
  font-size: .83rem;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 1px dashed var(--sand);
  line-height: 1.4;
}
.cs-item:last-child { border-bottom: none; }

/* ══════════════════════════
   SOURCES
══════════════════════════ */
.sources {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--warm);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.sources strong {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.sources a { color: var(--fern); text-decoration: none; }
.sources a:hover { text-decoration: underline; }

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 720px) {
  .bio-hero { min-height: 340px; }
  .hero-content { padding: 32px 24px; }
  .bio-body { padding: 0 24px; }
  .full-img-wrap { margin: 24px -24px; }
  .nature-quote { margin: 36px -24px; padding: 32px 28px; }
  .stats-strip { grid-template-columns: repeat(3, 1fr); }
  .species-grid { grid-template-columns: 1fr 1fr; }
  .intro-block { grid-template-columns: 1fr; }
  .split-block { grid-template-columns: 1fr; }
  .menaces-grid { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .species-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}


/* ══════════════════════════════════════════════════════════════
   ARTICLE : EVENOS ANIMAUX SAUVAGES
   ══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════
   VARIABLES
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.78;
}

.wildlife-article {
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 100px;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.w-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--night);
}

.w-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .72;
}

.w-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,24,32,.97) 0%,
    rgba(17,24,32,.55) 40%,
    rgba(17,24,32,.1) 100%
  );
}

.w-hero-content {
  position: relative;
  z-index: 2;
  padding: 52px 52px 52px;
  width: 100%;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--lichen);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag span { font-size: 1rem; }

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.03;
  margin-bottom: 18px;
  max-width: 660px;
}

.hero-intro {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.12rem;
  color: rgba(255,255,255,.72);
  max-width: 580px;
  line-height: 1.72;
}

/* ═══════════════════════════════
   CHIFFRES CLÉS — bande sombre
═══════════════════════════════ */
.w-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--deep);
}
.w-stat {
  padding: 24px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.w-stat:last-child { border-right: none; }
.ws-n {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lichen);
  line-height: 1;
  margin-bottom: 5px;
}
.ws-l {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* ═══════════════════════════════
   CORPS
═══════════════════════════════ */
.w-body { padding: 0 52px; }

/* Titres de section */
.sec-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  margin: 64px 0 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sec-title .ico { font-size: 1.5rem; }
.sec-sub {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 24px;
  padding-left: 50px;
}

/* Intro paragraphe */
.intro-p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
}
.intro-p strong { color: var(--forest); }

/* ═══════════════════════════════
   IMAGE PLEINE LARGEUR
═══════════════════════════════ */
.img-full {
  margin: 36px -52px;
  position: relative;
  overflow: hidden;
}
.img-full img {
  width: 100%; height: 400px;
  object-fit: cover;
  display: block;
}
.img-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(17,24,32,.85));
  padding: 28px 24px 16px;
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,.75);
}

/* ═══════════════════════════════
   CARTE ANIMALE — grande (hero animal)
═══════════════════════════════ */
.animal-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 36px 0;
}
.ah-img { position: relative; min-height: 320px; }
.ah-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Badge de statut */
.ah-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
}
.badge-danger  { background: var(--rust); color: #fff; }
.badge-protect { background: var(--forest); color: var(--lichen); }
.badge-rare    { background: var(--amber); color: #fff; }
.badge-common  { background: rgba(0,0,0,.45); color: rgba(255,255,255,.8); }

.ah-body {
  background: var(--cream);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ah-eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 8px;
}
.ah-name {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
  line-height: 1.15;
}
.ah-latin {
  font-style: italic;
  font-size: .95rem;
  color: var(--sage);
  margin-bottom: 20px;
  display: block;
}
.ah-desc {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
}
.ah-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ah-fact {
  background: var(--warm);
  border-radius: 4px;
  padding: 10px 14px;
}
.af-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 3px;
}
.af-val {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--forest);
}

/* ═══════════════════════════════
   GRILLE D'ESPÈCES — petites cartes
═══════════════════════════════ */
.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 28px 0;
}
.sp-card {
  background: var(--cream);
  padding: 24px 20px;
  position: relative;
}
.sp-emoji { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.sp-name {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2px;
}
.sp-latin {
  font-size: 11px;
  font-style: italic;
  color: var(--sage);
  display: block;
  margin-bottom: 10px;
}
.sp-desc {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 12px;
}
.status-pill {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.sp-danger  { background: rgba(160,72,48,.13); color: var(--rust); }
.sp-protect { background: rgba(34,56,40,.12); color: var(--forest); }
.sp-rare    { background: rgba(200,129,58,.13); color: var(--amber); }
.sp-eu      { background: rgba(104,150,176,.15); color: var(--sky); }

/* ═══════════════════════════════
   BLOC IMAGE + TEXTE CÔTE À CÔTE
═══════════════════════════════ */
.side-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 36px 0;
}
.side-img { position: relative; min-height: 280px; overflow: hidden; }
.side-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.side-text {
  background: var(--cream);
  padding: 32px 28px;
}
.side-text h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 14px;
}
.side-text p { font-size: .92rem; line-height: 1.72; color: var(--muted); margin-bottom: 14px; }
.side-text p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════
   PULL QUOTE
═══════════════════════════════ */
.w-quote {
  margin: 52px -52px;
  padding: 52px 72px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.w-quote::before {
  content: '🦅';
  position: absolute;
  font-size: 10rem;
  opacity: .06;
  right: 40px;
  top: -20px;
  line-height: 1;
}
.w-quote p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--lichen);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 16px;
}
.w-quote cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-style: normal;
}

/* ═══════════════════════════════
   BANDE NUIT — Chauves-souris
═══════════════════════════════ */
.night-band {
  background: var(--night);
  border-radius: 8px;
  overflow: hidden;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
.nb-img { position: relative; min-height: 300px; }
.nb-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .85; }
.nb-text { padding: 36px 32px; }
.nb-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 12px;
}
.nb-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.nb-desc { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 16px; }
.nb-species {
  list-style: none;
  margin-top: 16px;
}
.nb-species li {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.nb-species li::before { content: '◉'; color: var(--lichen); font-size: .6rem; flex-shrink: 0; }
.nb-species li:last-child { border-bottom: none; }
.nb-species em { font-style: italic; color: rgba(255,255,255,.3); margin-left: 4px; font-size: .8rem; }

/* ═══════════════════════════════
   TIMELINE — ZONES D'OBSERVATION
═══════════════════════════════ */
.obs-zones {
  margin: 28px 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.oz-header {
  background: var(--forest);
  color: var(--lichen);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 22px;
}
.oz-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
}
.oz-row:last-child { border-bottom: none; }
.oz-zone {
  background: var(--warm);
  padding: 18px 20px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--border);
}
.oz-animals {
  background: var(--cream);
  padding: 18px 20px;
  font-size: .87rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.oz-tag {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 10px;
  font-size: .78rem;
  color: var(--forest);
}

/* ═══════════════════════════════
   CONSEILS RANDO FAUNE
═══════════════════════════════ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.tip-card {
  background: var(--warm);
  border-radius: 6px;
  padding: 22px 18px;
  border-top: 3px solid var(--fern);
}
.tip-ico { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.tip-title { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .9rem; color: var(--forest); margin-bottom: 8px; }
.tip-text { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════
   SOURCES
═══════════════════════════════ */
.w-sources {
  margin-top: 60px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
}
.w-sources strong {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.w-sources a { color: var(--fern); text-decoration: none; }
.w-sources a:hover { text-decoration: underline; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 780px) {
  .w-hero { min-height: 380px; }
  .w-hero-content { padding: 32px 24px; }
  .w-body { padding: 0 24px; }
  .img-full { margin: 28px -24px; }
  .w-quote { margin: 40px -24px; padding: 36px 28px; }
  .w-stats { grid-template-columns: repeat(3, 1fr); }
  .animal-hero { grid-template-columns: 1fr; }
  .animal-hero .ah-img { min-height: 240px; }
  .species-grid { grid-template-columns: 1fr 1fr; }
  .side-block { grid-template-columns: 1fr; }
  .night-band { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .oz-row { grid-template-columns: 1fr; }
  .oz-zone { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .species-grid { grid-template-columns: 1fr; }
  .w-stats { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: 1fr; }
  .ah-facts { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════════
   ARTICLE : LAVOIR BROUSSAN
   ══════════════════════════════════════════════════════════════ */
/* ── Variables charte Évenos ── */


/* ── Wrapper article ── */
.lav-article {
  font-family: var(--ev-font-body);
  color: var(--ev-text);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Hero ── */
.lav-hero {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 24px rgba(44,36,22,.22);
}
.lav-hero img {
  width: 100%;
  display: block;
  margin: 0;
}
.lav-hero-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(44,36,22,.82));
  padding: 2.5rem 2rem 1.2rem;
  color: #F5E6C8;
}
.lav-hero-label {
  font-family: var(--ev-font-nav);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ev-or);
  display: block;
  margin-bottom: .4rem;
}
.lav-hero-title {
  font-family: var(--ev-font-titre);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 .3rem;
  color: #F5E6C8;
}
.lav-hero-sub {
  font-size: .9rem;
  color: #EDD89A;
  font-style: italic;
  margin: 0;
}

/* ── Ornement séparateur ── */
.lav-sep {
  text-align: center;
  color: var(--ev-or);
  font-size: .9rem;
  letter-spacing: .4em;
  margin: 1.8rem 0;
}

/* ── Chapeau introductif ── */
.lav-intro {
  background: linear-gradient(135deg, var(--ev-sable), var(--ev-sable-2));
  border-left: 5px solid var(--ev-or);
  border-radius: 0 4px 4px 0;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
  color: var(--ev-text-clair);
  font-style: italic;
  line-height: 1.9;
}

/* ── Titres de section ── */
.lav-h2 {
  font-family: var(--ev-font-nav);
  font-size: 1.2rem;
  color: var(--ev-pierre);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 2.2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--ev-or);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.lav-h2-icon { color: var(--ev-or); font-size: 1.1em; }

/* ── Texte courant ── */
.lav-p {
  margin: 0 0 1.2rem;
  font-size: .97rem;
  color: var(--ev-text);
  line-height: 1.85;
}

/* ── Image flottante avec légende ── */
.lav-img-right {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 380px;
  width: 45%;
}
.lav-img-left {
  float: left;
  margin: 0 2rem 1.5rem 0;
  max-width: 380px;
  width: 45%;
}
.lav-img-right img,
.lav-img-left img {
  width: 100%;
  display: block;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(44,36,22,.18);
  margin: 0;
}
.lav-img-caption {
  font-size: .75rem;
  color: var(--ev-text-clair);
  font-style: italic;
  text-align: center;
  margin-top: .4rem;
  padding: 0 .3rem;
}

/* ── Encadré "Le saviez-vous ?" ── */
.lav-saviez {
  background: var(--ev-eau-clair);
  border: 1px solid rgba(74,124,126,.3);
  border-left: 5px solid var(--ev-eau);
  border-radius: 0 4px 4px 0;
  padding: 1.1rem 1.4rem;
  margin: 1.8rem 0;
  clear: both;
}
.lav-saviez-title {
  font-family: var(--ev-font-nav);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ev-eau);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.lav-saviez p {
  font-size: .9rem;
  color: #2A4A4B;
  margin: 0;
  line-height: 1.7;
}

/* ── Chiffres clés ── */
.lav-chiffres {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.8rem 0 2rem;
  clear: both;
}
.lav-chiffre-card {
  background: linear-gradient(160deg, var(--ev-sable), var(--ev-sable-2));
  border: 1px solid rgba(196,151,62,.4);
  border-top: 3px solid var(--ev-or);
  border-radius: 2px;
  padding: 1rem;
  text-align: center;
}
.lav-chiffre-nb {
  font-family: var(--ev-font-titre);
  font-size: 2rem;
  color: var(--ev-or);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.lav-chiffre-label {
  font-size: .78rem;
  color: var(--ev-text-clair);
  font-style: italic;
  line-height: 1.4;
}

/* ── Citation mise en valeur ── */
.lav-quote {
  border-left: 4px solid var(--ev-or);
  background: linear-gradient(135deg, var(--ev-sable), var(--ev-sable-2));
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
  border-radius: 0 4px 4px 0;
  clear: both;
}
.lav-quote blockquote {
  margin: 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--ev-pierre);
  line-height: 1.8;
}
.lav-quote cite {
  display: block;
  margin-top: .6rem;
  font-size: .78rem;
  color: var(--ev-or);
  font-family: var(--ev-font-nav);
  letter-spacing: .08em;
  font-style: normal;
}

/* ── Étapes / Rituel de la lessive ── */
.lav-etapes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  counter-reset: lav-counter;
}
.lav-etapes li {
  counter-increment: lav-counter;
  display: flex;
  gap: 1rem;
  margin-bottom: .9rem;
  align-items: flex-start;
  font-size: .93rem;
  color: var(--ev-text);
}
.lav-etapes li::before {
  content: counter(lav-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--ev-or);
  color: var(--ev-pierre);
  border-radius: 50%;
  font-family: var(--ev-font-nav);
  font-size: .8rem;
  font-weight: bold;
}

/* ── Bannière pleine largeur ── */
.lav-banner {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(44,36,22,.15);
  clear: both;
}
.lav-banner img {
  width: 100%;
  display: block;
  margin: 0;
}
.lav-banner-caption {
  background: var(--ev-pierre);
  color: var(--ev-sable);
  text-align: center;
  font-size: .78rem;
  font-style: italic;
  padding: .5rem 1rem;
}

/* ── Patrimoine à voir ── */
.lav-patrimoine {
  background: linear-gradient(135deg, var(--ev-sable), var(--ev-sable-2));
  border: 1px solid rgba(196,151,62,.4);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  clear: both;
}
.lav-patrimoine-title {
  font-family: var(--ev-font-nav);
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ev-or);
  margin-bottom: .8rem;
}
.lav-patrimoine ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem .8rem;
}
.lav-patrimoine li {
  font-size: .88rem;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  color: var(--ev-text);
}
.lav-patrimoine li::before {
  content: '✦';
  color: var(--ev-or);
  flex-shrink: 0;
  font-size: .7rem;
  margin-top: .2rem;
}

/* ── Pied d'article ── */
.lav-footer-ornement {
  text-align: center;
  padding: 1.5rem 0 .5rem;
  clear: both;
}
.lav-footer-ornement span {
  display: inline-block;
  font-family: var(--ev-font-nav);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ev-or);
  padding: 0 .8rem;
  border-top: 1px solid rgba(196,151,62,.4);
  border-bottom: 1px solid rgba(196,151,62,.4);
  padding: .4rem 1.2rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .lav-img-right,
  .lav-img-left { float: none; width: 100%; max-width: 100%; margin: 0 0 1.2rem; }
  .lav-chiffres { grid-template-columns: 1fr; }
  .lav-patrimoine ul { grid-template-columns: 1fr; }
  .lav-hero-title { font-size: 1.3rem; }
}


/* ══════════════════════════════════════════════════════════════
   ARTICLE : BASTIDE AUBERGE BROUSSAN
   ══════════════════════════════════════════════════════════════ */
/* ── Variables charte Évenos ── */


/* ── Wrapper ── */
.bav-article {
  font-family: var(--ev-font-body);
  color: var(--ev-text);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Hero ── */
.bav-hero {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 24px rgba(44,36,22,.22);
}
.bav-hero img { width: 100%; display: block; margin: 0; }
.bav-hero-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(44,36,22,.85));
  padding: 3rem 2rem 1.3rem;
  color: #F5E6C8;
}
.bav-hero-eyebrow {
  font-family: var(--ev-font-nav);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ev-or);
  display: block;
  margin-bottom: .4rem;
}
.bav-hero-title {
  font-family: var(--ev-font-titre);
  font-size: clamp(1.3rem, 3.5vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 .3rem;
  color: #F5E6C8;
}
.bav-hero-sub {
  font-size: .9rem;
  color: #EDD89A;
  font-style: italic;
  margin: 0;
}

/* ── Séparateur ── */
.bav-sep {
  text-align: center;
  color: var(--ev-or);
  font-size: .9rem;
  letter-spacing: .4em;
  margin: 1.8rem 0;
}

/* ── Chapeau ── */
.bav-intro {
  background: linear-gradient(135deg, var(--ev-sable), var(--ev-sable-2));
  border-left: 5px solid var(--ev-or);
  border-radius: 0 4px 4px 0;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2.2rem;
  font-size: 1.04rem;
  color: var(--ev-text-clair);
  font-style: italic;
  line-height: 1.9;
}

/* ── Titres de section ── */
.bav-h2 {
  font-family: var(--ev-font-nav);
  font-size: 1.15rem;
  color: var(--ev-pierre);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin: 2.2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--ev-or);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bav-h2-icon { color: var(--ev-or); }

/* ── Paragraphe ── */
.bav-p {
  margin: 0 0 1.2rem;
  font-size: .97rem;
  color: var(--ev-text);
  line-height: 1.85;
}

/* ── Images flottantes ── */
.bav-img-right {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 370px;
  width: 44%;
}
.bav-img-left {
  float: left;
  margin: 0 2rem 1.5rem 0;
  max-width: 370px;
  width: 44%;
}
.bav-img-right img,
.bav-img-left img {
  width: 100%;
  display: block;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(44,36,22,.18);
  margin: 0;
}
.bav-img-caption {
  font-size: .74rem;
  color: var(--ev-text-clair);
  font-style: italic;
  text-align: center;
  margin-top: .4rem;
  padding: 0 .3rem;
  line-height: 1.4;
}

/* ── Bandeau pleine largeur ── */
.bav-banner { width: 100%; border-radius: 3px; overflow: hidden; margin: 2rem 0; box-shadow: 0 4px 16px rgba(44,36,22,.15); clear: both; }
.bav-banner img { width: 100%; display: block; margin: 0; }
.bav-banner-caption {
  background: var(--ev-pierre);
  color: var(--ev-sable);
  text-align: center;
  font-size: .77rem;
  font-style: italic;
  padding: .5rem 1rem;
}

/* ── Cartes des 2 bâtiments ── */
.bav-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
  clear: both;
}
.bav-duo-card {
  background: linear-gradient(160deg, var(--ev-sable) 0%, var(--ev-sable-2) 100%);
  border: 1px solid rgba(196,151,62,.45);
  border-top: 4px solid var(--ev-or);
  border-radius: 2px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 3px 10px rgba(44,36,22,.1);
}
.bav-duo-card-title {
  font-family: var(--ev-font-nav);
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ev-or);
  margin-bottom: .6rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(196,151,62,.3);
}
.bav-duo-card p {
  font-size: .87rem;
  color: var(--ev-text-clair);
  margin: 0;
  line-height: 1.65;
}

/* ── Chiffres clés ── */
.bav-chiffres {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.8rem 0 2rem;
  clear: both;
}
.bav-chiffre-card {
  background: linear-gradient(160deg, var(--ev-sable), var(--ev-sable-2));
  border: 1px solid rgba(196,151,62,.4);
  border-top: 3px solid var(--ev-or);
  border-radius: 2px;
  padding: 1rem;
  text-align: center;
}
.bav-chiffre-nb {
  font-family: var(--ev-font-titre);
  font-size: 1.8rem;
  color: var(--ev-or);
  display: block;
  line-height: 1.1;
  margin-bottom: .3rem;
}
.bav-chiffre-label {
  font-size: .77rem;
  color: var(--ev-text-clair);
  font-style: italic;
  line-height: 1.4;
}

/* ── Encadré "Le saviez-vous" ── */
.bav-saviez {
  background: var(--ev-rouge-clair);
  border: 1px solid rgba(139,42,42,.2);
  border-left: 5px solid var(--ev-rouge);
  border-radius: 0 4px 4px 0;
  padding: 1.1rem 1.4rem;
  margin: 1.8rem 0;
  clear: both;
}
.bav-saviez-title {
  font-family: var(--ev-font-nav);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ev-rouge);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.bav-saviez p {
  font-size: .9rem;
  color: #4A1A1A;
  margin: 0;
  line-height: 1.7;
}

/* ── Citation ── */
.bav-quote {
  border-left: 4px solid var(--ev-or);
  background: linear-gradient(135deg, var(--ev-sable), var(--ev-sable-2));
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
  border-radius: 0 4px 4px 0;
  clear: both;
}
.bav-quote blockquote {
  margin: 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--ev-pierre);
  line-height: 1.8;
}
.bav-quote cite {
  display: block;
  margin-top: .6rem;
  font-size: .78rem;
  color: var(--ev-or);
  font-family: var(--ev-font-nav);
  letter-spacing: .08em;
  font-style: normal;
}

/* ── Carte des chemins royaux ── */
.bav-chemins {
  background: linear-gradient(135deg, var(--ev-sable), var(--ev-sable-2));
  border: 1px solid rgba(196,151,62,.4);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0 2rem;
  clear: both;
}
.bav-chemins-title {
  font-family: var(--ev-font-nav);
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ev-or);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bav-chemins ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem .8rem;
}
.bav-chemins li {
  font-size: .9rem;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  color: var(--ev-text);
  padding: .4rem 0;
  border-bottom: 1px dashed rgba(196,151,62,.25);
}
.bav-chemins li::before {
  content: '→';
  color: var(--ev-or);
  font-family: var(--ev-font-nav);
  flex-shrink: 0;
  font-size: .85rem;
  margin-top: .05rem;
}

/* ── Timeline ── */
.bav-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 1.5rem 0 2rem;
  clear: both;
}
.bav-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ev-or), rgba(196,151,62,.15));
}
.bav-timeline-item {
  position: relative;
  margin-bottom: 1.2rem;
}
.bav-timeline-item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: .35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ev-or);
  border: 2px solid var(--ev-sable);
  box-shadow: 0 0 0 2px var(--ev-or);
}
.bav-timeline-date {
  font-family: var(--ev-font-nav);
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--ev-or);
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.bav-timeline-text {
  font-size: .9rem;
  color: var(--ev-text);
  line-height: 1.65;
  margin: 0;
}

/* ── Pied d'article ── */
.bav-footer {
  text-align: center;
  padding: 1.5rem 0 .5rem;
  clear: both;
}
.bav-footer span {
  display: inline-block;
  font-family: var(--ev-font-nav);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ev-or);
  padding: .4rem 1.2rem;
  border-top: 1px solid rgba(196,151,62,.4);
  border-bottom: 1px solid rgba(196,151,62,.4);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .bav-img-right, .bav-img-left { float: none; width: 100%; max-width: 100%; margin: 0 0 1.2rem; }
  .bav-duo { grid-template-columns: 1fr; }
  .bav-chiffres { grid-template-columns: 1fr; }
  .bav-chemins ul { grid-template-columns: 1fr; }
  .bav-hero-title { font-size: 1.2rem; }
}


/* ══════════════════════════════════════════════════════════════
   OVERRIDE CATÉGORIE — ev-catblog-* (default.php & blog.php)
   ══════════════════════════════════════════════════════════════ */
.ev-category-blog { font-family: var(--ev-font-body); color: var(--ev-pierre-foncee); max-width: 1100px; margin: 0 auto; padding: 1.5rem 0 3rem; }
.ev-catblog-header { text-align: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(196,151,62,.35); }
.ev-catblog-title { font-family: var(--ev-font-titre); font-size: clamp(1.4rem,4vw,2rem); color: var(--ev-pierre-foncee); letter-spacing: .06em; line-height: 1.2; margin-bottom: .4rem; }
.ev-catblog-title .ev-orn { color: var(--ev-or); margin: 0 .5rem; }
.ev-catblog-sep { color: var(--ev-or); font-size: .85rem; letter-spacing: .3em; }
.ev-catblog-desc { background: linear-gradient(135deg, var(--ev-sable), var(--ev-sable-2)); border-left: 4px solid var(--ev-or); border-radius: 0 4px 4px 0; padding: .9rem 1.2rem; margin-bottom: 2rem; font-style: italic; font-size: .92rem; color: var(--ev-text-clair); line-height: 1.7; }
.ev-catblog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.ev-catblog-leading { margin-bottom: 2.5rem; }
.ev-catcard--leading { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top-width: 4px; }
.ev-catcard--leading .ev-catcard-imgwrap { border-bottom: none; border-right: 2px solid rgba(196,151,62,.3); }
.ev-catcard--leading .ev-catcard-img { height: 100%; max-height: 380px; }
.ev-catcard { background: linear-gradient(160deg, var(--ev-sable) 0%, var(--ev-sable-2) 100%); border: 1px solid rgba(196,151,62,.45); border-top: 3px solid var(--ev-or); border-radius: 2px; overflow: hidden; box-shadow: 0 3px 12px rgba(44,36,22,.11); transition: transform .25s ease, box-shadow .25s ease, border-top-color .2s; display: flex; flex-direction: column; }
.ev-catcard:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(44,36,22,.2); border-top-color: var(--ev-or-vif); }
.ev-catcard-imgwrap { display: block; overflow: hidden; border-bottom: 2px solid rgba(196,151,62,.3); flex-shrink: 0; text-decoration: none; }
.ev-catcard-img { width: 100%; height: 195px; object-fit: cover; display: block; transition: transform .35s ease; margin: 0; box-shadow: none; border-radius: 0; }
.ev-catcard:hover .ev-catcard-img { transform: scale(1.04); }
.ev-catcard-body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.ev-catcard-title { font-family: var(--ev-font-nav); font-size: clamp(.95rem,2.5vw,1.1rem); color: var(--ev-pierre-foncee); margin: 0 0 .5rem; line-height: 1.3; padding-bottom: .5rem; border-bottom: 1px solid rgba(196,151,62,.3); position: relative; }
.ev-catcard-title::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 32px; height: 2px; background: var(--ev-or); border-radius: 1px; }
.ev-catcard-title a { color: inherit; text-decoration: none; transition: color .18s; }
.ev-catcard-title a:hover { color: var(--ev-or); text-decoration: none; }
.ev-catcard-intro { font-size: .87rem; color: var(--ev-text-clair); line-height: 1.65; margin-bottom: .75rem; flex: 1; }
.ev-catcard-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: .72rem; color: var(--ev-text-muted); margin-bottom: .75rem; padding-top: .5rem; border-top: 1px dashed rgba(196,151,62,.25); }
.ev-catcard-readmore { margin-top: auto; padding-top: .5rem; }
.ev-btn-medieval { display: inline-block; padding: .42rem 1rem; background: transparent; border: 1px solid var(--ev-or); border-radius: 2px; font-family: var(--ev-font-nav); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ev-pierre-foncee); text-decoration: none; transition: all .2s ease; }
.ev-btn-medieval:hover { background: var(--ev-or); color: var(--ev-pierre-foncee); text-decoration: none; border-color: var(--ev-or); }
.ev-catblog-links { background: linear-gradient(135deg, var(--ev-sable), var(--ev-sable-2)); border: 1px solid rgba(196,151,62,.4); border-left: 4px solid var(--ev-or); border-radius: 0 4px 4px 0; padding: 1rem 1.25rem; margin-bottom: 2rem; }
.ev-catblog-links-title { font-family: var(--ev-font-nav); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ev-or); margin-bottom: .75rem; }
.ev-catblog-links ul { list-style: none; padding: 0; margin: 0; }
.ev-catblog-links li { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px dashed rgba(196,151,62,.2); font-size: .88rem; }
.ev-catblog-links li:last-child { border-bottom: none; }
.ev-catblog-links-dot { color: var(--ev-or); font-size: 1rem; flex-shrink: 0; }
.ev-catblog-links a { color: var(--ev-pierre-foncee); text-decoration: none; transition: color .18s; }
.ev-catblog-links a:hover { color: var(--ev-or); }
.ev-catblog-pagination { display: flex; justify-content: center; gap: 5px; flex-wrap: wrap; margin-top: 2rem; }
.ev-catblog-pagination a, .ev-catblog-pagination span { display: inline-block; padding: 6px 13px; background: linear-gradient(135deg, var(--ev-sable), var(--ev-sable-2)); border: 1px solid rgba(196,151,62,.5); border-radius: 2px; color: var(--ev-pierre-foncee); font-family: var(--ev-font-nav); font-size: .78rem; text-decoration: none; transition: all .18s; }
.ev-catblog-pagination a:hover { background: var(--ev-or); color: var(--ev-pierre-foncee); text-decoration: none; }
.ev-catblog-pagination .active, .ev-catblog-pagination .current { background: var(--ev-pierre-foncee); border-color: var(--ev-or); color: var(--ev-or); }
.ev-catblog-empty { text-align: center; color: var(--ev-text-clair); font-style: italic; padding: 2rem; }
.ev-catblog-filterbar { margin-bottom: 1.5rem; }
.ev-filter-input { padding: .45rem .9rem; border: 1px solid rgba(196,151,62,.5); border-radius: 2px; font-family: var(--ev-font-body); font-size: .88rem; background: var(--ev-sable); color: var(--ev-text); }
.ev-filter-btn { padding: .45rem 1rem; background: var(--ev-or); border: none; border-radius: 2px; font-family: var(--ev-font-nav); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ev-pierre); cursor: pointer; transition: background .18s; margin-left: .3rem; }
.ev-filter-btn:hover { background: var(--ev-or-vif); }
.ev-filter-reset { padding: .45rem 1rem; background: transparent; border: 1px solid rgba(196,151,62,.5); border-radius: 2px; font-family: var(--ev-font-nav); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ev-text-clair); cursor: pointer; transition: all .18s; margin-left: .3rem; }
.ev-filter-reset:hover { background: var(--ev-sable-2); border-color: var(--ev-or); }

/* Responsive catégorie */
@media (max-width: 640px) {
  .ev-catblog-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .ev-catcard--leading { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .ev-catblog-grid { grid-template-columns: repeat(2, 1fr); }
}
