/* =================================================================
   Choco Geek — Cuisine Française Bistro
   Custom child theme styles
   Prefix: .cgk-*  |  Parent: astra
   ================================================================= */

/* ---------- :root variables ---------- */
:root {
  --cgk-primary:    #28262b;
  --cgk-accent:     #C8102E;
  --cgk-accent-dk:  #a00d24;
  --cgk-text:       #2C1810;
  --cgk-text-soft:  #6B5A4D;
  --cgk-bg:         #FAF6EE;
  --cgk-surface:    #FFFFFF;
  --cgk-line:       #E5D9C0;
  --cgk-shadow:     0 4px 18px rgba(40, 38, 43, 0.08);
  --cgk-shadow-lg:  0 10px 38px rgba(40, 38, 43, 0.14);

  --cgk-font-h:     'Playball', 'Brush Script MT', cursive;
  --cgk-font-body:  'Cardo', Georgia, serif;

  --cgk-radius:     6px;
  --cgk-radius-lg:  10px;
  --cgk-maxw:       1240px;

  --cgk-header-h:   84px;
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.cgk-body {
  margin: 0;
  font-family: var(--cgk-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--cgk-text);
  background: var(--cgk-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cgk-accent); text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: var(--cgk-accent-dk); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--cgk-font-h);
  color: var(--cgk-primary);
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 1.25;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

.cgk-wrap {
  max-width: var(--cgk-maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

main, .cgk-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
  background: var(--cgk-bg);
}

/* ---------- Buttons ---------- */
.cgk-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: var(--cgk-radius);
  font-family: var(--cgk-font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .3px;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
  transition: background .25s, transform .15s, box-shadow .25s;
  text-transform: none;
}
.cgk-btn--cta {
  background: var(--cgk-accent);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, .25);
}
.cgk-btn--cta:hover {
  background: var(--cgk-accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200, 16, 46, .35);
}
.cgk-btn--ghost {
  background: transparent;
  color: var(--cgk-primary) !important;
  border: 1.5px solid var(--cgk-primary);
}
.cgk-btn--ghost:hover { background: var(--cgk-primary); color: #fff !important; }

/* === CTA animation: icon_reveal_button (icône apparaît au hover) === */
.cgk-btn--cta .cgk-btn-arrow {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: max-width .35s ease, opacity .25s ease, transform .35s ease;
  white-space: nowrap;
}
.cgk-btn--cta:hover .cgk-btn-arrow,
.cgk-btn--cta:focus .cgk-btn-arrow {
  max-width: 24px;
  opacity: 1;
  transform: translateX(0);
}

/* === CTR animation: progress_scroll_bar === */
.cgk-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cgk-accent), var(--cgk-accent-dk));
  z-index: 10001;
  transition: width .08s linear;
  pointer-events: none;
}

/* === CTO animation: new_badge_animation === */
@keyframes cgkBadgePop {
  0%   { transform: scale(.6) rotate(-8deg); opacity: 0; }
  60%  { transform: scale(1.1) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(-4deg); opacity: 1; }
}
@keyframes cgkBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, .55); }
  50%      { box-shadow: 0 0 0 10px rgba(200, 16, 46, 0); }
}
.cgk-new-badge {
  display: inline-block;
  background: var(--cgk-accent);
  color: #fff;
  font-family: var(--cgk-font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 1px;
  padding: .25rem .65rem;
  border-radius: 4px;
  text-transform: uppercase;
  animation: cgkBadgePop .55s ease-out both, cgkBadgePulse 2.2s ease-out 1s infinite;
}

/* =================================================================
   HEADER  (logo-left, menu-center, burger right on mobile)
   no CTA in header (RP2G_HEADER_HAS_CTA=no)
   ================================================================= */
.cgk-header {
  position: sticky;
  top: 0;
  background: var(--cgk-surface);
  border-bottom: 1px solid var(--cgk-line);
  z-index: 100;
  box-shadow: var(--cgk-shadow);
}
.cgk-header-inner {
  max-width: var(--cgk-maxw);
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--cgk-header-h);
}
.cgk-brand-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none !important;
  color: var(--cgk-primary);
}
.cgk-brand-logo {
  max-height: 56px;
  width: auto;
}
.cgk-brand-name {
  font-family: var(--cgk-font-h);
  font-size: 1.85rem;
  color: var(--cgk-primary);
  letter-spacing: .5px;
  /* Style B — Title Case: NO text-transform */
}

/* Desktop nav centered */
.cgk-nav-desktop { display: none; }
.cgk-nav-desktop-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.6rem;
  align-items: center;
}
.cgk-nav-desktop-list a {
  color: var(--cgk-primary);
  text-decoration: none;
  font-family: var(--cgk-font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: .35rem .15rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  letter-spacing: .3px;
}
.cgk-nav-desktop-list a:hover,
.cgk-nav-desktop-list a:focus,
.cgk-nav-desktop-list .current-menu-item > a {
  color: var(--cgk-accent);
  border-bottom-color: var(--cgk-accent);
}

/* Header burger (mobile only) */
.cgk-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.cgk-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 8px;
  background: var(--cgk-surface);
  border: 1.5px solid var(--cgk-line);
  border-radius: 8px;
  color: var(--cgk-primary);
  cursor: pointer;
  z-index: 10000;
  flex-shrink: 0;
  position: relative;
}
.cgk-burger-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
  height: 16px;
  justify-content: center;
}
.cgk-burger-bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  width: 100%;
  transition: transform .25s, opacity .15s;
}
.cgk-burger.is-open .cgk-burger-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.cgk-burger.is-open .cgk-burger-bars span:nth-child(2) { opacity: 0; }
.cgk-burger.is-open .cgk-burger-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.cgk-nav-mobile { display: none; }

.cgk-nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: opacity .25s;
}
.cgk-nav-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023px) {
  .cgk-nav-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 88%;
    max-width: 380px;
    background: var(--cgk-surface);
    padding: 4.5rem 1.5rem 2rem;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .3);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .cgk-nav-mobile.is-open { transform: translateX(0); }

  .cgk-nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .cgk-nav-mobile-list li { border-bottom: 1px solid var(--cgk-line); }
  .cgk-nav-mobile-list a {
    display: block;
    padding: 1rem .25rem;
    color: var(--cgk-primary);
    font-family: var(--cgk-font-body);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
  }
  .cgk-nav-mobile-list a:hover { color: var(--cgk-accent); }

  .cgk-drawer-cta {
    display: block !important;
    margin: 2rem 0 1rem !important;
    padding: 1rem 1.5rem !important;
    text-align: center;
    background: var(--cgk-accent) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 1.05rem !important;
  }
}

@media (min-width: 1024px) {
  .cgk-nav-desktop {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 0 1.5rem;
  }
  .cgk-burger, .cgk-header-actions { display: none !important; }
  .cgk-nav-mobile, .cgk-nav-mobile-overlay { display: none !important; }
  .cgk-drawer-cta { display: none !important; }
}

/* =================================================================
   HERO  (zoom-on-scroll)
   ================================================================= */
.cgk-hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  background: var(--cgk-primary);
}
.cgk-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: transform .15s ease-out;
  will-change: transform;
  z-index: 1;
}
/* Video hero (if HERO_VIDEO_URL non-empty) */
.cgk-hero-video-wrap { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.cgk-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;
}
.cgk-hero--has-video .cgk-hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}

.cgk-hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--cgk-maxw);
  margin: 0 auto;
  padding: 4rem 1.5rem 3.5rem;
  width: 100%;
  color: #fff;
}
.cgk-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(40,38,43,0.55) 65%, rgba(40,38,43,0.85) 100%);
  z-index: -1;
}
.cgk-hero-title {
  font-family: var(--cgk-font-h);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  color: #fff;
  margin: 0 0 .4em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .45);
  max-width: 740px;
}
.cgk-hero-subtitle {
  font-family: var(--cgk-font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #f5efe0;
  max-width: 620px;
  margin: 0 0 1.6rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}
.cgk-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cgk-hero--has-video .cgk-hero-title,
.cgk-hero--has-video .cgk-hero-subtitle { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.55); }

/* =================================================================
   EDITORIAL INTRO BLOCK  (after hero, anti-empreinte 400-700 words)
   ================================================================= */
.cgk-editorial {
  background: var(--cgk-surface);
  padding: 4rem 0;
  border-bottom: 1px solid var(--cgk-line);
}
.cgk-editorial-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cgk-editorial h2 {
  text-align: center;
  margin-bottom: 1.4rem;
}
.cgk-editorial h3 {
  margin-top: 2rem;
  color: var(--cgk-accent);
  font-size: 1.5rem;
}
.cgk-editorial p {
  color: var(--cgk-text);
  font-size: 1.05rem;
  line-height: 1.75;
}
.cgk-editorial-pitch {
  text-align: center;
  font-size: 1.18rem;
  color: var(--cgk-text-soft);
  font-style: italic;
  border-left: 4px solid var(--cgk-accent);
  padding: .3rem 0 .3rem 1.3rem;
  margin: 2rem auto;
  max-width: 720px;
  text-align: left;
}
.cgk-editorial-charter {
  margin-top: 2.5rem;
  padding: 1.6rem 1.8rem;
  background: var(--cgk-bg);
  border-radius: var(--cgk-radius-lg);
  border-left: 4px solid var(--cgk-primary);
}
.cgk-editorial-charter h3 { margin-top: 0; color: var(--cgk-primary); }

/* =================================================================
   SECTION TITLES (rubriques / latest / outils)
   ================================================================= */
.cgk-section {
  padding: 4rem 0;
}
.cgk-section--alt { background: var(--cgk-surface); }

.cgk-section-head {
  text-align: center;
  margin-bottom: 2.6rem;
}
.cgk-section-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: .4em;
}
.cgk-section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--cgk-accent);
  transform: translateX(-50%);
}
.cgk-section-head p {
  color: var(--cgk-text-soft);
  font-size: 1.05rem;
  max-width: 620px;
  margin: .8rem auto 0;
}

/* =================================================================
   CATEGORIES GRID (8 cats — 4 cols desktop)
   ================================================================= */
.cgk-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 1.5rem;
}
.cgk-cat-card {
  position: relative;
  display: block;
  height: 250px;
  border-radius: var(--cgk-radius-lg);
  overflow: hidden;
  background: var(--cgk-primary);
  box-shadow: var(--cgk-shadow);
  text-decoration: none !important;
  transition: transform .3s, box-shadow .3s;
}
.cgk-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cgk-shadow-lg);
}
.cgk-cat-card-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s;
  z-index: 1;
}
.cgk-cat-card:hover .cgk-cat-card-img { transform: scale(1.06); }
.cgk-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,38,43,0.1) 30%, rgba(40,38,43,0.85) 100%);
  z-index: 2;
}
.cgk-cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.3rem 1.4rem 1.2rem;
  z-index: 3;
  color: #fff;
}
.cgk-cat-card-name {
  font-family: var(--cgk-font-h);
  font-size: 1.85rem;
  margin: 0 0 .15em;
  color: #fff;
}
.cgk-cat-card-meta {
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cgk-accent);
  font-family: var(--cgk-font-body);
  font-weight: 700;
}

/* =================================================================
   ARTICLE CARDS (latest grid)
   ================================================================= */
.cgk-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}
.cgk-article-card {
  background: var(--cgk-surface);
  border-radius: var(--cgk-radius-lg);
  overflow: hidden;
  box-shadow: var(--cgk-shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.cgk-article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cgk-shadow-lg);
}
.cgk-article-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--cgk-line);
  background-size: cover;
  background-position: center;
}
.cgk-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cgk-article-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cgk-article-cat {
  font-family: var(--cgk-font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cgk-accent);
  margin-bottom: .35rem;
}
.cgk-article-cat a { color: inherit; text-decoration: none; }
.cgk-article-title {
  font-family: var(--cgk-font-h);
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0 0 .55rem;
}
.cgk-article-title a {
  color: var(--cgk-primary);
  text-decoration: none;
}
.cgk-article-title a:hover { color: var(--cgk-accent); }
.cgk-article-excerpt {
  color: var(--cgk-text-soft);
  font-size: .96rem;
  margin: 0 0 1rem;
  flex: 1;
}
.cgk-article-meta {
  color: var(--cgk-text-soft);
  font-size: .82rem;
  border-top: 1px solid var(--cgk-line);
  padding-top: .7rem;
}

/* Empty cat placeholder */
.cgk-cat-empty {
  background: var(--cgk-bg);
  padding: 2rem;
  border-radius: var(--cgk-radius-lg);
  text-align: center;
  color: var(--cgk-text-soft);
  border: 1px dashed var(--cgk-line);
}

/* =================================================================
   TOOL EMBED (home: yes — embed quiz chocolat)
   ================================================================= */
.cgk-tool-embed {
  background: var(--cgk-surface);
  padding: 4rem 0;
  border-top: 1px solid var(--cgk-line);
  border-bottom: 1px solid var(--cgk-line);
}
.cgk-tool-embed-intro {
  max-width: 720px;
  margin: 0 auto 2.2rem;
  text-align: center;
  color: var(--cgk-text-soft);
}
.cgk-tool-host {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =================================================================
   PERSONA / ABOUT PAGE
   ================================================================= */
.cgk-persona-photo {
  width: 100%;
  max-width: 360px;
  border-radius: var(--cgk-radius-lg);
  margin: 0 auto 2rem;
  display: block;
  box-shadow: var(--cgk-shadow);
}

/* =================================================================
   CONTACT FORM WRAPPER
   ================================================================= */
.cgk-contact-form,
.c40-contact-form {
  max-width: 760px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.cgk-contact-form iframe,
.c40-contact-form iframe {
  width: 100%;
  min-height: 1100px;
  border: 0;
}

/* =================================================================
   CATEGORY PAGE (intro-faq layout)
   ================================================================= */
.cgk-cat-hero {
  position: relative;
  height: 320px;
  max-height: 350px;
  overflow: hidden;
  background: var(--cgk-primary);
}
.cgk-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cgk-cat-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  max-width: var(--cgk-maxw);
  margin: 0 auto;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
}
.cgk-cat-hero h1 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .7);
  margin: 0;
}
.cgk-cat-intro {
  padding: 3rem 0 1.5rem;
}
.cgk-cat-intro p {
  font-size: 1.08rem;
  color: var(--cgk-text);
  max-width: 820px;
  margin: 0 auto 1em;
}
.cgk-cat-faq {
  background: var(--cgk-surface);
  padding: 3rem 0;
  border-top: 1px solid var(--cgk-line);
}
.cgk-cat-faq h2 { text-align: center; margin-bottom: 1.8rem; }
.cgk-cat-faq details {
  max-width: 820px;
  margin: 0 auto .8rem;
  background: var(--cgk-bg);
  border-radius: var(--cgk-radius);
  padding: 1rem 1.3rem;
  border-left: 3px solid var(--cgk-accent);
}
.cgk-cat-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--cgk-primary);
  font-size: 1.05rem;
  font-family: var(--cgk-font-body);
}
.cgk-cat-faq details[open] { background: #fff; }

/* =================================================================
   FOOTER (4 columns — french_columns + bistro feel)
   ================================================================= */
.cgk-footer {
  background: var(--cgk-primary);
  color: #f5efe0;
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}
.cgk-footer-inner {
  max-width: var(--cgk-maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.cgk-footer-col h3 {
  color: #fff;
  font-family: var(--cgk-font-h);
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  border-bottom: 2px solid var(--cgk-accent);
  padding-bottom: .3rem;
  display: inline-block;
}
.cgk-footer-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
  height: auto;
}
.cgk-footer-brand-pitch {
  font-size: .98rem;
  color: #e8dfc8;
  line-height: 1.65;
  margin: 0 0 1.2rem;
}
.cgk-footer-brand-cta {
  display: inline-block;
  color: var(--cgk-accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--cgk-accent);
  padding-bottom: 2px;
  font-family: var(--cgk-font-body);
}
.cgk-footer-brand-cta:hover { color: #fff; border-color: #fff; }
.cgk-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cgk-footer-links li { margin-bottom: .55rem; }
.cgk-footer-links a {
  color: #f5efe0;
  text-decoration: none;
  font-size: .96rem;
  transition: color .2s;
}
.cgk-footer-links a:hover { color: var(--cgk-accent); text-decoration: underline; }
.cgk-footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
}
.cgk-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5efe0;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.cgk-footer-social a:hover { background: var(--cgk-accent); color: #fff; }
.cgk-footer-bottom {
  max-width: var(--cgk-maxw);
  margin: 2.5rem auto 0;
  padding: 1.4rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  font-size: .86rem;
  color: #c8bca0;
}

/* =================================================================
   PAGE TEMPLATES — generic .cgk-page wrapper
   ================================================================= */
.cgk-page {
  background: var(--cgk-surface);
  padding: 3.5rem 0;
}
.cgk-page-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cgk-page-inner h1 {
  text-align: center;
  margin-bottom: 1.4rem;
}
.cgk-page-inner h2 {
  margin-top: 2rem;
  color: var(--cgk-accent);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .cgk-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cgk-articles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cgk-cat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .cgk-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cgk-footer-col h3 { margin-left: auto; margin-right: auto; }
  .cgk-footer-social { justify-content: center; }
  .cgk-articles-grid, .cgk-cat-grid {
    grid-template-columns: 1fr;
  }
  .cgk-hero { min-height: 60vh; }
  .cgk-hero-inner { padding: 3rem 1.2rem 2.5rem; }
}

/* =================================================================
   ACCESSIBILITY / FOCUS
   ================================================================= */
:focus-visible {
  outline: 2px solid var(--cgk-accent);
  outline-offset: 2px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .cgk-hero-bg { transform: none !important; }
}


/* === RP AGNOSTIC ANTI-FOOTPRINT FIXES === */
/* Auto-append par child_theme_builder pour garantir les regles anti-empreinte (cat-hero, burger, footer, etc.) meme quand Claude override le style.css custom. */
body section[class*="cat-hero"], body div[class*="cat-hero"] {
  position: relative !important;
  width: 100% !important; max-width: 100% !important;
  margin-left: 0 !important; margin-right: 0 !important;
  left: 0 !important; right: 0 !important;
  height: 360px !important; min-height: 360px !important; max-height: 360px !important;
  padding: 0 !important; overflow: hidden !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important;
  border: none !important; box-shadow: none !important; outline: none !important;
  box-sizing: border-box !important;
}
/* Aussi force le parent <main> a etre full-width pour eviter cap a 1024 */
body main, body [class*="lda-main"], body [class*="bdf-main"], body [class*="c40-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
   (.c40-, .bdf-, .lda-, etc.) via [class*="burger"].
*/
@media (max-width: 1023px) {
  body [class*="burger"], body button[class*="burger"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 42px !important;
    min-height: 42px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 100 !important;
  }
}
@media (min-width: 1024px) {
  body [class*="burger"], body button[class*="burger"] {
    display: none !important;
  }
}

/* [2026-06-17] BURGER PARENT FIX : si un wrapper du header contient un
   burger, force-le visible en mobile. Claude met parfois le burger DANS un
   wrapper "cta-wrap" qui est display:none en mobile -> burger invisible.
*/
/* [2026-06-17] FOOTER COLOR HERITAGE — Force le footer ENTIER à hériter
   de la couleur du body. Claude définit parfois color:var(--bg) sur le footer
   (utile si bg sombre, illisible si bg clair). On force color:inherit → texte
   reste lisible peu importe le bg footer.
*/
body footer, body [class*="footer"]:not([class*="logo"]):not([class*="brand-logo"]) {
  color: inherit !important;
}

/* [2026-06-17] FOOTER LINKS HERITAGE — Force les liens à hériter du texte.
   Claude définit parfois color: var(--bg) sur les liens footer (utile si bg
   sombre, mais illisible si bg clair). On force color:inherit qui suit le
   texte parent → toujours lisible. underline pour distinguer du texte normal.
*/
body footer ul li a, body footer ol li a,
body [class*="footer"] ul li a:not([class*="btn"]):not([class*="cta"]),
body footer [class*="link"]:not([class*="brand"]):not([class*="btn"]) {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 1px !important;
  text-decoration-color: currentColor !important;
  opacity: 0.85 !important;
  transition: opacity .2s ease !important;
}
body footer ul li a:hover, body footer ol li a:hover,
body [class*="footer"] ul li a:hover {
  opacity: 1 !important;
  text-decoration-thickness: 2px !important;
}

/* [2026-06-17] BURGER STYLE — 3 barres visibles + hover/animation.
   Le bouton burger Claude est souvent un <button> avec 3 <span> dedans qui
   représentent les barres, mais sans CSS la cible est un carré vide.
   Force ici un style propre, agnostique au prefixe.
*/
body [class*="burger"] {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 6px;
  cursor: pointer !important;
  padding: 8px;
  color: inherit;
  transition: background .2s ease, border-color .2s ease !important;
}
body [class*="burger"]:hover, body [class*="burger"]:focus-visible {
  background: rgba(0,0,0,0.06);
  border-color: var(--c40-accent, currentColor);
}
/* Container des 3 barres (peut s'appeler "bars", "lines", etc.) */
body [class*="burger"] > [class*="bar"],
body [class*="burger"] > [class*="line"],
body [class*="burger"] > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 16px;
  gap: 0;
}
/* Les 3 barres elles-mêmes */
body [class*="burger"] [class*="bar"] > span,
body [class*="burger"] [class*="line"] > span,
body [class*="burger"] > span > span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  margin: 2px 0;
  transition: transform .25s ease, opacity .25s ease !important;
}
/* Etat ouvert : transforme en X */
body [class*="burger"][aria-expanded="true"] [class*="bar"] > span:nth-child(1),
body [class*="burger"][aria-expanded="true"] [class*="line"] > span:nth-child(1),
body [class*="burger"][aria-expanded="true"] > span > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg) !important;
}
body [class*="burger"][aria-expanded="true"] [class*="bar"] > span:nth-child(2),
body [class*="burger"][aria-expanded="true"] [class*="line"] > span:nth-child(2),
body [class*="burger"][aria-expanded="true"] > span > span:nth-child(2) {
  opacity: 0 !important;
}
body [class*="burger"][aria-expanded="true"] [class*="bar"] > span:nth-child(3),
body [class*="burger"][aria-expanded="true"] [class*="line"] > span:nth-child(3),
body [class*="burger"][aria-expanded="true"] > span > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg) !important;
}

@media (max-width: 1023px) {
  body header [class*="cta-wrap"]:has([class*="burger"]),
  body header > div:has([class*="burger"]),
  body [class*="header"] [class*="-wrap"]:has([class*="burger"]),
  body [class*="header-inner"] > div:has([class*="burger"]) {
    display: flex;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* [2026-06-19] FIX contraste boutons (anti bouton invisible) */
html body a[class*="btn--primary"], html body button[class*="btn--primary"],
html body a[class*="btn-primary"], html body button[class*="btn-primary"],
html body a[class*="-cta"]:not([class*="ghost"]):not([class*="link"]),
html body button[class*="-cta"]:not([class*="ghost"]):not([class*="link"]) {
  color: #ffffff !important;
}
html body a[class*="btn--ghost"], html body button[class*="btn--ghost"],
html body a[class*="btn--secondary"], html body button[class*="btn--secondary"],
html body a[class*="btn-secondary"], html body button[class*="btn-secondary"] {
  color: var(--c40-text, #1a1a1a) !important;
}

/* [2026-06-19] PERSONA shape variation seedee : rounded-square (16px) */
html body img[class*="persona"],
html body img[class*="author"],
html body img[class*="author-photo"],
html body img[class*="persona-photo"],
html body img[class*="redaction"],
html body img[class*="about-photo"],
html body img[class*="team-photo"],
html body img[class*="profile"],
html body [class*="persona"] > img,
html body [class*="author"] > img:not([class*="logo"]),
html body [class*="about"] img:not([class*="logo"]):not([class*="brand"]) {
  border-radius: 16px !important;
}

/* Validator: cap hauteur hero cat v2 */
body section[class*="cat-hero"], body div[class*="cat-hero"], body section[class*="category-hero"], body div[class*="category-hero"] { position: relative !important; height: 320px !important; max-height: 320px !important; min-height: 200px !important; padding: 0 !important; overflow: hidden !important; display: flex !important; align-items: center !important; border: none !important; box-shadow: none !important; }
body [class*="cat-hero"] > img, body [class*="cat-hero-bg"], body [class*="cat-hero"] img, body [class*="category-hero"] img { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; max-height: 320px !important; object-fit: cover !important; z-index: 0 !important; border: none !important; }
body [class*="cat-hero"] > [class*="container"], body [class*="cat-hero"] > [class*="wrap"], body [class*="cat-hero"] > [class*="inner"], body [class*="cat-hero"] > div { position: relative !important; z-index: 2 !important; max-width: 900px !important; margin: 0 auto !important; padding: 1.5rem 2rem !important; background: transparent !important; }
body [class*="cat-hero"] h1, body [class*="category-hero"] h1 { color: #ffffff !important; font-size: clamp(2rem, 5vw, 3.5rem) !important; margin: 0 !important; font-weight: 800 !important; text-shadow: 0 3px 12px rgba(0,0,0,.85), 0 0 30px rgba(0,0,0,.5) !important; }
body [class*="cat-hero"][style*="background-image"] { background-size: cover !important; background-position: center !important; }
body [class*="cat-hero"] [class*="breadcrumb"], body [class*="cat-hero"] nav[aria-label*="riane"], body [class*="cat-hero"] nav[aria-label*="readcrumb"] { display: none !important; }

/* Validator: nav-mobile drawer hidden by default v2 */
/* Drawer/burger menu mobile : hidden par defaut, visible mobile+is-open */
[class*="-nav-mobile"]:not(.is-open), [id*="-nav-mobile"]:not(.is-open), [class*="-drawer"]:not(.is-open), [class*="-burger-menu"]:not(.is-open), [class*="-mobile-menu"]:not(.is-open) { display: none !important; }
@media (max-width: 980px) {
  [class*="-nav-mobile"].is-open, [id*="-nav-mobile"].is-open, [class*="-drawer"].is-open, [class*="-burger-menu"].is-open, [class*="-mobile-menu"].is-open { display: flex !important; flex-direction: column !important; position: fixed !important; top: 0 !important; right: 0 !important; bottom: 0 !important; width: 86% !important; max-width: 380px !important; background: #fff !important; padding: 4.5rem 1.5rem 2rem !important; z-index: 9999 !important; overflow-y: auto !important; box-shadow: -10px 0 30px rgba(0,0,0,0.3) !important; }
}

/* Validator: drawer-mobile height fix v1 */
/* Force height:100vh sur le drawer ouvert : top:0;bottom:0 sans !important peut etre overrides par Claude → on impose 100vh. */
/* [2026-06-06] Broadening : ajout patterns supplementaires (X-nav sans 'mobile', X-side, X-menu-drawer, etc.) sinon le validator manque les sites comme artois-moto.com qui utilise fe8-nav (sans 'mobile' dans le nom). */
@media (max-width: 1023px) {
  [class*="-nav-mobile"].is-open, [id*="-nav-mobile"].is-open, [class*="-drawer"].is-open, [class*="-burger-menu"].is-open, [class*="-mobile-menu"].is-open, [class*="-side-nav"].is-open, [class*="-side-menu"].is-open, [class*="-offcanvas"].is-open, nav[aria-label*="mobile" i].is-open, nav[aria-label*="Menu mobile" i].is-open, nav[id*="nav"].is-open[class*="-nav"]:not([class*="desktop"]) { height: 100vh !important; min-height: 100vh !important; max-height: 100vh !important; }
}

/* Validator: footer logo no-filter v1 */
footer img, [class*="-footer"] img, [role="contentinfo"] img, footer [class*="logo"], [class*="-footer"] [class*="logo"] { filter: none !important; mix-blend-mode: normal !important; opacity: 1 !important; }
footer[class*="dark"] img, footer[class*="black"] img, [class*="-footer"][class*="dark"] img, [class*="-footer"][class*="black"] img { filter: brightness(0) invert(1) !important; }

/* Validator: header-hero gap fix v1 */
/* Bug recurrent : <main class="X-main"> a padding-top:30px qui creait un
 * gap entre header sticky et hero/cat-hero. Force padding-top:0 sur le
 * wrapper <main> + margin-top:0 sur le 1er hero enfant. */
body > main, body > [role="main"], main[class*="-main"], [id="main"] { padding-top: 0 !important; }
main > [class*="-hero"]:first-child, main > [class*="-cat-hero"]:first-child, main > [class*="-category-hero"]:first-child { margin-top: 0 !important; }
/* Fallback : si sibling direct du header */
header + section, header + [class*="-hero"], header + [class*="-cat-hero"], header + [class*="-category-hero"], [class*="-header"] + section, [class*="-header"] + [class*="-hero"], [class*="-header"] + [class*="-cat-hero"], [class*="-header"] + [class*="-category-hero"] { margin-top: 0 !important; padding-top: 0 !important; }
section[class*="-hero"]:first-of-type, section[class*="-cat-hero"]:first-of-type, section[class*="-category-hero"]:first-of-type { margin-top: 0 !important; }

/* Validator: contraste lisible header+menu-mobile+footer v2 */
[class*="-nav-mobile"], [id*="-nav-mobile"], [class*="-drawer"], [class*="-burger-menu"], [class*="-mobile-menu"], [class*="-side-nav"] { background: #ffffff !important; }
[class*="-nav-mobile"] *, [id*="-nav-mobile"] *, [class*="-drawer"] *, [class*="-burger-menu"] *, [class*="-mobile-menu"] *, [class*="-side-nav"] * { color: #0a0a0a !important; }
[class*="-nav-mobile"] a, [id*="-nav-mobile"] a, [class*="-drawer"] a, [class*="-burger-menu"] a, [class*="-mobile-menu"] a { color: #0a0a0a !important; font-weight: 600 !important; }
[class*="-nav-mobile"] a:hover, [class*="-drawer"] a:hover, [class*="-burger-menu"] a:hover, [class*="-mobile-menu"] a:hover { color: #000 !important; opacity: 0.7 !important; }
footer *, [class*="-footer"] *, [role="contentinfo"] * { color: #1a1a1a !important; }
footer a, [class*="-footer"] a, [role="contentinfo"] a { color: #1a1a1a !important; text-decoration: underline !important; text-decoration-color: currentColor !important; text-underline-offset: 3px !important; font-weight: 600 !important; }
footer a:hover, [class*="-footer"] a:hover, [role="contentinfo"] a:hover { color: #000 !important; opacity: 1 !important; }
footer h1, footer h2, footer h3, footer h4, footer h5, [class*="-footer"] h1, [class*="-footer"] h2, [class*="-footer"] h3, [class*="-footer"] h4, [class*="-footer"] h5 { color: #0a0a0a !important; font-weight: 700 !important; }
footer p, footer span, footer li, [class*="-footer"] p, [class*="-footer"] span, [class*="-footer"] li { color: #2a2a2a !important; }
footer[class*="dark"] *, footer[class*="black"] *, [class*="-footer"][class*="dark"] *, [class*="-footer"][class*="black"] *, footer[style*="background:#0"] *, footer[style*="background: #0"] *, footer[style*="background:#1"] *, footer[style*="background: #1"] *, footer[style*="background:#2"] *, footer[style*="background: #2"] * { color: #f5f5f5 !important; }
footer[class*="dark"] a, [class*="-footer"][class*="dark"] a, footer[style*="background:#0"] a, footer[style*="background:#1"] a { color: #ffffff !important; }
header a, [class*="-header"] a, [role="banner"] a { text-shadow: none !important; }
header a:hover, [class*="-header"] a:hover { opacity: 0.7 !important; }
[class*="-nav-mobile"] [class*="-btn"], [class*="-footer"] [class*="-btn"] { border: 1.5px solid currentColor !important; }

/* Validator: burger button always visible+clickable v2 */
/* === Burger button : VISIBLE + CLIQUABLE garanti === */
[class*="-burger"], [class*="burger-menu"], [class*="menu-toggle"], button[aria-controls*="nav"], button[aria-label*="menu" i] { color: #1a1a1a !important; pointer-events: auto !important; cursor: pointer !important; z-index: 100 !important; position: relative !important; user-select: none !important; -webkit-tap-highlight-color: transparent !important; background: rgba(255,255,255,0.92) !important; border-radius: 8px !important; border: 1.5px solid rgba(0,0,0,0.15) !important; box-shadow: 0 1px 3px rgba(0,0,0,0.12) !important; padding: 8px !important; }
[class*="-burger"] svg, [class*="burger-menu"] svg, [class*="menu-toggle"] svg, button[aria-controls*="nav"] svg { stroke: #1a1a1a !important; fill: none !important; pointer-events: none !important; stroke-width: 2.5 !important; width: 22px !important; height: 22px !important; }
[class*="-burger"] svg path, [class*="-burger"] svg line, [class*="-burger"] svg rect, [class*="-burger"] svg polyline { stroke: #1a1a1a !important; stroke-width: 2.5 !important; fill: none !important; }
[class*="-burger"]:hover, [class*="-burger"]:focus { background: rgba(255,255,255,1) !important; border-color: rgba(0,0,0,0.3) !important; outline: 2px solid rgba(0,0,0,0.15) !important; outline-offset: 1px !important; }
/* Si le header est sombre : inverse en clair (detection elargie) */
[class*="-header"][style*="background:#0"] [class*="-burger"], [class*="-header"][style*="background:#1"] [class*="-burger"], [class*="-header"][style*="background:#2"] [class*="-burger"], [class*="-header"][style*="background-color:#0"] [class*="-burger"], [class*="-header"][style*="background-color:#1"] [class*="-burger"], [class*="-header"][style*="background-color:#2"] [class*="-burger"], [class*="-header"][class*="dark"] [class*="-burger"], [class*="-header"][class*="black"] [class*="-burger"], [class*="-header"][class*="--dark"] [class*="-burger"], [class*="-header"][class*="-night"] [class*="-burger"] { color: #f5f5f5 !important; background: rgba(0,0,0,0.55) !important; border-color: rgba(255,255,255,0.4) !important; box-shadow: 0 1px 3px rgba(0,0,0,0.4) !important; }
[class*="-header"][style*="background:#0"] [class*="-burger"] svg, [class*="-header"][style*="background:#1"] [class*="-burger"] svg, [class*="-header"][class*="dark"] [class*="-burger"] svg, [class*="-header"][class*="black"] [class*="-burger"] svg { stroke: #f5f5f5 !important; }
@media (max-width: 1023px) {
  [class*="-burger"], button[aria-controls*="nav"] { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-width: 44px !important; min-height: 44px !important; }
}
@media (min-width: 1024px) {
  [class*="-burger"], button[aria-controls*="nav"] { display: none !important; }
}

/* Validator: nav-mobile-list visible inside open drawer v1 */
/* Burger drawer ouvert : la UL des liens DOIT etre visible. */
[class*="-nav-mobile"].is-open ul, [id*="-nav-mobile"].is-open ul, [class*="-nav-mobile"].is-open [class*="-nav-mobile-list"], [class*="-drawer"].is-open ul, [class*="-burger-menu"].is-open ul { display: block !important; visibility: visible !important; height: auto !important; max-height: none !important; overflow: visible !important; padding: 0 !important; margin: 0 !important; list-style: none !important; }
[class*="-nav-mobile"].is-open ul li, [id*="-nav-mobile"].is-open ul li, [class*="-drawer"].is-open ul li, [class*="-burger-menu"].is-open ul li { display: list-item !important; height: auto !important; padding: 0 !important; margin: 0 !important; list-style: none !important; }
[class*="-nav-mobile"].is-open ul li a, [id*="-nav-mobile"].is-open ul li a, [class*="-drawer"].is-open ul li a, [class*="-burger-menu"].is-open ul li a { display: block !important; padding: 0.9rem 0 !important; text-decoration: none !important; border-bottom: 1px solid rgba(0,0,0,0.08) !important; font-size: 1rem !important; }
