/* =========================================================================
   Barpelec — child theme styles (parent : kadence)
   Design : Maximaliste Éclectique (Abril Fatface + Karla)
   Palette : competitor blue #0288d1 + accent red-orange #e74c3c
   ========================================================================= */

:root {
  --dc9-color-primary: #0288d1;
  --dc9-primary: #0288d1;
  --dc9-color-accent: #e74c3c;
  --dc9-accent: #e74c3c;
  --dc9-color-text: #272f3a;
  --dc9-color-text-soft: #5a6677;
  --dc9-color-bg: #ffffff;
  --dc9-color-surface: #f7f9fc;
  --dc9-color-line: #e5e9ee;
  --dc9-color-dark: #1c2230;
  --dc9-font-headings: 'Abril Fatface', Georgia, 'Times New Roman', serif;
  --dc9-font-body: 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --dc9-radius-sm: 6px;
  --dc9-radius-md: 10px;
  --dc9-radius-lg: 16px;
  --dc9-shadow-sm: 0 2px 6px rgba(39, 47, 58, 0.06);
  --dc9-shadow-md: 0 8px 24px rgba(39, 47, 58, 0.10);
  --dc9-shadow-lg: 0 20px 48px rgba(39, 47, 58, 0.16);
  --dc9-container: 1180px;
}

/* Reset & base ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.dc9-body {
  margin: 0;
  font-family: var(--dc9-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--dc9-color-text);
  background: var(--dc9-color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--dc9-color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dc9-color-accent); }
h1, h2, h3, h4 { font-family: var(--dc9-font-headings); font-weight: 400; color: var(--dc9-color-text); letter-spacing: -.005em; }
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.1; margin: 0 0 .6em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; margin: 1.4em 0 .6em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.25; margin: 1em 0 .4em; }
p { margin: 0 0 1em; }
main { padding-top: 0 !important; margin-top: 0 !important; }
.dc9-main { padding-top: 0 !important; margin-top: 0 !important; }

.dc9-container { width: 100%; max-width: var(--dc9-container); margin: 0 auto; padding: 0 1.25rem; }

/* Layout helpers ========================================================== */
.dc9-section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; position: relative; z-index: 2; }
.dc9-section--surface { background: var(--dc9-color-surface); }
.dc9-section--dark { background: var(--dc9-color-dark); color: #f5f5f5; }
.dc9-section--dark h2, .dc9-section--dark h3 { color: #ffffff; }
.dc9-section-eyebrow { display: inline-block; font-family: var(--dc9-font-body); font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dc9-color-accent); margin-bottom: .6rem; }
.dc9-section-title { margin: 0 0 1.2rem; }

/* =========================================================================
   HEADER — logo-left-menu-center  (cta_in_header = no)
   ========================================================================= */
.dc9-header {
  background: var(--dc9-color-bg);
  border-bottom: 1px solid var(--dc9-color-line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--dc9-shadow-sm);
}
.dc9-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .9rem 1.25rem;
  max-width: var(--dc9-container);
  margin: 0 auto;
}
.dc9-brand-link { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; flex-shrink: 0; }
.dc9-brand-logo { display: block; width: auto; }
.dc9-brand-name {
  font-family: var(--dc9-font-headings);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--dc9-color-text);
  /* style B — Title Case, no text-transform */
  letter-spacing: 0;
}

/* Desktop nav — centered between logo and right slot */
.dc9-nav-desktop { display: none; }
.dc9-nav-desktop-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dc9-nav-desktop-list a {
  color: var(--dc9-color-text);
  font-weight: 500;
  font-size: .95rem;
  padding: .35rem .15rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.dc9-nav-desktop-list a:hover {
  color: var(--dc9-color-accent);
  border-bottom-color: var(--dc9-color-accent);
}

/* Burger button (mobile only) */
.dc9-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  color: var(--dc9-color-text);
  cursor: pointer;
  z-index: 10000;
  flex-shrink: 0;
  position: relative;
}
.dc9-burger-bars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
  width: 24px;
  height: 16px;
}
.dc9-burger-bars span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
}

/* Mobile drawer nav (X-nav-mobile convention) */
.dc9-nav-mobile { display: none; }

@media (max-width: 1023px) {
  /* Layout: logo left, burger right — pas de CTA mobile dans le header */
  .dc9-header-inner { justify-content: space-between; }
}

@media (min-width: 1024px) {
  .dc9-nav-desktop { display: flex; flex: 1; justify-content: center; margin: 0 1.5rem; }
  .dc9-burger, .dc9-burger-wrap { display: none !important; }
  .dc9-nav-mobile { display: none !important; }
}

/* Drawer mobile : ouvert avec .is-open */
@media (max-width: 1023px) {
  .dc9-nav-mobile.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 0 1.5rem;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.30);
    animation: dc9-drawer-slide .25s ease-out;
  }
  .dc9-nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
  }
  .dc9-nav-mobile-list li { border-bottom: 1px solid #e5e9ee; }
  .dc9-nav-mobile-list a {
    display: block;
    padding: 1.1rem 1.5rem;
    color: #0a0a0a;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
  }
  .dc9-nav-mobile-list a:hover, .dc9-nav-mobile-list a:focus {
    background: var(--dc9-color-surface);
    color: var(--dc9-color-accent);
  }
  .dc9-drawer-cta {
    display: block;
    margin: 2rem 1.5rem 1.5rem;
    padding: 1rem 1.5rem;
    text-align: center;
    background: var(--dc9-color-accent);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
  }
  .dc9-drawer-cta:hover { background: #c0392b; color: #ffffff; }
  .dc9-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
  }
  .dc9-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
  .dc9-drawer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: none;
    border: 0;
    cursor: pointer;
    color: #0a0a0a;
    font-size: 1.6rem;
    z-index: 1;
  }
}

@media (min-width: 1024px) {
  .dc9-drawer-cta { display: none !important; }
}

@keyframes dc9-drawer-slide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* =========================================================================
   HERO — mosaic-categories
   ========================================================================= */
.dc9-hero { position: relative; overflow: hidden; background: var(--dc9-color-bg); padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 4vw, 4rem); }
.dc9-hero-head { text-align: center; max-width: 760px; margin: 0 auto clamp(1.8rem, 3vw, 2.5rem); padding: 0 1.25rem; }
.dc9-hero-title {
  font-family: var(--dc9-font-headings);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 .7rem;
  color: var(--dc9-color-text);
}
.dc9-hero-title span { color: var(--dc9-color-accent); }
.dc9-hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--dc9-color-text-soft);
  max-width: 620px;
  margin: 0 auto;
}
.dc9-hero-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  max-width: var(--dc9-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.dc9-mosaic-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--dc9-radius-md);
  text-decoration: none;
  color: #ffffff;
  background: var(--dc9-color-primary);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: var(--dc9-shadow-sm);
}
.dc9-mosaic-card:hover { transform: translateY(-3px); box-shadow: var(--dc9-shadow-md); }
.dc9-mosaic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dc9-mosaic-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform .5s ease;
}
.dc9-mosaic-card:hover::before { transform: scale(1.06); }
.dc9-mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .82) 100%);
  z-index: 1;
}
.dc9-mosaic-card-inner { position: relative; z-index: 2; width: 100%; }
.dc9-mosaic-name {
  font-family: var(--dc9-font-headings);
  font-size: 1.55rem;
  line-height: 1;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}
.dc9-mosaic-arrow {
  display: inline-block;
  margin-top: .3rem;
  font-weight: 700;
  color: var(--dc9-color-accent);
  letter-spacing: .04em;
  font-size: .85rem;
  text-transform: uppercase;
}
/* Mosaic — 8 cartes / 4 cols / 3 rows. Cellules 1, 6, 7, 8 occupent 2 cols
   pour un rythme magazine éclectique (Maximaliste Éclectique). */
.dc9-mosaic-card:nth-child(1) { grid-column: span 2; }
.dc9-mosaic-card:nth-child(6) { grid-column: span 2; }
.dc9-mosaic-card:nth-child(7) { grid-column: span 2; }
.dc9-mosaic-card:nth-child(8) { grid-column: span 2; }

@media (max-width: 900px) {
  .dc9-hero-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .dc9-mosaic-card { grid-column: span 1 !important; }
  .dc9-mosaic-card:nth-child(1) { grid-column: span 2 !important; }
}
@media (max-width: 520px) {
  .dc9-hero-mosaic { grid-template-columns: 1fr; grid-auto-rows: 150px; }
  .dc9-mosaic-card { grid-column: span 1 !important; }
  .dc9-mosaic-card:nth-child(1) { grid-column: span 1 !important; }
}

/* =========================================================================
   EDITORIAL BLOCK — 400-700 words SEO (after-hero)
   ========================================================================= */
.dc9-editorial { padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--dc9-color-surface); }
.dc9-editorial-inner { max-width: 880px; margin: 0 auto; padding: 0 1.25rem; }
.dc9-editorial-eyebrow { display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--dc9-color-accent); margin-bottom: .6rem; }
.dc9-editorial-title { font-family: var(--dc9-font-headings); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; margin: 0 0 1rem; color: var(--dc9-color-text); }
.dc9-editorial-lead { font-size: 1.18rem; line-height: 1.65; color: var(--dc9-color-text); margin-bottom: 1.5rem; }
.dc9-editorial-body h3 { font-size: 1.35rem; margin: 1.5em 0 .4em; color: var(--dc9-color-text); }
.dc9-editorial-body p { margin: 0 0 1em; color: var(--dc9-color-text); }
.dc9-editorial-body a { color: var(--dc9-color-primary); border-bottom: 1px solid transparent; transition: border-color .2s; }
.dc9-editorial-body a:hover { border-bottom-color: var(--dc9-color-accent); color: var(--dc9-color-accent); }
.dc9-editorial-callout {
  background: #ffffff;
  border-left: 5px solid var(--dc9-color-accent);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--dc9-radius-md) var(--dc9-radius-md) 0;
  box-shadow: var(--dc9-shadow-sm);
}
.dc9-editorial-callout strong { display: block; font-family: var(--dc9-font-headings); font-size: 1.2rem; color: var(--dc9-color-text); margin-bottom: .3rem; }

/* =========================================================================
   RUBRIQUES SECTION
   ========================================================================= */
.dc9-rubriques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.dc9-rubrique-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--dc9-color-line);
  border-radius: var(--dc9-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--dc9-color-text);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--dc9-shadow-sm);
}
.dc9-rubrique-card:hover { transform: translateY(-3px); box-shadow: var(--dc9-shadow-md); border-color: var(--dc9-color-primary); color: var(--dc9-color-text); }
.dc9-rubrique-img {
  display: block;
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-color: var(--dc9-color-primary);
}
.dc9-rubrique-content { padding: 1rem 1.1rem 1.2rem; }
.dc9-rubrique-name { font-family: var(--dc9-font-headings); font-size: 1.3rem; margin: 0 0 .25rem; color: var(--dc9-color-text); }
.dc9-rubrique-count { font-size: .85rem; color: var(--dc9-color-text-soft); }

/* =========================================================================
   LATEST ARTICLES GRID (12 articles, 3 cols)
   ========================================================================= */
.dc9-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) { .dc9-latest-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }
@media (max-width: 560px) { .dc9-latest-grid { grid-template-columns: 1fr; } }

.dc9-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--dc9-color-line);
  border-radius: var(--dc9-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--dc9-color-text);
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--dc9-shadow-sm);
}
.dc9-card:hover { transform: translateY(-4px); box-shadow: var(--dc9-shadow-md); color: var(--dc9-color-text); }
.dc9-card-img {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dc9-color-surface);
}
.dc9-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dc9-card:hover .dc9-card-img img { transform: scale(1.05); }
.dc9-card-img--placeholder {
  background: linear-gradient(135deg, var(--dc9-color-primary), var(--dc9-color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--dc9-font-headings);
  font-size: 2rem;
}
.dc9-card-cat {
  position: absolute;
  top: .7rem;
  left: .7rem;
  background: var(--dc9-color-accent);
  color: #ffffff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: 4px;
  z-index: 2;
}
.dc9-card-body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.dc9-card-title { font-family: var(--dc9-font-headings); font-size: 1.3rem; line-height: 1.2; margin: 0 0 .5rem; color: var(--dc9-color-text); }
.dc9-card-excerpt { font-size: .95rem; color: var(--dc9-color-text-soft); margin: 0 0 .8rem; flex: 1; }
.dc9-card-meta { font-size: .82rem; color: var(--dc9-color-text-soft); display: flex; align-items: center; gap: .6rem; }
.dc9-card-date::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--dc9-color-accent); margin-right: .5rem; vertical-align: middle; }

/* =========================================================================
   CTA SECTION (links to /contact/)
   ========================================================================= */
.dc9-cta-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: linear-gradient(135deg, var(--dc9-color-primary), #015d97);
  color: #ffffff;
  text-align: center;
}
.dc9-cta-section h2 { color: #ffffff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 .8rem; }
.dc9-cta-section p { color: #f0f5fb; font-size: 1.1rem; margin: 0 auto 1.5rem; max-width: 580px; }
.dc9-btn {
  display: inline-block;
  padding: .95rem 2rem;
  border-radius: var(--dc9-radius-sm);
  font-family: var(--dc9-font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.dc9-btn--cta {
  background: var(--dc9-color-accent);
  color: #ffffff;
}
.dc9-btn--cta:hover { background: #c0392b; color: #ffffff; }
@keyframes dc9-shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
  20%, 40%, 60%, 80% { transform: translateX(3px); }
}
.dc9-btn--cta:hover { animation: dc9-shake .55s ease-in-out; }
.dc9-btn--ghost {
  background: transparent;
  color: var(--dc9-color-text);
  border: 2px solid var(--dc9-color-line);
}
.dc9-btn--ghost:hover { border-color: var(--dc9-color-primary); color: var(--dc9-color-primary); }

/* =========================================================================
   FOOTER — 4 colonnes
   ========================================================================= */
.dc9-footer {
  background: #f8f8f8;
  color: #1a1a1a;
  padding: 3.5rem 0 0;
  border-top: 4px solid var(--dc9-color-accent);
  position: relative;
  z-index: 2;
}
.dc9-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--dc9-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 900px) {
  .dc9-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .dc9-footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}
.dc9-footer-col h3.dc9-footer-title {
  font-family: var(--dc9-font-headings);
  font-size: 1.2rem;
  margin: 0 0 1rem;
  color: #1a1a1a;
  letter-spacing: 0;
}
.dc9-footer-logo { display: block; margin-bottom: 1rem; height: auto; max-width: 140px; }
.dc9-footer-brand-pitch {
  font-size: .96rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 1.2rem;
}
.dc9-footer-brand-cta {
  display: inline-block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dc9-color-primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.dc9-footer-brand-cta:hover { color: var(--dc9-color-accent); }
.dc9-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dc9-footer-links li { margin: 0 0 .5rem; }
.dc9-footer-links a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: rgba(26, 26, 26, .25);
  text-underline-offset: 3px;
  font-size: .95rem;
  transition: color .2s, text-decoration-color .2s;
}
.dc9-footer-links a:hover { color: var(--dc9-color-accent); text-decoration-color: var(--dc9-color-accent); }

.dc9-footer-bottom {
  margin-top: 2.5rem;
  padding: 1.4rem 1.25rem;
  border-top: 1px solid #d8d8d8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--dc9-container);
  margin-left: auto;
  margin-right: auto;
  font-size: .9rem;
  color: #444444;
}
.dc9-footer-social { display: flex; gap: .8rem; }
.dc9-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #d8d8d8;
  transition: background .2s, color .2s, border-color .2s;
}
.dc9-footer-social a:hover { background: var(--dc9-color-accent); color: #ffffff; border-color: var(--dc9-color-accent); }
.dc9-footer-social svg { width: 18px; height: 18px; }

/* =========================================================================
   PAGES / SINGLE / CATEGORY
   ========================================================================= */
.dc9-page-content { max-width: 820px; margin: 0 auto; padding: 3rem 1.25rem; }
.dc9-page-content h1 { margin: 0 0 1.5rem; }
.dc9-page-content h2 { margin-top: 2em; }
.dc9-page-content p { font-size: 1.06rem; line-height: 1.75; }
.dc9-page-content a { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 2.5px; }
.dc9-persona-photo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--dc9-color-accent);
  margin: 0 auto 2rem;
  display: block;
  box-shadow: var(--dc9-shadow-md);
}

.dc9-contact-form { margin: 2rem 0; }
.dc9-contact-form iframe { display: block; margin: 0; border: 0; }

/* Category hero (compact, 350px max) */
.dc9-cat-hero {
  position: relative;
  height: 320px;
  max-height: 350px;
  overflow: hidden;
  background: var(--dc9-color-primary);
}
.dc9-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.dc9-cat-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--dc9-container);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 1.6rem;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
}
.dc9-cat-hero-title { color: #ffffff; margin: 0 0 .4rem; text-shadow: 0 2px 14px rgba(0, 0, 0, .7); font-size: clamp(2rem, 4vw, 3rem); }
.dc9-cat-hero-desc { color: #f5f5f5; margin: 0; max-width: 700px; font-size: 1.02rem; text-shadow: 0 1px 6px rgba(0, 0, 0, .6); }

.dc9-cat-content { max-width: 880px; margin: 0 auto; padding: 2.5rem 1.25rem; }
.dc9-cat-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dc9-color-text);
  margin: 0 0 2rem;
  padding: 1.5rem;
  background: var(--dc9-color-surface);
  border-radius: var(--dc9-radius-md);
}

/* =========================================================================
   ANIMATIONS (CTA / CTR / CTO from JSON)
   ========================================================================= */
.dc9-countdown-bar {
  position: relative;
  height: 6px;
  background: var(--dc9-color-line);
  border-radius: 3px;
  overflow: hidden;
  margin: .6rem 0;
}
.dc9-countdown-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dc9-color-accent), var(--dc9-color-primary));
  animation: dc9-countdown 20s linear forwards;
}
@keyframes dc9-countdown { 0% { width: 100%; } 100% { width: 0%; } }

.dc9-best-badge {
  display: inline-block;
  padding: .35rem .8rem;
  background: var(--dc9-color-accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
  animation: dc9-best-pulse 1.8s ease-in-out infinite;
}
@keyframes dc9-best-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, .55); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(231, 76, 60, 0); }
}

/* =========================================================================
   MOUSE EFFECT — cursor_grid_dots_react canvas
   ========================================================================= */
.dc9-grid-dots-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: .55;
  mix-blend-mode: multiply;
}
@media (hover: none) { .dc9-grid-dots-canvas { display: none; } }

/* =========================================================================
   VISUALLY-HIDDEN, FOCUS
   ========================================================================= */
.dc9-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--dc9-color-accent); outline-offset: 2px; }

/* Persona photo aside layout for a-propos page */
.dc9-page-content .dc9-persona-photo { float: none; }

/* Small responsive tweaks */
@media (max-width: 540px) {
  body.dc9-body { font-size: 16px; }
  .dc9-section { padding: 2rem 0; }
}


/* === 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*="dc9-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
   (.dc9-, .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 !important;
  border: 1px solid currentColor !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  padding: 8px !important;
  color: inherit !important;
  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) !important;
  border-color: var(--dc9-accent, currentColor) !important;
}
/* 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 !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  width: 22px !important;
  height: 16px !important;
  gap: 0 !important;
}
/* 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 !important;
  width: 22px !important;
  height: 2.5px !important;
  background: currentColor !important;
  border-radius: 2px !important;
  margin: 2px 0 !important;
  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 !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* Mouse effect : cursor_grid_dots_react */
.dc9-grid-dots-canvas{position:fixed;inset:0;width:100vw;height:100vh;pointer-events:none;z-index:1;opacity:.55;mix-blend-mode:multiply}@media (hover:none){.dc9-grid-dots-canvas{display:none}}

/* 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; }
