/* ==========================================================================
   Les Ateliers du Photographe — custom_theme/assets/css/style.css
   Design system: Luxe Champagne Brut (Forum + Cormorant)
   Palette : navy concurrent (#212e40) + champagne DB (#c79a3c / #F8F1E2)
   Préfixe custom anti-empreinte : .lap-*
   ========================================================================== */

:root {
  --lap-primary:    #212e40;
  --lap-accent:     #c79a3c;
  --lap-text:       #1F1810;
  --lap-text-soft:  #7A6A4A;
  --lap-bg:         #F8F1E2;
  --lap-surface:    #FAF4E5;
  --lap-line:       #D8C99E;
  --lap-white:      #ffffff;
  --lap-dark:       #141210;

  --b0c-primary:     #212e40;
  --b0c-accent:      #c79a3c;
  --b0c-text:        #1F1810;
  --b0c-bg:          #F8F1E2;
  --b0c-surface:     #FAF4E5;
  --b0c-line:        #D8C99E;

  --lap-font-head:  "Forum", Georgia, "Times New Roman", serif;
  --lap-font-body:  "Cormorant", "Cormorant Garamond", Georgia, serif;

  --lap-radius-sm:  4px;
  --lap-radius-md:  6px;
  --lap-radius-lg:  10px;

  --lap-shadow-sm:  0 2px 8px -2px rgba(31,24,16,.10);
  --lap-shadow-md:  0 8px 24px -8px rgba(31,24,16,.18);
  --lap-shadow-lg:  0 18px 40px -16px rgba(31,24,16,.28);

  --lap-container:  1240px;
  --lap-gutter:     1.5rem;
}

/* --------------------------------------------------------------------------
   BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body, .lap-body, .b0c-body {
  margin: 0;
  font-family: var(--lap-font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--lap-text);
  background: var(--lap-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lap-font-head);
  color: var(--lap-primary);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 .8rem;
  letter-spacing: .005em;
}

h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p, ul, ol { margin: 0 0 1rem; }
a { color: var(--lap-primary); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--lap-accent); }

img { max-width: 100%; height: auto; display: block; }

main, .lap-main, .b0c-main { padding-top: 0 !important; margin-top: 0 !important; }

.lap-container, .b0c-container {
  max-width: var(--lap-container);
  margin: 0 auto;
  padding: 0 var(--lap-gutter);
}

/* --------------------------------------------------------------------------
   BOUTONS
   -------------------------------------------------------------------------- */
.b0c-btn, .lap-btn {
  display: inline-block;
  padding: .75rem 1.4rem;
  font-family: var(--lap-font-head);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--lap-primary);
  background: transparent;
  color: var(--lap-primary);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
  border-radius: 0;
}
.b0c-btn:hover, .lap-btn:hover {
  background: var(--lap-primary);
  color: var(--lap-bg);
}

.b0c-btn--cta, .lap-btn--cta {
  background: var(--lap-accent);
  color: var(--lap-primary);
  border-color: var(--lap-accent);
  font-weight: 500;
}
.b0c-btn--cta:hover, .lap-btn--cta:hover {
  background: var(--lap-primary);
  color: var(--lap-accent);
  border-color: var(--lap-primary);
}

.b0c-btn--ghost, .lap-btn--ghost {
  border-color: var(--lap-line);
  color: var(--lap-text-soft);
}
.b0c-btn--ghost:hover, .lap-btn--ghost:hover {
  background: var(--lap-surface);
  color: var(--lap-primary);
  border-color: var(--lap-primary);
}

/* --------------------------------------------------------------------------
   HEADER  (logo-center-menu-split)
   -------------------------------------------------------------------------- */
.lap-header, .b0c-header {
  background: var(--lap-bg);
  border-bottom: 1px solid var(--lap-line);
  position: sticky;
  top: 0;
  z-index: 500;
  font-family: var(--lap-font-head);
}

.lap-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  padding: 1rem var(--lap-gutter);
  max-width: var(--lap-container);
  margin: 0 auto;
  min-height: 78px;
}

.lap-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--lap-primary);
  flex-shrink: 0;
}
.lap-brand-link { text-decoration: none; color: inherit; display: flex; align-items: center; gap: .6rem; }
.lap-brand-logo { display: block; width: auto; }
.lap-brand-name {
  font-family: var(--lap-font-head);
  font-size: 1.45rem;
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--lap-primary);
  white-space: nowrap;
}

/* Nav desktop split — gauche + brand + droite */
.lap-nav-desktop {
  display: none;
  align-items: center;
}
.lap-nav-desktop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lap-nav-desktop-list a {
  color: var(--lap-text);
  text-decoration: none;
  font-family: var(--lap-font-head);
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: lowercase;
  padding: .4rem .15rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.lap-nav-desktop-list a:hover,
.lap-nav-desktop-list .current-menu-item > a,
.lap-nav-desktop-list .current-cat > a {
  color: var(--lap-accent);
  border-bottom-color: var(--lap-accent);
}

.lap-header-cta-desktop {
  position: absolute;
  right: var(--lap-gutter);
  top: 50%;
  transform: translateY(-50%);
  padding: .55rem 1.1rem;
  font-size: .8rem;
  letter-spacing: .08em;
}

/* Burger */
.lap-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 8px;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(33,46,64,0.25);
  border-radius: 8px;
  color: var(--lap-primary);
  cursor: pointer;
  z-index: 10000;
  flex-shrink: 0;
  position: absolute;
  right: var(--lap-gutter);
  top: 50%;
  transform: translateY(-50%);
}
.lap-burger-bars,
.lap-burger > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 16px;
}
.lap-burger-bars > span,
.lap-burger > span > span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

/* Nav mobile drawer (hidden by default) */
.lap-nav-mobile {
  display: none;
}
.lap-nav-mobile.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 380px;
  background: var(--lap-bg);
  padding: 4.5rem 1.5rem 2rem;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}
.lap-nav-mobile-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.lap-nav-mobile-list li {
  border-bottom: 1px solid var(--lap-line);
}
.lap-nav-mobile-list a {
  display: block;
  padding: 1rem 0;
  color: var(--lap-primary);
  text-decoration: none;
  font-family: var(--lap-font-head);
  font-size: 1.1rem;
  text-transform: lowercase;
  letter-spacing: .03em;
}
.lap-nav-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: var(--lap-primary);
  cursor: pointer;
  line-height: 1;
  padding: .25rem .5rem;
}
.lap-drawer-cta {
  display: block;
  margin: 2rem 0 1.5rem;
  padding: 1rem 1.5rem;
  text-align: center;
  background: var(--lap-accent);
  color: var(--lap-primary);
  border-radius: var(--lap-radius-sm);
  font-family: var(--lap-font-head);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lap-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,18,16,0.55);
  z-index: 9998;
}
.lap-nav-overlay.is-open { display: block; }

/* Responsive — desktop ≥1024px nav inline, ≤1023px burger */
@media (min-width: 1024px) {
  .lap-nav-desktop { display: flex; }
  .lap-burger { display: none !important; }
}
@media (max-width: 1023px) {
  .lap-nav-desktop { display: none !important; }
  .lap-header-cta-desktop,
  [class*="-header"] [class*="-btn--cta"]:not([class*="-drawer-"]) {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .lap-drawer-cta { display: none !important; }
}

/* --------------------------------------------------------------------------
   HERO — split-50-50
   -------------------------------------------------------------------------- */
.lap-hero, .b0c-hero {
  background: var(--lap-bg);
  position: relative;
  overflow: hidden;
}
.lap-hero--split-50-50 .lap-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  align-items: stretch;
}
.lap-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  background: var(--lap-surface);
  border-right: 1px solid var(--lap-line);
}
.lap-hero-eyebrow {
  display: inline-block;
  font-family: var(--lap-font-head);
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--lap-accent);
  margin-bottom: 1.25rem;
}
.lap-hero-title {
  font-family: var(--lap-font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  color: var(--lap-primary);
  margin: 0 0 1.25rem;
  letter-spacing: -.01em;
}
.lap-hero-subtitle {
  font-family: var(--lap-font-body);
  font-size: 1.15rem;
  color: var(--lap-text);
  margin: 0 0 2rem;
  max-width: 32rem;
  line-height: 1.55;
}
.lap-hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.lap-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}
.lap-hero-img-wrap {
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .lap-hero--split-50-50 .lap-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lap-hero-text { padding: 3rem 1.5rem; border-right: 0; border-bottom: 1px solid var(--lap-line); }
  .lap-hero-img { min-height: 280px; max-height: 380px; }
}

/* --------------------------------------------------------------------------
   BLOC ÉDITORIAL SEO (after-hero, 400-700 mots)
   -------------------------------------------------------------------------- */
.lap-editorial {
  padding: 5rem var(--lap-gutter);
  background: var(--lap-bg);
  border-bottom: 1px solid var(--lap-line);
}
.lap-editorial-inner {
  max-width: 920px;
  margin: 0 auto;
}
.lap-editorial h2 {
  font-family: var(--lap-font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--lap-primary);
  margin: 0 0 1.5rem;
  text-align: center;
}
.lap-editorial h3 {
  font-family: var(--lap-font-head);
  font-size: 1.4rem;
  color: var(--lap-primary);
  margin: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--lap-line);
  padding-bottom: .5rem;
}
.lap-editorial p {
  font-family: var(--lap-font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--lap-text);
  margin: 0 0 1.25rem;
}
.lap-editorial-callout {
  background: var(--lap-surface);
  border-left: 3px solid var(--lap-accent);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--lap-text-soft);
  font-size: 1.05rem;
}
.lap-editorial a {
  color: var(--lap-primary);
  border-bottom: 1px solid var(--lap-accent);
  text-decoration: none;
  font-weight: 500;
}
.lap-editorial a:hover { color: var(--lap-accent); }

/* --------------------------------------------------------------------------
   CATEGORIES — grille de cartes
   -------------------------------------------------------------------------- */
.lap-categories {
  padding: 5rem var(--lap-gutter);
  background: var(--lap-surface);
}
.lap-section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.lap-section-eyebrow {
  display: inline-block;
  font-family: var(--lap-font-head);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--lap-accent);
  margin-bottom: .8rem;
}
.lap-section-title {
  font-family: var(--lap-font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--lap-primary);
  margin: 0;
}
.lap-section-sub {
  font-family: var(--lap-font-body);
  font-size: 1.05rem;
  color: var(--lap-text-soft);
  max-width: 600px;
  margin: .6rem auto 0;
}

.lap-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--lap-container);
  margin: 0 auto;
}
.lap-cat-card {
  background: var(--lap-bg);
  border: 1px solid var(--lap-line);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  min-height: 240px;
}
.lap-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lap-shadow-md);
}
.lap-cat-card-img {
  display: block;
  width: 100%;
  height: 65%;
  min-height: 150px;
  background-color: var(--lap-primary);
  background-size: cover;
  background-position: center;
}
.lap-cat-card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lap-cat-card-name {
  font-family: var(--lap-font-head);
  font-size: 1.15rem;
  color: var(--lap-primary);
  margin: 0;
  text-transform: lowercase;
  letter-spacing: .02em;
}
.lap-cat-card-arrow {
  display: inline-block;
  margin-top: .4rem;
  font-family: var(--lap-font-head);
  color: var(--lap-accent);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media (max-width: 1023px) { .lap-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .lap-cat-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   DERNIERS ARTICLES — grille 3x3
   -------------------------------------------------------------------------- */
.lap-latest {
  padding: 5rem var(--lap-gutter);
  background: var(--lap-bg);
}
.lap-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--lap-container);
  margin: 0 auto;
}
.lap-card {
  background: var(--lap-surface);
  border: 1px solid var(--lap-line);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow .25s;
}
.lap-card-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--lap-surface);
}
.lap-card-img--placeholder {
  background: var(--lap-primary);
  height: 220px;
  position: relative;
}
.lap-card-img--placeholder::after {
  content: '';
  position: absolute;
  inset: 30% 30%;
  border: 1px solid var(--lap-accent);
  opacity: .35;
}
.lap-card-body {
  padding: 1.5rem 1.4rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lap-card-cat {
  font-family: var(--lap-font-head);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lap-accent);
  margin: 0 0 .6rem;
}
.lap-card-title {
  font-family: var(--lap-font-head);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--lap-primary);
  margin: 0 0 .75rem;
}
.lap-card-excerpt {
  font-family: var(--lap-font-body);
  font-size: 1rem;
  color: var(--lap-text);
  margin: 0 0 1rem;
  flex: 1;
}
.lap-card-meta {
  font-family: var(--lap-font-body);
  font-size: .85rem;
  color: var(--lap-text-soft);
  display: flex;
  align-items: center;
  gap: .5rem;
  border-top: 1px solid var(--lap-line);
  padding-top: .75rem;
}
@media (max-width: 1023px) { .lap-article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .lap-article-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   CATEGORY HERO (page catégorie)
   -------------------------------------------------------------------------- */
.lap-cat-hero {
  position: relative;
  height: 320px;
  max-height: 350px;
  overflow: hidden;
  border-bottom: 1px solid var(--lap-line);
}
.lap-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.lap-cat-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem var(--lap-gutter);
  background: linear-gradient(180deg, transparent 30%, rgba(33,46,64,0.78) 100%);
  max-width: var(--lap-container);
  margin: 0 auto;
}
.lap-cat-hero-title {
  color: #fff;
  font-family: var(--lap-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  text-transform: lowercase;
}

/* --------------------------------------------------------------------------
   SINGLE / PAGE GENERIC
   -------------------------------------------------------------------------- */
.lap-page-content,
.lap-single-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem var(--lap-gutter) 4rem;
  font-family: var(--lap-font-body);
  font-size: 1.1rem;
  line-height: 1.75;
}
.lap-page-content h1, .lap-single-content h1 { margin-top: 0; }
.lap-persona-photo,
.b0c-persona-photo {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--lap-radius-sm);
  margin: 0 auto 2rem;
  display: block;
  box-shadow: var(--lap-shadow-md);
  border: 1px solid var(--lap-line);
}
.lap-page-content a,
.lap-single-content a {
  color: var(--lap-primary);
  text-decoration: underline;
  text-decoration-color: var(--lap-accent);
  text-underline-offset: 4px;
}
.b0c-contact-form {
  max-width: 760px;
  margin: 2.5rem auto;
  padding: 0 var(--lap-gutter);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.lap-footer, .b0c-footer {
  background: var(--lap-dark);
  color: #ece2c9;
  padding: 4rem var(--lap-gutter) 2rem;
  font-family: var(--lap-font-body);
}
.lap-footer-inner, .b0c-footer-inner {
  max-width: var(--lap-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem 2rem;
}
.lap-footer-col h3, .b0c-footer-col h3 {
  font-family: var(--lap-font-head);
  font-size: 1rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lap-accent);
  margin: 0 0 1.25rem;
  font-weight: 400;
}
.lap-footer-col ul, .b0c-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lap-footer-col li, .b0c-footer-col li {
  margin-bottom: .65rem;
}
.lap-footer-col a, .b0c-footer-col a {
  color: #f0e6cc;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: .95rem;
  transition: color .2s;
}
.lap-footer-col a:hover, .b0c-footer-col a:hover {
  color: var(--lap-accent);
}
.lap-footer-logo, .b0c-footer-logo {
  display: block;
  margin-bottom: 1rem;
  height: auto;
  width: 120px;
}
.lap-footer-brand-pitch, .b0c-footer-brand-pitch {
  font-size: .98rem;
  line-height: 1.65;
  color: #d4caa8;
  margin: 0 0 1.25rem;
}
.lap-footer-brand-cta, .b0c-footer-brand-cta {
  display: inline-block;
  padding: .55rem 1rem;
  background: transparent;
  border: 1px solid var(--lap-accent);
  color: var(--lap-accent);
  text-decoration: none;
  font-family: var(--lap-font-head);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.lap-footer-brand-cta:hover, .b0c-footer-brand-cta:hover {
  background: var(--lap-accent);
  color: var(--lap-dark);
}

.lap-footer-bottom, .b0c-footer-bottom {
  max-width: var(--lap-container);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: #b3a584;
}
.lap-footer-bottom a, .b0c-footer-bottom a {
  color: #b3a584;
  text-decoration: underline;
}
.lap-footer-social {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lap-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--lap-accent);
  color: var(--lap-accent);
  text-decoration: none;
  border-radius: 50%;
  font-size: .85rem;
  font-family: var(--lap-font-head);
}
.lap-footer-social a:hover {
  background: var(--lap-accent);
  color: var(--lap-dark);
}

@media (max-width: 900px) {
  .lap-footer-inner, .b0c-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .lap-footer-inner, .b0c-footer-inner { grid-template-columns: 1fr; }
  .lap-footer-bottom, .b0c-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   ANIMATIONS (CTA/CTR/CTO)
   -------------------------------------------------------------------------- */
@keyframes lap-shake-on-hover {
  0%,100% { transform: translate3d(0,0,0); }
  20% { transform: translate3d(-2px,0,0); }
  40% { transform: translate3d(2px,0,0); }
  60% { transform: translate3d(-1px,0,0); }
  80% { transform: translate3d(1px,0,0); }
}
.b0c-btn--cta:hover, .lap-btn--cta:hover {
  animation: lap-shake-on-hover .45s ease-in-out;
}

@keyframes lap-map-pin-drop {
  0%   { transform: translateY(-12px) scale(.7); opacity: 0; }
  60%  { transform: translateY(2px) scale(1.1); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.b0c-related-link::before, .lap-related-link::before {
  content: '\25CF';
  display: inline-block;
  margin-right: .4rem;
  color: var(--lap-accent);
  animation: lap-map-pin-drop .55s ease-out;
}

@keyframes lap-chat-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(199,154,60,.45); }
  50%     { box-shadow: 0 0 0 14px rgba(199,154,60,0); }
}
.b0c-cto-bubble, .lap-cto-bubble {
  animation: lap-chat-pulse 2.4s ease-in-out infinite;
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   MOUSE EFFECT — card_hover_soft_tilt
   -------------------------------------------------------------------------- */
.b0c-card, .lap-card, [data-lap-tilt] {
  transition: transform .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
@media (hover: hover) {
  .b0c-card:hover, .lap-card:hover, [data-lap-tilt]:hover {
    box-shadow: var(--lap-shadow-lg);
  }
}
@media (hover: none) {
  .b0c-card, .lap-card, [data-lap-tilt] { transform: none !important; }
}

/* --------------------------------------------------------------------------
   ACCESSIBILITY
   -------------------------------------------------------------------------- */
.lap-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 2px solid var(--lap-accent);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   UTILS
   -------------------------------------------------------------------------- */
.lap-text-center { text-align: center; }
.lap-mt-2 { margin-top: 2rem; }
.lap-mb-2 { margin-bottom: 2rem; }


/* === 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*="b0c-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
   (.b0c-, .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(--b0c-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(--b0c-text, #1a1a1a) !important;
}

/* [2026-06-19] PERSONA shape variation seedee : circle-soft (40%) */
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: 40% !important;
}


/* Mouse effect : card_hover_soft_tilt */
.b0c-card, .lap-card, [data-lap-tilt] { transition: transform .25s ease, box-shadow .25s ease; transform-style: preserve-3d; will-change: transform; } @media (hover: hover) { .b0c-card:hover, .lap-card:hover, [data-lap-tilt]:hover { box-shadow: 0 18px 40px -16px rgba(31,24,16,.28); } } @media (hover: none) { .b0c-card, .lap-card, [data-lap-tilt] { transform: none !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; }
