/* =========================================================
   Eczéma Essentiel — Design system Corporate Pharma Recherche
   Prefix custom: ece-
   ========================================================= */

:root {
  --ece-primary: #264a64;
  --ece-primary-dark: #1a3349;
  --ece-accent: #3CB6A0;
  --ece-accent-dark: #2f9785;
  --ece-text: #1f2d3d;
  --ece-text-soft: #5A7085;
  --ece-bg: #ffffff;
  --ece-surface: #f5f8fb;
  --ece-surface-2: #eef3f8;
  --ece-line: #dde4ea;
  --ece-line-strong: #c4d0db;
  --ece-shadow-sm: 0 2px 8px rgba(38, 74, 100, 0.06);
  --ece-shadow-md: 0 8px 24px rgba(38, 74, 100, 0.10);
  --ece-shadow-lg: 0 16px 40px rgba(38, 74, 100, 0.14);
  --ece-radius-sm: 6px;
  --ece-radius-md: 10px;
  --ece-radius-lg: 16px;
  --ece-radius-pill: 999px;
  --ece-font-h: 'Roboto Slab', Georgia, serif;
  --ece-font-b: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ece-container: 1180px;
  --ece-gutter: clamp(1rem, 3vw, 2rem);
}

/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ece-body {
  margin: 0;
  background: var(--ece-bg);
  color: var(--ece-text);
  font-family: var(--ece-font-b);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main, .ece-main { padding-top: 0 !important; margin-top: 0 !important; }

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--ece-primary);
  text-decoration-color: rgba(38, 74, 100, 0.35);
  text-underline-offset: 3px;
}
a:hover { color: var(--ece-accent-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--ece-font-h);
  color: var(--ece-primary);
  line-height: 1.25;
  margin-top: 0;
}
h1 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1rem; }

.ece-container {
  width: 100%;
  max-width: var(--ece-container);
  margin-inline: auto;
  padding-inline: var(--ece-gutter);
}

/* ----- Buttons ----- */
.ece-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: var(--ece-radius-md);
  font-family: var(--ece-font-b);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.ece-btn--primary {
  background: var(--ece-primary);
  color: #fff;
}
.ece-btn--primary:hover { background: var(--ece-primary-dark); color: #fff; }
.ece-btn--accent {
  background: var(--ece-accent);
  color: #fff;
}
.ece-btn--accent:hover { background: var(--ece-accent-dark); color: #fff; }
.ece-btn--ghost {
  background: transparent;
  color: var(--ece-primary);
  border: 1.5px solid var(--ece-primary);
}
.ece-btn--ghost:hover { background: var(--ece-primary); color: #fff; }

/* CTA animation: slide_fill_button */
.ece-btn--cta {
  background: var(--ece-accent);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s ease;
}
.ece-btn--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--ece-primary);
  transition: width .35s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}
.ece-btn--cta:hover { color: #fff; }
.ece-btn--cta:hover::before { width: 100%; }
.ece-btn--cta:focus-visible {
  outline: 3px solid var(--ece-accent);
  outline-offset: 3px;
}

/* ----- Skip link ----- */
.ece-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ece-primary);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 8px 0;
  z-index: 10001;
}
.ece-skip:focus { left: 0; }

/* =========================================================
   HEADER — sticky-minimal
   ========================================================= */
.ece-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--ece-line);
  transition: box-shadow .3s ease;
}
.ece-header.is-scrolled { box-shadow: var(--ece-shadow-sm); }

.ece-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
  padding-block: .6rem;
}

.ece-brand-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--ece-primary);
  flex-shrink: 0;
}
.ece-brand-logo {
  display: block;
  width: auto;
}
.ece-brand-name {
  font-family: var(--ece-font-h);
  font-weight: 700;
  font-size: 1.25rem;
  /* Title Case styling — no transform */
  letter-spacing: 0;
  white-space: nowrap;
}

/* Desktop nav */
.ece-nav-desktop { display: none; }
.ece-nav-desktop-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.4rem;
  align-items: center;
}
.ece-nav-desktop-list li { margin: 0; }
.ece-nav-desktop-list a {
  color: var(--ece-text);
  text-decoration: none;
  font-weight: 500;
  font-size: .96rem;
  padding: .35rem .15rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.ece-nav-desktop-list a:hover,
.ece-nav-desktop-list .current-menu-item > a,
.ece-nav-desktop-list .current-cat > a {
  color: var(--ece-primary);
  border-bottom-color: var(--ece-accent);
}

/* Burger */
.ece-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.95);
  border: 1.5px solid var(--ece-line-strong);
  border-radius: 8px;
  color: var(--ece-primary);
  cursor: pointer;
  z-index: 10000;
  flex-shrink: 0;
  position: relative;
}
.ece-burger:focus-visible { outline: 2px solid var(--ece-accent); outline-offset: 2px; }
.ece-burger-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
  height: 16px;
  justify-content: center;
}
.ece-burger-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.ece-burger.is-open .ece-burger-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ece-burger.is-open .ece-burger-bars span:nth-child(2) { opacity: 0; }
.ece-burger.is-open .ece-burger-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.ece-burger-label { display: none; }

/* Mobile drawer */
.ece-nav { display: none; }

@media (max-width: 1023px) {
  .ece-nav-mobile,
  .ece-nav {
    display: none;
  }
  .ece-nav-mobile.is-open,
  .ece-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 86%;
    max-width: 380px;
    background: #ffffff;
    padding: 4.5rem 1.5rem 2rem;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  }
  .ece-nav-mobile-list,
  .ece-nav.is-open ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .ece-nav-mobile-list li,
  .ece-nav.is-open li {
    border-bottom: 1px solid var(--ece-line);
  }
  .ece-nav-mobile-list a,
  .ece-nav.is-open a {
    display: block;
    padding: 1rem .5rem;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
  }
  .ece-nav-mobile-list a:hover,
  .ece-nav.is-open a:hover { color: var(--ece-primary); }

  .ece-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 45, 0.45);
    z-index: 9998;
  }
  .ece-drawer-overlay.is-open { display: block; }

  .ece-drawer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--ece-surface);
    border: 1px solid var(--ece-line);
    border-radius: 50%;
    color: var(--ece-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
  }

  .ece-drawer-cta {
    display: block;
    margin: 1.8rem .25rem 0 !important;
    padding: 1rem 1.5rem !important;
    text-align: center;
    background: var(--ece-accent) !important;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .ece-burger,
  .ece-nav-mobile,
  .ece-nav { display: none !important; }
  .ece-nav-desktop {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 0 1.5rem;
  }
  .ece-drawer-overlay,
  .ece-drawer-cta { display: none !important; }
  .ece-header-cta-desktop { display: inline-flex; }
}

/* =========================================================
   HERO — magazine-cover
   ========================================================= */
.ece-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 60vh, 580px);
  display: flex;
  align-items: stretch;
  background: var(--ece-surface);
}

.ece-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.ece-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  padding-block: clamp(3rem, 8vw, 5rem);
}

.ece-hero-cover {
  background: #ffffff;
  border-radius: var(--ece-radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.6rem);
  max-width: 660px;
  box-shadow: var(--ece-shadow-lg);
  border-left: 5px solid var(--ece-accent);
}
.ece-hero-eyebrow {
  display: inline-block;
  font-family: var(--ece-font-b);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ece-accent-dark);
  background: rgba(60, 182, 160, 0.12);
  padding: .3rem .75rem;
  border-radius: var(--ece-radius-pill);
  margin-bottom: 1rem;
}
.ece-hero-title {
  font-family: var(--ece-font-h);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--ece-primary);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.ece-hero-subtitle {
  font-size: 1.1rem;
  color: var(--ece-text);
  margin-bottom: 1.6rem;
  line-height: 1.55;
}
.ece-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

/* =========================================================
   EDITORIAL BLOCK (after-hero, 400-700 words)
   ========================================================= */
.ece-editorial {
  background: var(--ece-bg);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.ece-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 900px) {
  .ece-editorial-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: start;
  }
}
.ece-editorial-main h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 1.25rem;
  border-bottom: 3px solid var(--ece-accent);
  padding-bottom: .5rem;
  display: inline-block;
}
.ece-editorial-main h3 {
  margin-top: 1.8rem;
  color: var(--ece-primary);
}
.ece-editorial-main p {
  margin-bottom: 1.1rem;
  color: var(--ece-text);
}
.ece-editorial-aside {
  background: var(--ece-surface);
  border-left: 4px solid var(--ece-accent);
  padding: 1.5rem 1.6rem;
  border-radius: 0 var(--ece-radius-md) var(--ece-radius-md) 0;
  position: sticky;
  top: 90px;
}
.ece-editorial-aside h3 {
  font-size: 1.15rem;
  margin: 0 0 .8rem;
  color: var(--ece-primary);
}
.ece-editorial-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ece-editorial-aside li {
  padding: .55rem 0;
  border-bottom: 1px dashed var(--ece-line);
  font-size: .95rem;
}
.ece-editorial-aside li:last-child { border-bottom: none; }

/* =========================================================
   CATEGORIES grid
   ========================================================= */
.ece-categories {
  background: var(--ece-surface);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.ece-categories-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.ece-categories-head h2 {
  margin-bottom: .5rem;
}
.ece-categories-head p {
  color: var(--ece-text-soft);
  max-width: 640px;
  margin: 0 auto;
}
.ece-categories-grid {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.ece-cat-card {
  background: #fff;
  border: 1px solid var(--ece-line);
  border-radius: var(--ece-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--ece-text);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ece-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ece-shadow-md);
  border-color: var(--ece-accent);
}
.ece-cat-card-img {
  display: block;
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--ece-primary);
}
.ece-cat-card-body {
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.ece-cat-card-name {
  font-family: var(--ece-font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ece-primary);
  margin: 0;
}
.ece-cat-card-desc {
  color: var(--ece-text-soft);
  font-size: .92rem;
  line-height: 1.5;
  margin: 0;
}
.ece-cat-card-arrow {
  margin-top: auto;
  color: var(--ece-accent-dark);
  font-weight: 600;
  font-size: .9rem;
}

/* =========================================================
   LATEST ARTICLES grid
   ========================================================= */
.ece-latest {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: var(--ece-bg);
}
.ece-latest-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.ece-latest-head h2 { margin: 0; }
.ece-latest-head p { margin: .4rem 0 0; color: var(--ece-text-soft); max-width: 520px; }
.ece-latest-grid {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
@media (min-width: 1100px) {
  .ece-latest-grid { grid-template-columns: repeat(3, 1fr); }
}
.ece-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ece-line);
  border-radius: var(--ece-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ece-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ece-shadow-md);
  border-color: var(--ece-accent);
}
.ece-card-thumb {
  aspect-ratio: 16 / 10;
  background: var(--ece-surface-2);
  overflow: hidden;
}
.ece-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ece-card:hover .ece-card-thumb img { transform: scale(1.05); }
.ece-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.ece-card-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ece-accent-dark);
}
.ece-card-title {
  font-family: var(--ece-font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ece-primary);
  margin: 0;
  line-height: 1.3;
}
.ece-card-excerpt {
  font-size: .94rem;
  color: var(--ece-text-soft);
  line-height: 1.55;
  margin: 0;
}
.ece-card-meta {
  font-size: .82rem;
  color: var(--ece-text-soft);
  display: flex;
  gap: .65rem;
  margin-top: .3rem;
}
.ece-card-meta time { font-weight: 500; }

.ece-empty {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--ece-text-soft);
  background: var(--ece-surface);
  border-radius: var(--ece-radius-md);
  border: 1px dashed var(--ece-line);
}

/* =========================================================
   CATEGORY PAGE
   ========================================================= */
.ece-cat-hero {
  position: relative;
  height: 320px;
  max-height: 350px;
  overflow: hidden;
  background: var(--ece-primary);
}
.ece-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.ece-cat-hero .ece-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
  background: linear-gradient(180deg, transparent 30%, rgba(15,30,45,0.75) 100%);
}
.ece-cat-hero h1 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}
.ece-cat-hero-crumb {
  color: #fff;
  font-size: .85rem;
  opacity: .9;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: .5rem;
}
.ece-cat-hero-crumb a { color: #fff; }

.ece-cat-list {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.ece-cat-list-grid {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.ece-cat-desc {
  background: var(--ece-surface);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--ece-line);
}
.ece-cat-desc-inner {
  max-width: 820px;
  margin-inline: auto;
}
.ece-cat-desc-inner h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--ece-accent);
  padding-bottom: .4rem;
  display: inline-block;
}

/* =========================================================
   PAGE / TOOL templates
   ========================================================= */
.ece-page {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.ece-page-header {
  text-align: center;
  margin-bottom: 2.2rem;
}
.ece-page-content {
  max-width: 820px;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.ece-page-content h2 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}
.ece-page-content h3 {
  margin-top: 1.6rem;
  margin-bottom: .75rem;
}
.ece-page-content img,
.ece-persona-photo {
  max-width: 280px;
  border-radius: var(--ece-radius-md);
  margin: 1.5rem 0;
  box-shadow: var(--ece-shadow-md);
}

.d47-contact-form,
.ece-contact-form {
  max-width: 820px;
  margin: 2rem auto;
  background: #fff;
  border: 1px solid var(--ece-line);
  border-radius: var(--ece-radius-md);
  padding: 1.5rem;
  overflow: hidden;
}

.ece-tool-page {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.ece-tool-intro {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.ece-tool-intro h1 {
  margin-bottom: .9rem;
}
.ece-tool-intro p {
  color: var(--ece-text-soft);
  font-size: 1.05rem;
}
.ece-tool-host {
  max-width: 820px;
  margin: 0 auto 2.5rem;
}
.ece-tool-faq {
  max-width: 820px;
  margin: 2.5rem auto 0;
}
.ece-tool-faq h2 {
  margin-bottom: 1.2rem;
  text-align: center;
}

/* FAQ accordion (animation CTR) */
.ece-faq {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.ece-faq details {
  background: var(--ece-surface);
  border: 1px solid var(--ece-line);
  border-radius: var(--ece-radius-md);
  overflow: hidden;
}
.ece-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1.25rem;
  position: relative;
  font-weight: 600;
  color: var(--ece-primary);
  font-family: var(--ece-font-h);
}
.ece-faq summary::-webkit-details-marker { display: none; }
.ece-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ece-accent);
  transition: transform .3s ease;
}
.ece-faq details[open] summary::after { content: "\2212"; }
.ece-faq details[open] summary { background: #fff; }
.ece-faq .ece-faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--ece-text);
  line-height: 1.6;
  animation: eceFaqIn .3s ease;
}
@keyframes eceFaqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* =========================================================
   FOOTER — lab_columns
   ========================================================= */
.ece-footer {
  background: var(--ece-primary);
  color: #d9e3eb;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}
.ece-footer a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.ece-footer a:hover { color: var(--ece-accent); border-bottom-color: var(--ece-accent); }
.ece-footer-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .ece-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.ece-footer-col h3,
.ece-footer-title {
  font-family: var(--ece-font-h);
  font-size: 1.05rem;
  color: #ffffff;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.ece-footer-logo {
  width: 130px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
}
.ece-footer-brand-pitch {
  margin: 0 0 1rem;
  color: #d9e3eb;
  line-height: 1.55;
  font-size: .95rem;
}
.ece-footer-brand-cta {
  display: inline-block;
  margin-top: .25rem;
  padding: .6rem 1.1rem;
  background: var(--ece-accent);
  color: #fff !important;
  border-radius: var(--ece-radius-md);
  border: none !important;
  font-weight: 600;
}
.ece-footer-brand-cta:hover {
  background: var(--ece-accent-dark);
  color: #fff !important;
}
.ece-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.ece-footer-links a {
  color: #d9e3eb;
  border-bottom: none;
  font-size: .95rem;
}
.ece-footer-links a:hover { color: var(--ece-accent); }

.ece-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .88rem;
  color: #b6c3cd;
}
.ece-footer-bottom a { color: #d9e3eb; border-bottom: none; }
.ece-footer-social {
  display: flex;
  gap: .6rem;
}
.ece-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  border-bottom: none;
}
.ece-footer-social a:hover {
  background: var(--ece-accent);
  color: #fff;
}
.ece-footer-social svg { width: 16px; height: 16px; }

/* =========================================================
   Misc
   ========================================================= */
.ece-section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ece-accent-dark);
  background: rgba(60, 182, 160, 0.12);
  padding: .3rem .7rem;
  border-radius: var(--ece-radius-pill);
  font-weight: 700;
  margin-bottom: .9rem;
}
.ece-divider {
  border: none;
  border-top: 1px solid var(--ece-line);
  margin: 2.5rem 0;
}

.ece-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
  margin-top: 2.5rem;
}
.ece-pagination a,
.ece-pagination span {
  padding: .5rem .9rem;
  background: var(--ece-surface);
  border-radius: var(--ece-radius-sm);
  color: var(--ece-primary);
  text-decoration: none;
  border: 1px solid var(--ece-line);
}
.ece-pagination .current {
  background: var(--ece-primary);
  color: #fff;
  border-color: var(--ece-primary);
}

/* Single post */
.ece-single { padding-block: clamp(2.5rem, 5vw, 4rem); }
.ece-single-header { max-width: 820px; margin: 0 auto 2rem; text-align: center; }
.ece-single-thumb {
  max-width: 980px;
  margin: 0 auto 2rem;
  border-radius: var(--ece-radius-md);
  overflow: hidden;
}
.ece-single-thumb img { width: 100%; height: auto; }
.ece-single-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.ece-single-content h2 { margin-top: 2rem; }
.ece-single-content h3 { margin-top: 1.5rem; }
.ece-single-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--ece-accent);
  background: var(--ece-surface);
  color: var(--ece-primary);
  font-style: italic;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 700px) {
  body.ece-body { font-size: 16px; }
  .ece-hero { min-height: 360px; }
  .ece-hero-cover { padding: 1.3rem; }
  .ece-editorial-aside { position: static; }
  .ece-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


/* === RP AGNOSTIC ANTI-FOOTPRINT FIXES === */
/* Auto-append par child_theme_builder pour garantir les regles anti-empreinte (cat-hero, burger, footer, etc.) meme quand Claude override le style.css custom. */
body section[class*="cat-hero"], body div[class*="cat-hero"] {
  position: relative !important;
  width: 100% !important; max-width: 100% !important;
  margin-left: 0 !important; margin-right: 0 !important;
  left: 0 !important; right: 0 !important;
  height: 360px !important; min-height: 360px !important; max-height: 360px !important;
  padding: 0 !important; overflow: hidden !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important;
  border: none !important; box-shadow: none !important; outline: none !important;
  box-sizing: border-box !important;
}
/* Aussi force le parent <main> a etre full-width pour eviter cap a 1024 */
body main, body [class*="lda-main"], body [class*="bdf-main"], body [class*="d47-main"], body #content {
  width: 100% !important; max-width: 100% !important;
  margin-left: 0 !important; margin-right: 0 !important;
}
body [class*="cat-hero"] > img, body [class*="cat-hero-bg"], body [class*="cat-hero"] img {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  max-height: 360px !important;
  object-fit: cover !important; z-index: 0 !important;
  border: none !important;
}
body [class*="cat-hero"]::before, body [class*="cat-hero"]::after {
  content: none !important; display: none !important;
}
/* Overlay : absolute par-dessus l'image, juste pour le gradient sombre (fix 2026-06-17) */
body [class*="cat-hero-overlay"], body [class*="cat-hero"] > [class*="overlay"] {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  margin: 0 !important; padding: 0 !important;
  max-width: none !important;
  display: block !important;
  z-index: 1 !important;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%) !important;
  pointer-events: none !important;
  border: none !important;
}
/* Container / inner du titre : centré au-dessus de l'overlay (z-index 2) */
body [class*="cat-hero"] > [class*="container"],
body [class*="cat-hero"] > [class*="cat-hero-inner"],
body [class*="cat-hero"] > [class*="hero-inner"]:not([class*="overlay"]),
body [class*="cat-hero"] > div:not([class*="overlay"]):not([class*="-bg"]) {
  position: relative !important; z-index: 2 !important;
  text-align: center !important;
  max-width: 900px !important; margin: 0 auto !important;
  padding: 1.5rem 2rem !important;
  border: none !important; background: transparent !important;
}
body [class*="cat-hero"] h1 {
  color: #ffffff !important;
  font-size: clamp(2.4rem, 6vw, 4rem) !important;
  text-align: center !important;
  margin: 0 !important; font-weight: 800 !important;
  text-shadow: 0 3px 12px rgba(0,0,0,.85), 0 0 30px rgba(0,0,0,.5) !important;
  border: none !important; display: block !important;
}
body [class*="cat-hero"] [class*="breadcrumb"],
body [class*="cat-hero"] nav[aria-label*="riane"],
body [class*="cat-hero"] nav[aria-label*="readcrumb"] {
  display: none !important;
}


/* [2026-06-17] PERSONA PHOTO — Force taille raisonnable.
   Sans contrainte, l'image 1024x1024 (Codex output) s'affiche en grand
   sur la page "À propos". On force max 280px avec auto height.
*/
body [class*="persona-photo"], body img[class*="persona"], body [class*="-persona"] img {
  max-width: 280px !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 50% !important;
  display: block !important;
  margin: 0 auto !important;
}
@media (min-width: 768px) {
  body [class*="persona-photo"], body img[class*="persona"], body [class*="-persona"] img {
    max-width: 320px !important;
  }
}

/* [2026-06-17] BURGER MOBILE — Garantit l'affichage en mobile.
   Le CSS Claude met souvent display:none par defaut + media query qui
   n'est pas garantie. Force agnostique : tout selecteur contenant "burger"
   visible en mobile, invisible en desktop. Couvre tous prefixes
   (.d47-, .bdf-, .lda-, etc.) via [class*="burger"].
*/
@media (max-width: 1023px) {
  body [class*="burger"], body button[class*="burger"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 42px !important;
    min-height: 42px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 100 !important;
  }
}
@media (min-width: 1024px) {
  body [class*="burger"], body button[class*="burger"] {
    display: none !important;
  }
}

/* [2026-06-17] BURGER PARENT FIX : si un wrapper du header contient un
   burger, force-le visible en mobile. Claude met parfois le burger DANS un
   wrapper "cta-wrap" qui est display:none en mobile -> burger invisible.
*/
/* [2026-06-17] FOOTER COLOR HERITAGE — Force le footer ENTIER à hériter
   de la couleur du body. Claude définit parfois color:var(--bg) sur le footer
   (utile si bg sombre, illisible si bg clair). On force color:inherit → texte
   reste lisible peu importe le bg footer.
*/
body footer, body [class*="footer"]:not([class*="logo"]):not([class*="brand-logo"]) {
  color: inherit !important;
}

/* [2026-06-17] FOOTER LINKS HERITAGE — Force les liens à hériter du texte.
   Claude définit parfois color: var(--bg) sur les liens footer (utile si bg
   sombre, mais illisible si bg clair). On force color:inherit qui suit le
   texte parent → toujours lisible. underline pour distinguer du texte normal.
*/
body footer ul li a, body footer ol li a,
body [class*="footer"] ul li a:not([class*="btn"]):not([class*="cta"]),
body footer [class*="link"]:not([class*="brand"]):not([class*="btn"]) {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 1px !important;
  text-decoration-color: currentColor !important;
  opacity: 0.85 !important;
  transition: opacity .2s ease !important;
}
body footer ul li a:hover, body footer ol li a:hover,
body [class*="footer"] ul li a:hover {
  opacity: 1 !important;
  text-decoration-thickness: 2px !important;
}

/* [2026-06-17] BURGER STYLE — 3 barres visibles + hover/animation.
   Le bouton burger Claude est souvent un <button> avec 3 <span> dedans qui
   représentent les barres, mais sans CSS la cible est un carré vide.
   Force ici un style propre, agnostique au prefixe.
*/
body [class*="burger"] {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 6px;
  cursor: pointer !important;
  padding: 8px;
  color: inherit;
  transition: background .2s ease, border-color .2s ease !important;
}
body [class*="burger"]:hover, body [class*="burger"]:focus-visible {
  background: rgba(0,0,0,0.06);
  border-color: var(--d47-accent, currentColor);
}
/* Container des 3 barres (peut s'appeler "bars", "lines", etc.) */
body [class*="burger"] > [class*="bar"],
body [class*="burger"] > [class*="line"],
body [class*="burger"] > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 16px;
  gap: 0;
}
/* Les 3 barres elles-mêmes */
body [class*="burger"] [class*="bar"] > span,
body [class*="burger"] [class*="line"] > span,
body [class*="burger"] > span > span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  margin: 2px 0;
  transition: transform .25s ease, opacity .25s ease !important;
}
/* Etat ouvert : transforme en X */
body [class*="burger"][aria-expanded="true"] [class*="bar"] > span:nth-child(1),
body [class*="burger"][aria-expanded="true"] [class*="line"] > span:nth-child(1),
body [class*="burger"][aria-expanded="true"] > span > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg) !important;
}
body [class*="burger"][aria-expanded="true"] [class*="bar"] > span:nth-child(2),
body [class*="burger"][aria-expanded="true"] [class*="line"] > span:nth-child(2),
body [class*="burger"][aria-expanded="true"] > span > span:nth-child(2) {
  opacity: 0 !important;
}
body [class*="burger"][aria-expanded="true"] [class*="bar"] > span:nth-child(3),
body [class*="burger"][aria-expanded="true"] [class*="line"] > span:nth-child(3),
body [class*="burger"][aria-expanded="true"] > span > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg) !important;
}

@media (max-width: 1023px) {
  body header [class*="cta-wrap"]:has([class*="burger"]),
  body header > div:has([class*="burger"]),
  body [class*="header"] [class*="-wrap"]:has([class*="burger"]),
  body [class*="header-inner"] > div:has([class*="burger"]) {
    display: flex;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* [2026-06-19] FIX contraste boutons (anti bouton invisible) */
html body a[class*="btn--primary"], html body button[class*="btn--primary"],
html body a[class*="btn-primary"], html body button[class*="btn-primary"],
html body a[class*="-cta"]:not([class*="ghost"]):not([class*="link"]),
html body button[class*="-cta"]:not([class*="ghost"]):not([class*="link"]) {
  color: #ffffff !important;
}
html body a[class*="btn--ghost"], html body button[class*="btn--ghost"],
html body a[class*="btn--secondary"], html body button[class*="btn--secondary"],
html body a[class*="btn-secondary"], html body button[class*="btn-secondary"] {
  color: var(--d47-text, #1a1a1a) !important;
}

/* [2026-06-19] PERSONA shape variation seedee : round (50%) */
html body img[class*="persona"],
html body img[class*="author"],
html body img[class*="author-photo"],
html body img[class*="persona-photo"],
html body img[class*="redaction"],
html body img[class*="about-photo"],
html body img[class*="team-photo"],
html body img[class*="profile"],
html body [class*="persona"] > img,
html body [class*="author"] > img:not([class*="logo"]),
html body [class*="about"] img:not([class*="logo"]):not([class*="brand"]) {
  border-radius: 50% !important;
}

/* Validator: cap hauteur hero cat v2 */
body section[class*="cat-hero"], body div[class*="cat-hero"], body section[class*="category-hero"], body div[class*="category-hero"] { position: relative !important; height: 320px !important; max-height: 320px !important; min-height: 200px !important; padding: 0 !important; overflow: hidden !important; display: flex !important; align-items: center !important; border: none !important; box-shadow: none !important; }
body [class*="cat-hero"] > img, body [class*="cat-hero-bg"], body [class*="cat-hero"] img, body [class*="category-hero"] img { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; max-height: 320px !important; object-fit: cover !important; z-index: 0 !important; border: none !important; }
body [class*="cat-hero"] > [class*="container"], body [class*="cat-hero"] > [class*="wrap"], body [class*="cat-hero"] > [class*="inner"], body [class*="cat-hero"] > div { position: relative !important; z-index: 2 !important; max-width: 900px !important; margin: 0 auto !important; padding: 1.5rem 2rem !important; background: transparent !important; }
body [class*="cat-hero"] h1, body [class*="category-hero"] h1 { color: #ffffff !important; font-size: clamp(2rem, 5vw, 3.5rem) !important; margin: 0 !important; font-weight: 800 !important; text-shadow: 0 3px 12px rgba(0,0,0,.85), 0 0 30px rgba(0,0,0,.5) !important; }
body [class*="cat-hero"][style*="background-image"] { background-size: cover !important; background-position: center !important; }
body [class*="cat-hero"] [class*="breadcrumb"], body [class*="cat-hero"] nav[aria-label*="riane"], body [class*="cat-hero"] nav[aria-label*="readcrumb"] { display: none !important; }

/* Validator: nav-mobile drawer hidden by default v2 */
/* Drawer/burger menu mobile : hidden par defaut, visible mobile+is-open */
[class*="-nav-mobile"]:not(.is-open), [id*="-nav-mobile"]:not(.is-open), [class*="-drawer"]:not(.is-open), [class*="-burger-menu"]:not(.is-open), [class*="-mobile-menu"]:not(.is-open) { display: none !important; }
@media (max-width: 980px) {
  [class*="-nav-mobile"].is-open, [id*="-nav-mobile"].is-open, [class*="-drawer"].is-open, [class*="-burger-menu"].is-open, [class*="-mobile-menu"].is-open { display: flex !important; flex-direction: column !important; position: fixed !important; top: 0 !important; right: 0 !important; bottom: 0 !important; width: 86% !important; max-width: 380px !important; background: #fff !important; padding: 4.5rem 1.5rem 2rem !important; z-index: 9999 !important; overflow-y: auto !important; box-shadow: -10px 0 30px rgba(0,0,0,0.3) !important; }
}

/* Validator: drawer-mobile height fix v1 */
/* Force height:100vh sur le drawer ouvert : top:0;bottom:0 sans !important peut etre overrides par Claude → on impose 100vh. */
/* [2026-06-06] Broadening : ajout patterns supplementaires (X-nav sans 'mobile', X-side, X-menu-drawer, etc.) sinon le validator manque les sites comme artois-moto.com qui utilise fe8-nav (sans 'mobile' dans le nom). */
@media (max-width: 1023px) {
  [class*="-nav-mobile"].is-open, [id*="-nav-mobile"].is-open, [class*="-drawer"].is-open, [class*="-burger-menu"].is-open, [class*="-mobile-menu"].is-open, [class*="-side-nav"].is-open, [class*="-side-menu"].is-open, [class*="-offcanvas"].is-open, nav[aria-label*="mobile" i].is-open, nav[aria-label*="Menu mobile" i].is-open, nav[id*="nav"].is-open[class*="-nav"]:not([class*="desktop"]) { height: 100vh !important; min-height: 100vh !important; max-height: 100vh !important; }
}

/* Validator: footer logo no-filter v1 */
footer img, [class*="-footer"] img, [role="contentinfo"] img, footer [class*="logo"], [class*="-footer"] [class*="logo"] { filter: none !important; mix-blend-mode: normal !important; opacity: 1 !important; }
footer[class*="dark"] img, footer[class*="black"] img, [class*="-footer"][class*="dark"] img, [class*="-footer"][class*="black"] img { filter: brightness(0) invert(1) !important; }

/* Validator: header-hero gap fix v1 */
/* Bug recurrent : <main class="X-main"> a padding-top:30px qui creait un
 * gap entre header sticky et hero/cat-hero. Force padding-top:0 sur le
 * wrapper <main> + margin-top:0 sur le 1er hero enfant. */
body > main, body > [role="main"], main[class*="-main"], [id="main"] { padding-top: 0 !important; }
main > [class*="-hero"]:first-child, main > [class*="-cat-hero"]:first-child, main > [class*="-category-hero"]:first-child { margin-top: 0 !important; }
/* Fallback : si sibling direct du header */
header + section, header + [class*="-hero"], header + [class*="-cat-hero"], header + [class*="-category-hero"], [class*="-header"] + section, [class*="-header"] + [class*="-hero"], [class*="-header"] + [class*="-cat-hero"], [class*="-header"] + [class*="-category-hero"] { margin-top: 0 !important; padding-top: 0 !important; }
section[class*="-hero"]:first-of-type, section[class*="-cat-hero"]:first-of-type, section[class*="-category-hero"]:first-of-type { margin-top: 0 !important; }

/* Validator: contraste lisible header+menu-mobile+footer v2 */
[class*="-nav-mobile"], [id*="-nav-mobile"], [class*="-drawer"], [class*="-burger-menu"], [class*="-mobile-menu"], [class*="-side-nav"] { background: #ffffff !important; }
[class*="-nav-mobile"] *, [id*="-nav-mobile"] *, [class*="-drawer"] *, [class*="-burger-menu"] *, [class*="-mobile-menu"] *, [class*="-side-nav"] * { color: #0a0a0a !important; }
[class*="-nav-mobile"] a, [id*="-nav-mobile"] a, [class*="-drawer"] a, [class*="-burger-menu"] a, [class*="-mobile-menu"] a { color: #0a0a0a !important; font-weight: 600 !important; }
[class*="-nav-mobile"] a:hover, [class*="-drawer"] a:hover, [class*="-burger-menu"] a:hover, [class*="-mobile-menu"] a:hover { color: #000 !important; opacity: 0.7 !important; }
footer *, [class*="-footer"] *, [role="contentinfo"] * { color: #1a1a1a !important; }
footer a, [class*="-footer"] a, [role="contentinfo"] a { color: #1a1a1a !important; text-decoration: underline !important; text-decoration-color: currentColor !important; text-underline-offset: 3px !important; font-weight: 600 !important; }
footer a:hover, [class*="-footer"] a:hover, [role="contentinfo"] a:hover { color: #000 !important; opacity: 1 !important; }
footer h1, footer h2, footer h3, footer h4, footer h5, [class*="-footer"] h1, [class*="-footer"] h2, [class*="-footer"] h3, [class*="-footer"] h4, [class*="-footer"] h5 { color: #0a0a0a !important; font-weight: 700 !important; }
footer p, footer span, footer li, [class*="-footer"] p, [class*="-footer"] span, [class*="-footer"] li { color: #2a2a2a !important; }
footer[class*="dark"] *, footer[class*="black"] *, [class*="-footer"][class*="dark"] *, [class*="-footer"][class*="black"] *, footer[style*="background:#0"] *, footer[style*="background: #0"] *, footer[style*="background:#1"] *, footer[style*="background: #1"] *, footer[style*="background:#2"] *, footer[style*="background: #2"] * { color: #f5f5f5 !important; }
footer[class*="dark"] a, [class*="-footer"][class*="dark"] a, footer[style*="background:#0"] a, footer[style*="background:#1"] a { color: #ffffff !important; }
header a, [class*="-header"] a, [role="banner"] a { text-shadow: none !important; }
header a:hover, [class*="-header"] a:hover { opacity: 0.7 !important; }
[class*="-nav-mobile"] [class*="-btn"], [class*="-footer"] [class*="-btn"] { border: 1.5px solid currentColor !important; }

/* Validator: burger button always visible+clickable v2 */
/* === Burger button : VISIBLE + CLIQUABLE garanti === */
[class*="-burger"], [class*="burger-menu"], [class*="menu-toggle"], button[aria-controls*="nav"], button[aria-label*="menu" i] { color: #1a1a1a !important; pointer-events: auto !important; cursor: pointer !important; z-index: 100 !important; position: relative !important; user-select: none !important; -webkit-tap-highlight-color: transparent !important; background: rgba(255,255,255,0.92) !important; border-radius: 8px !important; border: 1.5px solid rgba(0,0,0,0.15) !important; box-shadow: 0 1px 3px rgba(0,0,0,0.12) !important; padding: 8px !important; }
[class*="-burger"] svg, [class*="burger-menu"] svg, [class*="menu-toggle"] svg, button[aria-controls*="nav"] svg { stroke: #1a1a1a !important; fill: none !important; pointer-events: none !important; stroke-width: 2.5 !important; width: 22px !important; height: 22px !important; }
[class*="-burger"] svg path, [class*="-burger"] svg line, [class*="-burger"] svg rect, [class*="-burger"] svg polyline { stroke: #1a1a1a !important; stroke-width: 2.5 !important; fill: none !important; }
[class*="-burger"]:hover, [class*="-burger"]:focus { background: rgba(255,255,255,1) !important; border-color: rgba(0,0,0,0.3) !important; outline: 2px solid rgba(0,0,0,0.15) !important; outline-offset: 1px !important; }
/* Si le header est sombre : inverse en clair (detection elargie) */
[class*="-header"][style*="background:#0"] [class*="-burger"], [class*="-header"][style*="background:#1"] [class*="-burger"], [class*="-header"][style*="background:#2"] [class*="-burger"], [class*="-header"][style*="background-color:#0"] [class*="-burger"], [class*="-header"][style*="background-color:#1"] [class*="-burger"], [class*="-header"][style*="background-color:#2"] [class*="-burger"], [class*="-header"][class*="dark"] [class*="-burger"], [class*="-header"][class*="black"] [class*="-burger"], [class*="-header"][class*="--dark"] [class*="-burger"], [class*="-header"][class*="-night"] [class*="-burger"] { color: #f5f5f5 !important; background: rgba(0,0,0,0.55) !important; border-color: rgba(255,255,255,0.4) !important; box-shadow: 0 1px 3px rgba(0,0,0,0.4) !important; }
[class*="-header"][style*="background:#0"] [class*="-burger"] svg, [class*="-header"][style*="background:#1"] [class*="-burger"] svg, [class*="-header"][class*="dark"] [class*="-burger"] svg, [class*="-header"][class*="black"] [class*="-burger"] svg { stroke: #f5f5f5 !important; }
@media (max-width: 1023px) {
  [class*="-burger"], button[aria-controls*="nav"] { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-width: 44px !important; min-height: 44px !important; }
}
@media (min-width: 1024px) {
  [class*="-burger"], button[aria-controls*="nav"] { display: none !important; }
}

/* Validator: nav-mobile-list visible inside open drawer v1 */
/* Burger drawer ouvert : la UL des liens DOIT etre visible. */
[class*="-nav-mobile"].is-open ul, [id*="-nav-mobile"].is-open ul, [class*="-nav-mobile"].is-open [class*="-nav-mobile-list"], [class*="-drawer"].is-open ul, [class*="-burger-menu"].is-open ul { display: block !important; visibility: visible !important; height: auto !important; max-height: none !important; overflow: visible !important; padding: 0 !important; margin: 0 !important; list-style: none !important; }
[class*="-nav-mobile"].is-open ul li, [id*="-nav-mobile"].is-open ul li, [class*="-drawer"].is-open ul li, [class*="-burger-menu"].is-open ul li { display: list-item !important; height: auto !important; padding: 0 !important; margin: 0 !important; list-style: none !important; }
[class*="-nav-mobile"].is-open ul li a, [id*="-nav-mobile"].is-open ul li a, [class*="-drawer"].is-open ul li a, [class*="-burger-menu"].is-open ul li a { display: block !important; padding: 0.9rem 0 !important; text-decoration: none !important; border-bottom: 1px solid rgba(0,0,0,0.08) !important; font-size: 1rem !important; }
