/* =========================================================
   Ecole Pizzaiolo - Custom CSS (Design: Pop Ballons Fete fonts
   + Pizza Red competitor palette)
   ========================================================= */

:root {
  --cc6-primary:    #b01010;
  --cc6-primary-d:  #8a0c0c;
  --cc6-accent:     #168008;
  --cc6-accent-d:   #0e5a05;
  --cc6-text:       #0d0d0d;
  --cc6-text-soft:  #8a8282;
  --cc6-bg:         #FFFCF7;
  --cc6-surface:    #FFFFFF;
  --cc6-line:       #dbd9d7;
  --cc6-shadow:     0 10px 30px rgba(0,0,0,.06);
  --cc6-radius-lg:  20px;
  --cc6-radius-md:  12px;
  --cc6-radius-sm:  8px;
  --cc6-font-head:  'Fredoka One', 'Nunito', system-ui, sans-serif;
  --cc6-font-body:  'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.cc6-body {
  margin: 0; padding: 0;
  font-family: var(--cc6-font-body);
  color: var(--cc6-text);
  background: var(--cc6-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: var(--cc6-font-head);
  font-weight: 400;
  color: var(--cc6-text);
  margin: 0 0 .6em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--cc6-primary); text-decoration: none; transition: color .18s; }
a:hover { color: var(--cc6-primary-d); }
img { max-width: 100%; height: auto; display: block; }
main, .cc6-main { padding-top: 0 !important; margin-top: 0 !important; }
.cc6-container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- BUTTONS ---------- */
.cc6-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.6rem;
  border-radius: 999px;
  font-family: var(--cc6-font-head);
  font-size: 1rem; font-weight: 400;
  text-decoration: none;
  transition: transform .15s, background .15s, box-shadow .15s;
  border: 0; cursor: pointer;
}
.cc6-btn--cta {
  background: var(--cc6-primary); color: #fff;
  box-shadow: 0 6px 18px rgba(176,16,16,.32);
}
.cc6-btn--cta:hover { background: var(--cc6-primary-d); color: #fff; transform: translateY(-2px); }
.cc6-btn--ghost {
  background: transparent; color: #fff;
  border: 2px solid #fff;
}
.cc6-btn--ghost:hover { background: #fff; color: var(--cc6-primary); }
.cc6-btn--accent {
  background: var(--cc6-accent); color: #fff;
}
.cc6-btn--accent:hover { background: var(--cc6-accent-d); color: #fff; }

/* ---------- HEADER (logo-left-menu-center-cta-right WITHOUT CTA - so logo left, menu centered, no CTA) ---------- */
.cc6-header {
  background: var(--cc6-surface);
  border-bottom: 3px solid var(--cc6-primary);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.cc6-header-inner {
  display: flex; align-items: center;
  gap: 2rem;
  padding: .7rem 1.25rem;
  max-width: 1280px; margin: 0 auto;
  min-height: 78px;
}
.cc6-brand-link { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex: 0 0 auto; }
.cc6-brand-logo { width: 56px; height: 56px; object-fit: contain; }
.cc6-brand-name {
  font-family: var(--cc6-font-head);
  font-size: 1.45rem;
  color: var(--cc6-primary);
  letter-spacing: .01em;
  /* Title Case style B: no text-transform */
  line-height: 1.1;
  font-weight: 400;
}
.cc6-nav-desktop { display: none; flex: 1; justify-content: center; }
.cc6-nav-desktop-list {
  display: flex; gap: 1.4rem;
  list-style: none; margin: 0; padding: 0;
  align-items: center; flex-wrap: wrap;
}
.cc6-nav-desktop-list a {
  color: var(--cc6-text);
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
  padding: .4rem .15rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  font-family: var(--cc6-font-body);
}
.cc6-nav-desktop-list a:hover, .cc6-nav-desktop-list a:focus {
  color: var(--cc6-primary);
  border-bottom-color: var(--cc6-primary);
}
.cc6-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  color: var(--cc6-text); margin-left: auto;
}
.cc6-burger svg { width: 28px; height: 28px; }

/* Desktop: nav visible, burger hidden */
@media (min-width: 1024px) {
  .cc6-nav-desktop { display: flex; }
  .cc6-burger { display: none !important; }
}

/* Mobile drawer */
.cc6-nav { display: none; }
@media (max-width: 1023px) {
  .cc6-nav.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 86%; max-width: 380px;
    background: #ffffff; padding: 4.5rem 1.5rem 2rem;
    z-index: 9999; overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .cc6-nav.is-open ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 0;
  }
  .cc6-nav.is-open ul li { border-bottom: 1px solid var(--cc6-line); }
  .cc6-nav.is-open ul li a {
    display: block; padding: .9rem .25rem;
    color: #0a0a0a; font-weight: 700; font-size: 1.05rem;
    text-decoration: none;
    font-family: var(--cc6-font-body);
  }
  .cc6-nav.is-open ul li a:hover { color: var(--cc6-primary); }
  .cc6-nav-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 40px; height: 40px;
    border: 0; background: transparent; cursor: pointer;
    color: #0a0a0a;
  }
  .cc6-nav-close svg { width: 26px; height: 26px; }
  .cc6-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    z-index: 9998; display: none;
  }
  .cc6-nav-overlay.is-open { display: block; }
}

/* ---------- HERO (dual-cta-banner with YouTube video bg) ---------- */
.cc6-hero {
  position: relative; overflow: hidden;
  min-height: 72vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.cc6-hero--has-video { background: #0a0a0a; }
.cc6-hero-video-wrap {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.cc6-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;
}
.cc6-hero--has-video .cc6-hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
}
.cc6-hero-inner {
  position: relative; z-index: 2;
  max-width: 880px; padding: 4rem 1.5rem;
}
.cc6-hero--has-video .cc6-hero-title,
.cc6-hero--has-video .cc6-hero-subtitle,
.cc6-hero--has-video .cc6-hero-eyebrow {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.cc6-hero-eyebrow {
  display: inline-block;
  padding: .35rem .9rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  font-family: var(--cc6-font-body);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #fff;
}
.cc6-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-family: var(--cc6-font-head);
  margin: 0 0 1rem;
  line-height: 1.05;
  color: #b01010;
}
.cc6-hero--has-video .cc6-hero-title {
  color: #b01010;
}
.cc6-hero-title-sub {
  display: block;
  color: #fff !important;
  font-family: var(--cc6-font-head);
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  line-height: 1.1;
  margin-top: .5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.cc6-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-family: var(--cc6-font-body);
  font-weight: 500;
  max-width: 640px; margin: 0 auto 2rem;
  line-height: 1.55;
}
.cc6-hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cc6-hero-ctas .cc6-btn { font-size: 1.05rem; padding: .9rem 1.8rem; }

/* ---------- EDITORIAL BLOCK ---------- */
.cc6-editorial {
  padding: 4rem 1.25rem 3rem;
  background: var(--cc6-bg);
}
.cc6-editorial-inner { max-width: 980px; margin: 0 auto; }
.cc6-editorial h2 {
  color: var(--cc6-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 2rem;
}
.cc6-editorial h2:first-child { margin-top: 0; }
.cc6-editorial h3 {
  color: var(--cc6-accent);
  margin-top: 1.6rem;
  font-size: 1.2rem;
}
.cc6-editorial p {
  color: var(--cc6-text);
  font-size: 1.05rem; line-height: 1.75;
}
.cc6-editorial-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  border-left: 4px solid var(--cc6-primary);
  padding-left: 1.4rem;
  margin: 0 0 2rem;
  color: var(--cc6-text);
}
.cc6-editorial-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin: 1.8rem 0 2.5rem;
}
.cc6-editorial-pillar {
  background: var(--cc6-surface);
  border: 1px solid var(--cc6-line);
  border-radius: var(--cc6-radius-md);
  padding: 1.3rem;
}
.cc6-editorial-pillar h3 {
  color: var(--cc6-primary);
  margin: 0 0 .5rem;
  font-size: 1.15rem;
}
.cc6-editorial-pillar p { margin: 0; font-size: .98rem; }
.cc6-editorial-line {
  background: linear-gradient(135deg, var(--cc6-primary) 0%, var(--cc6-primary-d) 100%);
  color: #fff;
  padding: 1.8rem 1.6rem;
  border-radius: var(--cc6-radius-md);
  margin: 2rem 0;
}
.cc6-editorial-line h3 {
  color: #fff;
  margin: 0 0 .5rem;
  font-family: var(--cc6-font-head);
  font-size: 1.3rem;
}
.cc6-editorial-line p { color: #fff; margin: 0; }
.cc6-editorial a.cc6-internal-link {
  color: var(--cc6-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ---------- CATEGORIES GRID ---------- */
.cc6-categories {
  padding: 3.5rem 1.25rem;
  background: var(--cc6-surface);
}
.cc6-categories-inner { max-width: 1180px; margin: 0 auto; }
.cc6-section-title {
  text-align: center;
  color: var(--cc6-primary);
  margin: 0 0 .5rem;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}
.cc6-section-lead {
  text-align: center;
  color: var(--cc6-text-soft);
  max-width: 580px; margin: 0 auto 2.2rem;
  font-size: 1.05rem;
}
.cc6-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.cc6-cat-card {
  display: block;
  background: var(--cc6-surface);
  border: 1px solid var(--cc6-line);
  border-radius: var(--cc6-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--cc6-text);
  transition: transform .25s, box-shadow .25s;
}
.cc6-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cc6-shadow);
}
.cc6-cat-card-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cc6-bg);
  position: relative;
}
.cc6-cat-card-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.cc6-cat-card:hover .cc6-cat-card-img { transform: scale(1.06); }
.cc6-cat-card-img-fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cc6-primary) 0%, var(--cc6-primary-d) 100%);
  color: #fff;
  font-family: var(--cc6-font-head);
  font-size: 2rem;
}
.cc6-cat-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.cc6-cat-card-title {
  margin: 0 0 .35rem;
  color: var(--cc6-primary);
  font-size: 1.2rem;
  font-family: var(--cc6-font-head);
}
.cc6-cat-card-desc {
  margin: 0;
  color: var(--cc6-text-soft);
  font-size: .92rem; line-height: 1.5;
}

/* ---------- LATEST ARTICLES ---------- */
.cc6-latest {
  padding: 4rem 1.25rem;
  background: var(--cc6-bg);
}
.cc6-latest-inner { max-width: 1180px; margin: 0 auto; }
.cc6-art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .cc6-art-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cc6-art-grid { grid-template-columns: 1fr; } }
.cc6-art-card {
  background: var(--cc6-surface);
  border: 1px solid var(--cc6-line);
  border-radius: var(--cc6-radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.cc6-art-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cc6-shadow);
}
.cc6-art-thumb-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cc6-bg);
}
.cc6-art-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cc6-art-thumb-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cc6-primary) 0%, var(--cc6-accent) 100%);
}
.cc6-art-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.cc6-art-cat {
  display: inline-block;
  color: var(--cc6-accent);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .35rem;
  text-decoration: none;
}
.cc6-art-title {
  margin: 0 0 .6rem;
  font-size: 1.1rem;
  font-family: var(--cc6-font-head);
}
.cc6-art-title a { color: var(--cc6-text); text-decoration: none; }
.cc6-art-title a:hover { color: var(--cc6-primary); }
.cc6-art-excerpt {
  color: var(--cc6-text-soft);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 .9rem;
  flex: 1;
}
.cc6-art-meta {
  font-size: .82rem;
  color: var(--cc6-text-soft);
  display: flex; gap: .6rem; align-items: center;
}

.cc6-no-articles {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--cc6-surface);
  border: 1px dashed var(--cc6-line);
  border-radius: var(--cc6-radius-md);
}
.cc6-no-articles p { color: var(--cc6-text-soft); margin: 0 0 1rem; }

/* ---------- TOOL EMBED (on home) ---------- */
.cc6-tool-section {
  padding: 4rem 1.25rem;
  background: linear-gradient(180deg, var(--cc6-bg) 0%, #ffe9e9 100%);
}
.cc6-tool-section-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.cc6-tool-section h2 { color: var(--cc6-primary); margin-bottom: .5rem; }
.cc6-tool-section .cc6-tool-lead {
  color: var(--cc6-text);
  max-width: 640px; margin: 0 auto 2rem;
}

/* ---------- METRICS LINKS ---------- */
.cc6-metrics-links {
  padding: 2.5rem 1.25rem;
  background: var(--cc6-surface);
  border-top: 1px solid var(--cc6-line);
  border-bottom: 1px solid var(--cc6-line);
}
.cc6-metrics-inner {
  max-width: 1180px; margin: 0 auto;
  text-align: center;
}
.cc6-metrics-inner h3 {
  color: var(--cc6-accent);
  font-size: 1.15rem; margin: 0 0 1rem;
}
.cc6-metrics-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.2rem 2rem; flex-wrap: wrap; justify-content: center;
}
.cc6-metrics-list a {
  color: var(--cc6-text); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- CATEGORY (single category page) ---------- */
.cc6-cat-hero {
  position: relative;
  height: 320px; max-height: 350px;
  overflow: hidden;
}
.cc6-cat-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.cc6-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: 1180px; margin: 0 auto;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.78) 100%);
}
.cc6-cat-hero-title {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
}
.cc6-cat-hero-fallback {
  height: 320px;
  background: linear-gradient(135deg, var(--cc6-primary) 0%, var(--cc6-primary-d) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.cc6-cat-hero-fallback .cc6-cat-hero-title { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.3); }

.cc6-cat-content { padding: 3rem 1.25rem; max-width: 1180px; margin: 0 auto; }
.cc6-cat-intro { font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; max-width: 820px; }
.cc6-cat-outro { font-size: 1rem; line-height: 1.7; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--cc6-line); max-width: 820px; }

/* ---------- PERSONA PHOTO (about page) ---------- */
.cc6-persona-photo {
  display: block;
  max-width: 320px;
  height: auto;
  border-radius: var(--cc6-radius-md);
  margin: 1.4rem auto;
  box-shadow: var(--cc6-shadow);
}

/* ---------- CONTACT (page form) ---------- */
.cc6-contact-form {
  margin: 2.5rem auto 1rem;
  max-width: 760px;
  border-radius: var(--cc6-radius-md);
  overflow: hidden;
}

/* ---------- FOOTER ---------- */
.cc6-footer {
  background: #1a1310;
  color: #f5f0e5;
  padding: 3.5rem 1.25rem 1.5rem;
  margin-top: 4rem;
  font-family: var(--cc6-font-body);
}
.cc6-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.2rem;
  max-width: 1180px; margin: 0 auto 2.5rem;
}
@media (max-width: 920px) {
  .cc6-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .cc6-footer-grid { grid-template-columns: 1fr; }
}
.cc6-footer-col h3, .cc6-footer-title {
  color: #ffce5c;
  font-family: var(--cc6-font-head);
  font-size: 1.05rem;
  margin: 0 0 1rem;
  font-weight: 400;
}
.cc6-footer-logo {
  display: block;
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}
.cc6-footer-brand-pitch {
  color: #f5f0e5;
  font-size: .95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.cc6-footer-brand-cta {
  display: inline-block;
  color: #ffce5c;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: .5rem;
}
.cc6-footer-brand-cta:hover { color: #ffe39c; }
.cc6-footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
}
.cc6-footer-links a {
  color: #f5f0e5;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: .92rem;
  font-weight: 500;
}
.cc6-footer-links a:hover { color: #ffce5c; }
.cc6-footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.cc6-footer-copyright {
  color: #d0c8be;
  font-size: .88rem;
  margin: 0;
}
.cc6-footer-social {
  display: flex; gap: .8rem; list-style: none; padding: 0; margin: 0;
}
.cc6-footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: #f5f0e5;
}
.cc6-footer-social a:hover { background: var(--cc6-primary); color: #fff; }

/* ---------- ANIMATIONS ---------- */
@keyframes cc6-ripple-click {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(176,16,16,.45); }
  50%  { transform: scale(.97); box-shadow: 0 0 0 14px rgba(176,16,16,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(176,16,16,0); }
}
.cc6-btn--cta:active { animation: cc6-ripple-click .42s ease-out; }

@keyframes cc6-slide-in-banner {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.cc6-ctr-banner { animation: cc6-slide-in-banner .55s cubic-bezier(.22,.61,.36,1) both; }

@keyframes cc6-form-slide-in {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cc6-cto-form, .cc6-contact-form { animation: cc6-form-slide-in .5s ease-out both; }

@keyframes cc6-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cc6-art-card, .cc6-cat-card { animation: cc6-fade-up .55s ease both; }

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 720px) {
  .cc6-hero { min-height: 60vh; }
  .cc6-hero-inner { padding: 3rem 1rem; }
  .cc6-editorial, .cc6-categories, .cc6-latest, .cc6-tool-section { padding: 2.5rem 1rem; }
  .cc6-cat-content { padding: 2rem 1rem; }
}


/* === [RP2G safety-net 2026-06-06] burger drawer multi-fix === */
@media (max-width: 1023px) {
  .cc6-nav.is-open {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    z-index: 10000 !important;
    background: #fff !important;
    visibility: visible !important;
    overflow-y: auto !important;
  }
  .cc6-nav.is-open a {
    color: #0a0a0a !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 1rem 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    -webkit-text-fill-color: #0a0a0a !important;
  }
}
/* Overlay drawer SEMI-TRANSPARENT NOIR (jamais blanc opaque) */
[class*="-overlay"][class*="drawer"],
[class*="drawer"][class*="-overlay"],
[id*="-overlay"][id*="drawer"],
[class*="-burger-overlay"],
[class*="-nav-overlay"],
[class*="-drawer-overlay"] {
  background: rgba(0, 0, 0, 0.55) !important;
}
