/* =====================================================================
 * Mes Courses — Custom Theme (child of Blocksy)
 * Design system: Cooking Coffee Shop Specialty (DB pick)
 * Palette: navy #142d55 + gold #c79900 (extraits du concurrent lineaires.com)
 * Fonts: Bricolage Grotesque (headings) + Manrope (body) — DB
 * Prefix: .d29-*
 * ===================================================================== */

:root {
  --d29-primary: #142d55;
  --d29-primary-dark: #0d1f3a;
  --d29-accent: #c79900;
  --d29-accent-dark: #a07700;
  --d29-text: #303030;
  --d29-text-soft: #6a6a6a;
  --d29-bg: #ffffff;
  --d29-surface: #f5f6f7;
  --d29-line: #eaeaea;
  --d29-font-h: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --d29-font-b: 'Manrope', 'Inter', system-ui, sans-serif;
  --d29-radius: 14px;
  --d29-radius-sm: 8px;
  --d29-shadow: 0 6px 22px rgba(20, 45, 85, .08);
  --d29-max: 1280px;
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.d29-body {
  margin: 0;
  font-family: var(--d29-font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--d29-text);
  background: var(--d29-bg);
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--d29-font-h); color: var(--d29-primary); margin: 0 0 .6em; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
p { margin: 0 0 1rem; }
a { color: var(--d29-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--d29-accent); }

main, .d29-main { padding-top: 0 !important; margin-top: 0 !important; }
.d29-container { max-width: var(--d29-max); margin: 0 auto; padding: 0 1.25rem; }

/* === Brand casing (Style B — Title Case, no transform) === */
.d29-brand-name {
  font-family: var(--d29-font-h);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--d29-primary);
}

/* === Buttons === */
.d29-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  border-radius: var(--d29-radius-sm);
  font-family: var(--d29-font-b);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .2s, color .2s, transform .15s;
}
.d29-btn--primary { background: var(--d29-primary); color: #fff; }
.d29-btn--primary:hover { background: var(--d29-primary-dark); color: #fff; }
.d29-btn--cta {
  background: var(--d29-accent);
  color: #fff;
  font-weight: 700;
  padding: .85rem 1.5rem;
}
.d29-btn--cta:hover { background: var(--d29-accent-dark); color: #fff; }
.d29-btn--ghost { background: transparent; color: var(--d29-primary); border-color: var(--d29-primary); }
.d29-btn--ghost:hover { background: var(--d29-primary); color: #fff; }

/* === Animations CTA/CTR/CTO === */
@keyframes d29-shake-on-hover {
  0%, 100% { transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% { transform: translate3d(-2px, 0, 0); }
  20%, 40%, 60%, 80% { transform: translate3d(2px, 0, 0); }
}
.d29-btn--cta:hover { animation: d29-shake-on-hover .55s ease-in-out; }
@keyframes d29-counter-pulse { 0% { opacity: 0; transform: translateY(8px); } 100% { opacity: 1; transform: translateY(0); } }
.d29-counter-value {
  display: inline-block;
  font-family: var(--d29-font-h);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--d29-accent);
  animation: d29-counter-pulse .7s ease-out forwards;
}
.d29-counter-label {
  display: block;
  color: var(--d29-text-soft);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .4rem;
}
@keyframes d29-faq-reveal { from { opacity: 0; max-height: 0; } to { opacity: 1; max-height: 520px; } }
.d29-faq-block {
  background: var(--d29-surface);
  border: 1px solid var(--d29-line);
  border-radius: var(--d29-radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}
.d29-faq-block summary { cursor: pointer; font-weight: 600; color: var(--d29-primary); padding: .5rem 0; list-style: none; }
.d29-faq-block summary::-webkit-details-marker { display: none; }
.d29-faq-block summary::after { content: '+'; float: right; color: var(--d29-accent); font-size: 1.4rem; line-height: 1; transition: transform .3s; }
.d29-faq-block[open] summary::after { transform: rotate(45deg); }
.d29-faq-block[open] .d29-faq-answer { animation: d29-faq-reveal .35s ease-out; }
.d29-faq-answer { padding-top: .5rem; color: var(--d29-text); line-height: 1.7; }

/* === HEADER (sticky-minimal) === */
.d29-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--d29-line);
}
.d29-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  max-width: var(--d29-max);
  margin: 0 auto;
  padding: .8rem 1.25rem;
}
.d29-brand-link { display: inline-flex; align-items: center; gap: .6rem; color: var(--d29-primary); text-decoration: none; flex-shrink: 0; }
.d29-brand-logo { width: auto; }
.d29-brand-name { font-size: 1.25rem; }

/* Nav desktop horizontale */
.d29-nav-desktop { display: none; }
.d29-nav-desktop-list {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.d29-nav-desktop-list a {
  color: var(--d29-text);
  font-weight: 500;
  font-size: .95rem;
  padding: .4rem .2rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.d29-nav-desktop-list a:hover {
  color: var(--d29-primary);
  border-bottom-color: var(--d29-accent);
}

/* Burger mobile */
.d29-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, .92);
  border: 1.5px solid rgba(20, 45, 85, .18);
  border-radius: 8px;
  color: #1a1a1a;
  cursor: pointer;
  z-index: 10000;
  flex-shrink: 0;
  position: relative;
  margin-left: auto;
}
.d29-burger-bars,
.d29-burger > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 16px;
}
.d29-burger-bars span,
.d29-burger > span > span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--d29-primary);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* Drawer mobile — caché par défaut */
.d29-nav-mobile { display: none; }
.d29-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 9998;
}
.d29-overlay.is-open { display: block; }

@media (max-width: 1023px) {
  .d29-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 1.25rem 2rem;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .3);
  }
  .d29-nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .d29-nav-mobile-list li {
    border-bottom: 1px solid var(--d29-line);
  }
  .d29-nav-mobile-list a {
    display: block;
    padding: 1rem .5rem;
    color: #0a0a0a;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
  }
  .d29-nav-mobile-list a:hover { color: var(--d29-primary); }
  .d29-nav-mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    background: var(--d29-surface);
    border: 1px solid var(--d29-line);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--d29-primary);
  }
  .d29-drawer-cta {
    display: block !important;
    margin: 2rem .5rem 1rem !important;
    padding: 1rem 1.5rem !important;
    text-align: center !important;
    background: var(--d29-accent) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 1.05rem !important;
  }
  /* Le CTA desktop du header est caché mobile */
  .d29-header-cta-desktop,
  .d29-header [class*="-btn--cta"]:not([class*="-drawer-"]) {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .d29-nav-desktop {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 0 1.5rem;
  }
  .d29-burger,
  .d29-nav-mobile,
  .d29-drawer-cta { display: none !important; }
}

/* === HERO (classic-overlay) === */
.d29-hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--d29-primary);
}
.d29-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.d29-hero--has-video .d29-hero-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.d29-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.d29-hero--has-video .d29-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .65) 100%);
  z-index: 2;
}
.d29-hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--d29-max);
  margin: 0 auto;
  padding: 5rem 1.25rem;
  color: #fff;
  width: 100%;
}
.d29-hero-eyebrow {
  display: inline-block;
  background: var(--d29-accent);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .4rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.d29-hero-title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 1rem;
  max-width: 720px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}
.d29-hero-subtitle {
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  max-width: 620px;
  margin: 0 0 2rem;
  line-height: 1.5;
}
.d29-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.d29-hero-cta-row .d29-btn--ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.d29-hero-cta-row .d29-btn--ghost:hover {
  background: #fff;
  color: var(--d29-primary);
}

/* === Editorial intro (~400-700 mots SEO sous le hero) === */
.d29-edito {
  padding: 4rem 0 3rem;
  background: var(--d29-bg);
}
.d29-edito-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.d29-edito h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 2rem 0 1rem;
}
.d29-edito h3 {
  color: var(--d29-accent-dark);
  font-size: 1.2rem;
  margin: 1.6rem 0 .6rem;
}
.d29-edito p {
  color: var(--d29-text);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.d29-edito a {
  color: var(--d29-primary);
  border-bottom: 2px solid var(--d29-accent);
}
.d29-edito a:hover { color: var(--d29-accent-dark); }
.d29-edito-callout {
  background: var(--d29-surface);
  border-left: 4px solid var(--d29-accent);
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
  border-radius: 0 var(--d29-radius-sm) var(--d29-radius-sm) 0;
}
.d29-edito-callout strong { color: var(--d29-primary); }

/* === Section "Rubriques" (categories grid) === */
.d29-cats {
  padding: 4rem 0;
  background: var(--d29-surface);
}
.d29-cats-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1.25rem;
}
.d29-cats-header h2 { margin: 0 0 .4rem; }
.d29-cats-header p { color: var(--d29-text-soft); max-width: 640px; margin: 0 auto; }
.d29-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: var(--d29-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.d29-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--d29-bg);
  border: 1px solid var(--d29-line);
  border-radius: var(--d29-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--d29-text);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.d29-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--d29-shadow);
  border-color: var(--d29-accent);
}
.d29-cat-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--d29-primary);
  background-size: cover;
  background-position: center;
}
.d29-cat-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
}
.d29-cat-card h3 {
  color: var(--d29-primary);
  font-size: 1.15rem;
  margin: 0 0 .35rem;
}
.d29-cat-card p {
  color: var(--d29-text-soft);
  font-size: .92rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === Section "Derniers articles" === */
.d29-latest {
  padding: 4rem 0;
  background: var(--d29-bg);
}
.d29-latest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 1.25rem;
  max-width: var(--d29-max);
  margin-left: auto;
  margin-right: auto;
}
.d29-latest-header h2 { margin: 0; }
.d29-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: var(--d29-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.d29-card {
  display: flex;
  flex-direction: column;
  background: var(--d29-bg);
  border: 1px solid var(--d29-line);
  border-radius: var(--d29-radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.d29-card:hover { transform: translateY(-3px); box-shadow: var(--d29-shadow); }
.d29-card-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--d29-surface);
}
.d29-card-img-wrap img,
.d29-card-img-wrap .d29-card-img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.d29-card-img-ph {
  background: linear-gradient(135deg, var(--d29-primary) 0%, var(--d29-accent) 100%);
}
.d29-card:hover .d29-card-img-wrap img { transform: scale(1.04); }
.d29-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.d29-card-cat {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--d29-accent-dark);
  margin-bottom: .4rem;
}
.d29-card h3 {
  font-size: 1.15rem;
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.d29-card h3 a { color: var(--d29-primary); }
.d29-card h3 a:hover { color: var(--d29-accent-dark); }
.d29-card-meta {
  display: flex;
  gap: .8rem;
  font-size: .85rem;
  color: var(--d29-text-soft);
  margin-top: .8rem;
}
.d29-empty-msg {
  text-align: center;
  color: var(--d29-text-soft);
  padding: 3rem 1.25rem;
  background: var(--d29-surface);
  border-radius: var(--d29-radius);
  max-width: var(--d29-max);
  margin: 0 auto;
}

/* === FOOTER === */
.d29-footer {
  background: #f8f8f8;
  border-top: 1px solid var(--d29-line);
  padding: 4rem 0 0;
  color: #1a1a1a;
}
.d29-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--d29-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.d29-footer-col h3 {
  font-family: var(--d29-font-h);
  font-size: 1rem;
  color: var(--d29-primary);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 1rem;
  font-weight: 700;
}
.d29-footer-logo {
  display: block;
  margin-bottom: 1rem;
  height: auto;
}
.d29-footer-brand-pitch {
  color: #1a1a1a;
  font-size: .95rem;
  line-height: 1.65;
  margin: 0 0 1.2rem;
}
.d29-footer-brand-cta {
  display: inline-block;
  color: var(--d29-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.d29-footer-brand-cta:hover { color: var(--d29-accent-dark); }
.d29-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.d29-footer-links li { margin-bottom: .6rem; }
.d29-footer-links a {
  color: #1a1a1a;
  font-size: .94rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.d29-footer-links a:hover { color: var(--d29-primary); }
.d29-footer-socials {
  display: flex;
  gap: .8rem;
  margin-top: .8rem;
  flex-wrap: wrap;
}
.d29-footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--d29-line);
  border-radius: 50%;
  color: var(--d29-primary);
  text-decoration: none;
}
.d29-footer-socials a:hover { background: var(--d29-primary); color: #fff; }
.d29-footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid var(--d29-line);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: .88rem;
  color: #444;
  max-width: var(--d29-max);
  margin-left: auto;
  margin-right: auto;
}

/* === Persona photo (page about) === */
.d29-persona-photo {
  max-width: 240px;
  border-radius: 50%;
  margin: 1rem auto;
  border: 4px solid var(--d29-surface);
  box-shadow: var(--d29-shadow);
}

/* === Category hero (single-top) === */
.d29-cat-hero {
  position: relative;
  height: 320px;
  max-height: 350px;
  overflow: hidden;
  background: var(--d29-primary);
}
.d29-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.d29-cat-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .75) 100%);
  padding: 2rem 1.25rem;
  max-width: var(--d29-max);
  margin: 0 auto;
}
.d29-cat-hero-inner h1 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .7);
  margin: 0;
}

/* === Contact form wrapper === */
.d29-contact-form {
  background: var(--d29-bg);
  border: 1px solid var(--d29-line);
  border-radius: var(--d29-radius);
  padding: 1rem;
  margin: 2rem 0;
}

/* === Mouse effect (link_hover_background_highlight) — gérée ici === */
.d29-main a, .d29-footer a {
  position: relative;
  background-image: linear-gradient(120deg, rgba(199, 153, 0, 0) 0%, rgba(199, 153, 0, 0) 100%);
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 0 32%;
  transition: background-size .35s ease-out, background-image .35s ease-out;
}
.d29-main a:hover, .d29-footer a:hover {
  background-image: linear-gradient(120deg, rgba(199, 153, 0, .35) 0%, rgba(199, 153, 0, .35) 100%);
  background-size: 100% 32%;
}
@media (hover: none) {
  .d29-main a, .d29-footer a {
    background-image: none;
    background-size: auto;
    transition: none;
  }
}

/* === Responsive === */
@media (max-width: 1023px) {
  .d29-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .d29-latest-grid { grid-template-columns: repeat(2, 1fr); }
  .d29-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .d29-hero-inner { padding: 3.5rem 1.25rem; }
  .d29-cats-grid { grid-template-columns: 1fr; }
  .d29-latest-grid { grid-template-columns: 1fr; }
  .d29-footer-grid { grid-template-columns: 1fr; }
  .d29-edito { padding: 2.5rem 0 2rem; }
  .d29-cats, .d29-latest { padding: 2.5rem 0; }
}


/* Tailored rules */
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, body, body [class*="d29-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 */
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;
}



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;
  }
}


@media (max-width: 1023px) {
  /* FIX width:auto -> ne plus l'imposer (laisse child theme définir width).
     Sinon écrase le child et le burger devient 0 de large -> invisible. */
  body [class*="burger"], body button[class*="burger"] {
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    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;
  }
}



body footer, body [class*="footer"]:not([class*="logo"]):not([class*="brand-logo"]) {
  color: inherit !important;
}


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;
}


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(--d29-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;
  }
}


/* Mobile : 1 SEUL CTA visible (dans le burger).
   Sur mobile le CTA original du header est masque ; sur desktop le clone est hidden. */
@media (max-width: 1023px) {
  body [class*="header-cta"] [class*="btn--cta"],
  body [class*="header__cta"] [class*="btn--cta"],
  body [class*="header-cta"] > [class*="cta"],
  body [class*="header__cta"] > a {
    display: none !important;
  }
}


/* ============================================================
   Section 'On parle de nous' (media press)
   Logos grayscale par defaut, couleur au hover.
   Grid responsive 2-6 colonnes, gap auto.
============================================================ */
.d29-media-press {
  padding: 2.5rem 0;
  background: var(--d29-bg-soft, var(--d29-color-surface, #f9fafb));
  margin: 2rem 0;
}
.d29-media-press > .d29-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.d29-media-press-title {
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--d29-color-text-soft, var(--d29-color-muted, #5a6a85));
  margin: 0 0 1.6rem;
  font-weight: 600;
}
.d29-media-press-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.d29-media-press-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 160px;
  transition: opacity .25s ease, filter .25s ease, transform .25s ease;
  opacity: .65;
  filter: grayscale(100%);
}
.d29-media-press-item:hover,
.d29-media-press-item:focus {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}
.d29-media-press-item img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .d29-media-press { padding: 1.8rem 0; }
  .d29-media-press-grid { gap: 1.4rem; }
  .d29-media-press-item { max-width: 110px; min-height: 36px; }
  .d29-media-press-item img { max-height: 36px; }
}


/* FIX gap header->hero (parent theme override) + media-press compact centre */
body main, body.home main, body.archive main, body.single main,
body, body, body main[class*="-main"] {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* MEDIA PRESS : layout horizontal compact CENTRE (titre + logos cote a cote au centre) */
.d29-media-press section[class*="media-press"] {
  padding: 24px 0 !important;
  margin: 0 !important;
  background: #fafafa;
  border-block: 1px solid rgba(0,0,0,0.06);
}
.d29-media-press .d29-container,
section[class*="media-press"] [class*="container"] {
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
  text-align: center;
}
.d29-media-press-title,
section[class*="media-press"] [class*="title"] {
  margin: 0 !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--d29-muted, #666);
  flex: 0 0 auto;
}
.d29-media-press-grid,
section[class*="media-press"] [class*="grid"] {
  display: flex !important;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
}
.d29-media-press-item,
section[class*="media-press"] [class*="item"] {
  display: inline-flex !important;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.d29-media-press-item:hover:hover,
section[class*="media-press"] [class*="item"]:hover {
  opacity: 1;
}
.d29-media-press imgimg,
section[class*="media-press"] img {
  max-height: 48px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}
.d29-media-press a:hover imga:hover img {
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .d29-media-press .d29-container,
  section[class*="media-press"] [class*="container"] {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
}



.d29-cat-hero--align-left .d29-cat-hero-inner
section[class*="cat-hero--align-left"] [class*="cat-hero-inner"] {
  text-align: left !important;
  align-items: flex-start !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding-left: 24px;
}
.d29-cat-hero--align-center .d29-cat-hero-inner
section[class*="cat-hero--align-center"] [class*="cat-hero-inner"] {
  text-align: center !important;
  align-items: center !important;
  margin: 0 auto !important;
}


@media (max-width: 1023.98px) {  [class*="-header-cta-wrap"],
  [class*="-header-actions"],
  [class*="-burger-wrap"],
  [class*="-header-right"],
  [class*="-header-actions-mobile"] {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }  [class*="-burger"]:not([class*="-bars"]):not([class*="-label"]):not([class*="-menu"]) {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    min-height: 42px !important;
    flex-shrink: 0 !important;
    z-index: 9999;
    pointer-events: auto !important;
    cursor: pointer !important;
  }  [class*="-burger"] > span,
  [class*="-burger-bars"] {
    display: flex !important;
    flex-direction: column !important;
    min-width: 24px !important;
    min-height: 16px !important;
  }  [class*="-burger-bars"] > *,
  [class*="-burger"] > span > * {
    display: block !important;
    min-width: 24px !important;
    min-height: 2px !important;
  }  [class*="-header-cta-desktop"] {
    display: none !important;
  }  [class*="-burger-label"] {
    display: none !important;
  }
}
@media (min-width: 1024px) {  [class*="-burger"]:not([class*="-bars"]):not([class*="-label"]):not([class*="-menu"]) {
    display: none !important;
  }
}


/* Burger style */
@media (max-width: 1023.98px) {
  [class*="-burger"]:not([class*="-bars"]):not([class*="-label"]):not([class*="-menu"]) {
    width: 42px !important; height: 42px !important;
    border-radius: 8px !important; padding: 8px !important;
    background: rgba(0,0,0,0.08) !important; 
  }
  [class*="-burger"] > span, [class*="-burger-bars"] {
    gap: 5px !important; width: 24px !important; height: 16px !important;
    align-items: center !important;
  }
  [class*="-burger-bars"] > *, [class*="-burger"] > span > * {
    height: 2px !important; border-radius: 1px !important;
  }
  [class*="-burger-bars"] > *:nth-child(1), [class*="-burger"] > span > *:nth-child(1) { width: 24px !important; }
  [class*="-burger-bars"] > *:nth-child(2), [class*="-burger"] > span > *:nth-child(2) { width: 24px !important; }
  [class*="-burger-bars"] > *:nth-child(3), [class*="-burger"] > span > *:nth-child(3) { width: 24px !important; }
}


/* Mouse effect : link_hover_background_highlight */
.d29-main a,.d29-footer a{position:relative;background-image:linear-gradient(120deg,rgba(199,153,0,0) 0%,rgba(199,153,0,0) 100%);background-repeat:no-repeat;background-position:0 88%;background-size:0 32%;transition:background-size .35s ease-out, background-image .35s ease-out;text-decoration:none}.d29-main a:hover,.d29-footer a:hover{background-image:linear-gradient(120deg,rgba(199,153,0,.35) 0%,rgba(199,153,0,.35) 100%);background-size:100% 32%}@media (hover:none){.d29-main a,.d29-footer a{background-image:none;background-size:auto;transition: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; }
