/* ==========================================================================
   Yvelines Pour Tous - Custom child theme stylesheet
   Design system : Business News Daily (newspaper_classic)
   Palette       : noir charbon + rouge brique + creme chaud
   Polices       : Playfair Display (titres) + PT Serif (corps)
   ========================================================================== */

:root {
  --dc2-primary: #1A1A1A;
  --dc2-accent: #B22222;
  --dc2-text: #1A1A1A;
  --dc2-text-soft: #5A5A5A;
  --dc2-bg: #FFFFFF;
  --dc2-surface: #F5F1EA;
  --dc2-line: #D9D5CC;
  --dc2-line-strong: #B5B0A6;
  --dc2-h-font: "Playfair Display", Georgia, "Times New Roman", serif;
  --dc2-b-font: "PT Serif", Georgia, "Times New Roman", serif;
  --dc2-max: 1200px;
  --dc2-radius: 0;
  --dc2-shadow-card: 0 2px 12px rgba(26, 26, 26, 0.06);
  --dc2-shadow-hover: 0 6px 24px rgba(26, 26, 26, 0.12);
}

/* --------------------------------------------------------------------------
   Base & reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.dc2-body {
  margin: 0;
  background: var(--dc2-bg);
  color: var(--dc2-text);
  font-family: var(--dc2-b-font);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--dc2-accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--dc2-primary); }

main.dc2-main { padding-top: 0 !important; margin-top: 0 !important; min-height: 60vh; }

h1, h2, h3, h4, h5 {
  font-family: var(--dc2-h-font);
  color: var(--dc2-primary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.85rem, 4vw, 2.7rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.4rem; }

.dc2-container {
  width: 100%;
  max-width: var(--dc2-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --------------------------------------------------------------------------
   HEADER (sticky-minimal + newspaper_classic)
   -------------------------------------------------------------------------- */
.dc2-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dc2-bg);
  border-bottom: 3px double var(--dc2-primary);
  box-shadow: 0 1px 6px rgba(26, 26, 26, 0.04);
}
.dc2-header-top {
  background: var(--dc2-primary);
  color: #fff;
  padding: 4px 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--dc2-h-font);
  text-align: center;
}
.dc2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1.25rem;
  max-width: var(--dc2-max);
  margin: 0 auto;
}
.dc2-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--dc2-primary);
  flex-shrink: 0;
}
.dc2-brand-logo {
  width: auto;
  display: block;
}
.dc2-brand-name {
  font-family: var(--dc2-h-font);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--dc2-primary);
  letter-spacing: -0.01em;
  /* Style B - Title Case (md5 mod 3 = 1) : pas de text-transform */
}

/* Navigation desktop horizontale (visible >= 1024px) */
.dc2-nav-desktop { display: none; }
.dc2-nav-desktop-list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.dc2-nav-desktop-list > li { position: relative; }
.dc2-nav-desktop-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--dc2-primary);
  text-decoration: none;
  font-family: var(--dc2-h-font);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.dc2-nav-desktop-list a:hover,
.dc2-nav-desktop-list a:focus-visible { border-bottom-color: var(--dc2-accent); color: var(--dc2-accent); outline: none; }
.dc2-nav-desktop-list .dc2-nav-icon { width: 18px; height: 18px; flex-shrink: 0; color: currentColor; vertical-align: middle; }

/* Mega-menu - Layout C (Split nav + featured) */
.dc2-megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 760px;
  max-width: 92vw;
  background: var(--dc2-bg);
  border: 1px solid var(--dc2-line);
  border-top: 3px solid var(--dc2-accent);
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.18);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 1100;
  /* Mega menu layout: C - Split nav + featured */
}
.dc2-nav-desktop-list > li:hover > .dc2-megamenu,
.dc2-nav-desktop-list > li:focus-within > .dc2-megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dc2-megamenu-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
}
.dc2-megamenu-side {
  border-right: 1px solid var(--dc2-line);
  padding-right: 1.25rem;
}
.dc2-megamenu-side h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dc2-accent);
  margin: 0 0 0.65rem;
  font-weight: 700;
}
.dc2-megamenu-side ul { list-style: none; margin: 0; padding: 0; }
.dc2-megamenu-side li { margin-bottom: 0.45rem; }
.dc2-megamenu-side a {
  color: var(--dc2-text);
  font-size: 0.88rem;
  text-decoration: none;
  font-family: var(--dc2-b-font);
  border-bottom: none;
  padding: 0;
}
.dc2-megamenu-side a:hover { color: var(--dc2-accent); border-bottom: none; }
.dc2-megamenu-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
}
.dc2-megamenu-card {
  display: block;
  color: var(--dc2-text);
  text-decoration: none;
}
.dc2-megamenu-card .img-wrap {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--dc2-surface);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.dc2-megamenu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dc2-megamenu-card:hover img { transform: scale(1.05); }
.dc2-megamenu-card h5 {
  font-family: var(--dc2-h-font);
  font-size: 1rem;
  margin: 0 0 0.25rem;
  color: var(--dc2-primary);
  line-height: 1.3;
}
.dc2-megamenu-card-hero h5 { font-size: 1.2rem; }
.dc2-megamenu-card .meta {
  font-size: 0.75rem;
  color: var(--dc2-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dc2-megamenu-side-list { display: flex; flex-direction: column; gap: 0.85rem; }
.dc2-megamenu-side-list .dc2-megamenu-card {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.dc2-megamenu-side-list .img-wrap { width: 70px; height: 52px; flex-shrink: 0; margin-bottom: 0; aspect-ratio: auto; }
.dc2-megamenu-side-list h5 { font-size: 0.85rem; }
.dc2-megamenu-empty {
  font-size: 0.85rem;
  color: var(--dc2-text-soft);
  font-style: italic;
}
.dc2-megamenu-empty a { color: var(--dc2-accent); }

/* Burger mobile (cache desktop) */
.dc2-burger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  padding: 8px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1.5px solid var(--dc2-line-strong) !important;
  border-radius: 4px !important;
  color: var(--dc2-primary) !important;
  cursor: pointer !important;
  z-index: 10000 !important;
  flex-shrink: 0 !important;
  position: relative !important;
}
.dc2-burger-bars { display: flex; flex-direction: column; gap: 4px; width: 22px; height: 16px; justify-content: center; }
.dc2-burger-bars span { display: block; height: 2px; width: 100%; background: var(--dc2-primary); border-radius: 1px; transition: transform 0.3s, opacity 0.3s; }
.dc2-burger.is-active .dc2-burger-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.dc2-burger.is-active .dc2-burger-bars span:nth-child(2) { opacity: 0; }
.dc2-burger.is-active .dc2-burger-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer mobile - HIDDEN by default */
.dc2-nav { display: none; }
.dc2-nav-mobile { display: none; }
.dc2-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.dc2-overlay.is-open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   HERO - quote-hero
   -------------------------------------------------------------------------- */
.dc2-hero {
  position: relative;
  background: var(--dc2-surface);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--dc2-line);
  overflow: hidden;
}
.dc2-hero--quote-hero {
  background:
    linear-gradient(180deg, rgba(245, 241, 234, 0.92) 0%, rgba(245, 241, 234, 0.96) 100%),
    url("../img/yvelinespourtous-hero.jpg") center / cover no-repeat;
}
.dc2-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.dc2-hero-eyebrow {
  display: inline-block;
  font-family: var(--dc2-h-font);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dc2-accent);
  border-top: 1px solid var(--dc2-accent);
  border-bottom: 1px solid var(--dc2-accent);
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.5rem;
}
.dc2-hero-quote {
  font-family: var(--dc2-h-font);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--dc2-primary);
  margin: 0 0 1.5rem;
  position: relative;
  padding: 0 1rem;
}
.dc2-hero-quote::before,
.dc2-hero-quote::after {
  font-family: Georgia, serif;
  font-style: normal;
  color: var(--dc2-accent);
  font-size: 2.4em;
  line-height: 0;
  vertical-align: -0.3em;
  font-weight: 700;
}
.dc2-hero-quote::before { content: "\201C"; margin-right: 0.15em; }
.dc2-hero-quote::after { content: "\201D"; margin-left: 0.15em; }
.dc2-hero-attribution {
  font-family: var(--dc2-h-font);
  font-size: 0.95rem;
  color: var(--dc2-text-soft);
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
}
.dc2-hero-attribution strong { color: var(--dc2-primary); font-weight: 700; }
.dc2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

/* --------------------------------------------------------------------------
   BLOC EDITORIAL (placement after-hero, 400-700 mots)
   -------------------------------------------------------------------------- */
.dc2-editorial {
  background: var(--dc2-bg);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--dc2-line);
}
.dc2-editorial-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.dc2-editorial-intro h2 {
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.dc2-editorial-intro h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--dc2-accent);
  margin: 0.85rem auto 0;
}
.dc2-editorial-intro p:first-of-type {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--dc2-primary);
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
}
.dc2-editorial-section { margin: 2.5rem 0; }
.dc2-editorial-section h3 {
  font-size: 1.25rem;
  color: var(--dc2-accent);
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--dc2-line);
  margin-bottom: 1rem;
}
.dc2-editorial-pull {
  background: var(--dc2-surface);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--dc2-accent);
  margin: 2rem 0;
  font-family: var(--dc2-h-font);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dc2-primary);
}
.dc2-editorial-pull strong { font-style: normal; }

/* --------------------------------------------------------------------------
   CATEGORIES (grille rubriques)
   -------------------------------------------------------------------------- */
.dc2-categories {
  background: var(--dc2-surface);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--dc2-line);
}
.dc2-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1.25rem;
}
.dc2-section-head h2 {
  display: inline-block;
  position: relative;
  margin: 0 0 0.5rem;
}
.dc2-section-head h2::before,
.dc2-section-head h2::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--dc2-accent);
  vertical-align: middle;
  margin: 0 0.85rem;
}
.dc2-section-head p {
  color: var(--dc2-text-soft);
  font-style: italic;
  margin: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.dc2-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: var(--dc2-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.dc2-cat-card {
  position: relative;
  display: block;
  background: var(--dc2-bg);
  border: 1px solid var(--dc2-line);
  overflow: hidden;
  text-decoration: none;
  color: var(--dc2-text);
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 280px;
}
.dc2-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dc2-shadow-hover);
}
.dc2-cat-card-img {
  display: block;
  width: 100%;
  height: 180px;
  background-color: var(--dc2-primary);
  background-size: cover;
  background-position: center;
  position: relative;
}
.dc2-cat-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.45) 100%);
}
.dc2-cat-card-body {
  padding: 1rem 1.25rem 1.25rem;
}
.dc2-cat-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--dc2-primary);
  transition: color 0.2s;
}
.dc2-cat-card:hover h3 { color: var(--dc2-accent); }
.dc2-cat-card-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--dc2-text-soft);
  line-height: 1.5;
}
.dc2-cat-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dc2-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 3;
  transition: transform 0.3s;
}
.dc2-cat-card:hover .dc2-cat-card-arrow { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   LATEST ARTICLES (grille articles home)
   -------------------------------------------------------------------------- */
.dc2-latest {
  background: var(--dc2-bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--dc2-line);
}
.dc2-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  max-width: var(--dc2-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.dc2-article-card {
  display: flex;
  flex-direction: column;
  background: var(--dc2-bg);
  border: 1px solid var(--dc2-line);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--dc2-text);
}
.dc2-article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--dc2-shadow-hover);
}
.dc2-article-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dc2-surface);
}
.dc2-article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.dc2-article-card:hover .dc2-article-card-img img { transform: scale(1.06); }
.dc2-article-card-body { padding: 1.1rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.dc2-article-card-cat {
  display: inline-block;
  font-family: var(--dc2-h-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dc2-accent);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.dc2-article-card-title {
  font-family: var(--dc2-h-font);
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--dc2-primary);
  margin: 0 0 0.5rem;
  text-decoration: none;
}
.dc2-article-card-excerpt {
  color: var(--dc2-text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
  flex: 1;
}
.dc2-article-card-meta {
  font-size: 0.78rem;
  color: var(--dc2-text-soft);
  font-style: italic;
  border-top: 1px solid var(--dc2-line);
  padding-top: 0.65rem;
}
.dc2-latest-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--dc2-text-soft);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   CATEGORY PAGE
   -------------------------------------------------------------------------- */
.dc2-cat-hero {
  position: relative;
  height: 320px;
  max-height: 350px;
  overflow: hidden;
  background: var(--dc2-surface);
}
.dc2-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.dc2-cat-hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.25rem;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 26, 0.78) 100%);
  max-width: var(--dc2-max);
  margin: 0 auto;
}
.dc2-cat-hero-overlay h1 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  margin: 0 0 0.45rem;
  max-width: 760px;
}
.dc2-cat-hero-overlay .dc2-cat-hero-breadcrumb {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--dc2-h-font);
}
.dc2-cat-hero-overlay .dc2-cat-hero-breadcrumb a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.dc2-cat-hero-overlay .dc2-cat-hero-breadcrumb a:hover { color: #fff; }
.dc2-cat-description-wrap {
  background: var(--dc2-bg);
  padding: 2rem 1.25rem;
}
.dc2-cat-description {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dc2-text);
}
.dc2-cat-posts-wrap { background: var(--dc2-bg); padding: 2rem 0 4rem; }

/* --------------------------------------------------------------------------
   FOOTER (newspaper_columns - 4 colonnes)
   -------------------------------------------------------------------------- */
.dc2-footer {
  background: var(--dc2-primary);
  color: #E8E2D3;
  padding-top: 3rem;
  border-top: 4px solid var(--dc2-accent);
}
.dc2-footer-inner {
  max-width: var(--dc2-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.dc2-footer-col h3.dc2-footer-title {
  font-family: var(--dc2-h-font);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.dc2-footer-logo {
  display: block;
  margin-bottom: 1rem;
  height: auto;
  width: 120px;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
}
.dc2-footer-brand-pitch {
  color: #E8E2D3;
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.dc2-footer-brand-cta {
  display: inline-block;
  color: #fff;
  background: var(--dc2-accent);
  padding: 0.55rem 1rem;
  text-decoration: none;
  font-family: var(--dc2-h-font);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.dc2-footer-brand-cta:hover { background: #fff; color: var(--dc2-primary); }
.dc2-footer-links { list-style: none; margin: 0; padding: 0; }
.dc2-footer-links li { margin-bottom: 0.55rem; }
.dc2-footer-links a {
  color: #E8E2D3;
  text-decoration: underline;
  text-decoration-color: rgba(232, 226, 211, 0.35);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.dc2-footer-links a:hover { color: #fff; text-decoration-color: #fff; }
.dc2-footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.83rem;
  color: rgba(232, 226, 211, 0.85);
  background: rgba(0, 0, 0, 0.18);
}
.dc2-footer-bottom .dc2-container { padding: 0 1.25rem; }

/* --------------------------------------------------------------------------
   CTA / Buttons
   -------------------------------------------------------------------------- */
.dc2-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-family: var(--dc2-h-font);
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid var(--dc2-primary);
  background: var(--dc2-bg);
  color: var(--dc2-primary);
  transition: all 0.25s;
  cursor: pointer;
}
.dc2-btn:hover { background: var(--dc2-primary); color: #fff; }
.dc2-btn--cta {
  position: relative;
  padding: 0.85rem 1.75rem;
  background: var(--dc2-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--dc2-accent);
  font-family: var(--dc2-h-font);
  letter-spacing: 0.02em;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
}
.dc2-btn--cta:hover { background: var(--dc2-bg); color: var(--dc2-accent); }
.dc2-btn--cta:focus-visible { outline: 3px solid var(--dc2-primary); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   CTA Drawer Mobile (always present, hidden desktop)
   -------------------------------------------------------------------------- */
.dc2-drawer-cta {
  display: block !important;
  margin: 2rem 1.5rem 1.5rem !important;
  padding: 1rem 1.5rem !important;
  text-align: center !important;
  background: var(--dc2-accent) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 1.05rem !important;
  font-family: var(--dc2-h-font);
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
  .dc2-drawer-cta { display: none !important; }
}

/* --------------------------------------------------------------------------
   ANIMATIONS - CTA border draw + CTR typing + CTO guarantee badge
   -------------------------------------------------------------------------- */
@keyframes dc2-border-draw {
  0%   { box-shadow: inset 0 0 0 0 var(--dc2-accent); }
  50%  { box-shadow: inset 2px 0 0 0 var(--dc2-accent), inset 0 2px 0 0 var(--dc2-accent); }
  100% { box-shadow: inset 2px 0 0 0 var(--dc2-accent), inset 0 2px 0 0 var(--dc2-accent), inset -2px 0 0 0 var(--dc2-accent), inset 0 -2px 0 0 var(--dc2-accent); }
}
.dc2-btn--cta-animated:hover { animation: dc2-border-draw 0.5s ease forwards; }

@keyframes dc2-typing-cursor {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes dc2-typing-reveal {
  from { width: 0; }
  to   { width: 100%; }
}
.dc2-typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--dc2-accent);
  animation: dc2-typing-cursor 0.9s infinite;
  font-family: var(--dc2-h-font);
}
.dc2-typing-text--reveal {
  width: 0;
  animation: dc2-typing-reveal 2.6s steps(40, end) forwards, dc2-typing-cursor 0.9s infinite;
}

@keyframes dc2-guarantee-pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0   rgba(178, 34, 34, 0.45); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(178, 34, 34, 0);    }
}
.dc2-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: var(--dc2-surface);
  border: 1.5px solid var(--dc2-accent);
  border-radius: 999px;
  color: var(--dc2-accent);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: dc2-guarantee-pulse 2.6s ease-in-out infinite;
  font-family: var(--dc2-h-font);
}
.dc2-guarantee-badge svg { width: 14px; height: 14px; fill: var(--dc2-accent); }

/* --------------------------------------------------------------------------
   PERSONA PHOTO (a-propos)
   -------------------------------------------------------------------------- */
.dc2-persona-photo {
  display: block;
  float: right;
  width: 220px;
  height: auto;
  margin: 0 0 1rem 1.5rem;
  border: 4px solid var(--dc2-surface);
  box-shadow: var(--dc2-shadow-card);
}
@media (max-width: 600px) {
  .dc2-persona-photo { float: none; margin: 0 auto 1.5rem; }
}

/* --------------------------------------------------------------------------
   CONTACT FORM WRAPPER
   -------------------------------------------------------------------------- */
.dc2-contact-form {
  margin: 2.5rem 0;
  padding: 1.25rem;
  background: var(--dc2-surface);
  border: 1px solid var(--dc2-line);
}
.dc2-contact-form iframe { display: block; width: 100% !important; }

/* --------------------------------------------------------------------------
   MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .dc2-nav-desktop {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 0 1rem;
  }
  .dc2-burger { display: none !important; }
  .dc2-nav-mobile { display: none !important; }
  .dc2-overlay { display: none !important; }
}

@media (max-width: 1023px) {
  .dc2-header-cta-desktop,
  [class*="-header"] [class*="-btn--cta"]:not([class*="-drawer-"]) {
    display: none !important;
  }
  .dc2-nav-mobile.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 86%;
    max-width: 380px;
    background: #fff;
    padding: 4.5rem 0 2rem;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    animation: dc2-slide-in 0.3s ease forwards;
  }
  .dc2-nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .dc2-nav-mobile-list li { border-bottom: 1px solid var(--dc2-line); }
  .dc2-nav-mobile-list a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.5rem;
    color: var(--dc2-primary);
    text-decoration: none;
    font-family: var(--dc2-h-font);
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.2s, color 0.2s;
  }
  .dc2-nav-mobile-list a:hover,
  .dc2-nav-mobile-list a:focus-visible {
    background: var(--dc2-surface);
    color: var(--dc2-accent);
    outline: none;
  }
  .dc2-nav-mobile-list .dc2-nav-icon { width: 20px; height: 20px; color: var(--dc2-accent); flex-shrink: 0; }
  .dc2-drawer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: none;
    border: 1.5px solid var(--dc2-line);
    border-radius: 4px;
    cursor: pointer;
    color: var(--dc2-primary);
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@keyframes dc2-slide-in {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@media (max-width: 980px) {
  .dc2-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .dc2-megamenu { width: 540px; }
  .dc2-megamenu-inner { grid-template-columns: 1fr; }
  .dc2-megamenu-side { border-right: none; border-bottom: 1px solid var(--dc2-line); padding: 0 0 1rem; }
}

@media (max-width: 700px) {
  .dc2-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .dc2-hero { padding: 2.5rem 0 2.5rem; }
  .dc2-hero-quote { padding: 0; }
  .dc2-megamenu { display: none; }
  .dc2-latest-grid { grid-template-columns: 1fr; }
  .dc2-cat-card { min-height: auto; }
  .dc2-cat-hero { height: 250px; }
}

@media (max-width: 480px) {
  body.dc2-body { font-size: 16px; }
  .dc2-brand-name { font-size: 1.2rem; }
  .dc2-header-inner { padding: 0.65rem 1rem; }
  .dc2-editorial-inner { padding: 0 1rem; }
}

/* --------------------------------------------------------------------------
   ACCESSIBILITY
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--dc2-accent);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   PRINT
   -------------------------------------------------------------------------- */
@media print {
  .dc2-header, .dc2-footer, .dc2-nav, .dc2-burger, .dc2-overlay, .dc2-drawer-cta { display: none !important; }
  body.dc2-body { color: #000; background: #fff; }
}


/* Extra rules */
body section[class*="cat-hero"], body div[class*="cat-hero"] {
  position: relative !important;
  width: 100% !important; max-width: 100% !important;
  margin-left: 0 !important; margin-right: 0 !important;
  left: 0 !important; right: 0 !important;
  height: 360px !important; min-height: 360px !important; max-height: 360px !important;
  padding: 0 !important; overflow: hidden !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important;
  border: none !important; box-shadow: none !important; outline: none !important;
  box-sizing: border-box !important;
}
/* Aussi force le parent <main> a etre full-width pour eviter cap a 1024 */
body main, body, body, body [class*="dc2-main"], body #content {
  width: 100% !important; max-width: 100% !important;
  margin-left: 0 !important; margin-right: 0 !important;
}
body [class*="cat-hero"] > img, body [class*="cat-hero-bg"], body [class*="cat-hero"] img {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  max-height: 360px !important;
  object-fit: cover !important; z-index: 0 !important;
  border: none !important;
}
body [class*="cat-hero"]::before, body [class*="cat-hero"]::after {
  content: none !important; display: none !important;
}
/* Overlay : absolute par-dessus l'image, juste pour le gradient sombre */
body [class*="cat-hero-overlay"], body [class*="cat-hero"] > [class*="overlay"] {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  margin: 0 !important; padding: 0 !important;
  max-width: none !important;
  display: block !important;
  z-index: 1 !important;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%) !important;
  pointer-events: none !important;
  border: none !important;
}
/* Container / inner du titre : centré au-dessus de l'overlay (z-index 2) */
body [class*="cat-hero"] > [class*="container"],
body [class*="cat-hero"] > [class*="cat-hero-inner"],
body [class*="cat-hero"] > [class*="hero-inner"]:not([class*="overlay"]),
body [class*="cat-hero"] > div:not([class*="overlay"]):not([class*="-bg"]) {
  position: relative !important; z-index: 2 !important;
  text-align: center !important;
  max-width: 900px !important; margin: 0 auto !important;
  padding: 1.5rem 2rem !important;
  border: none !important; background: transparent !important;
}
body [class*="cat-hero"] h1 {
  color: #ffffff !important;
  font-size: clamp(2.4rem, 6vw, 4rem) !important;
  text-align: center !important;
  margin: 0 !important; font-weight: 800 !important;
  text-shadow: 0 3px 12px rgba(0,0,0,.85), 0 0 30px rgba(0,0,0,.5) !important;
  border: none !important; display: block !important;
}
body [class*="cat-hero"] [class*="breadcrumb"],
body [class*="cat-hero"] nav[aria-label*="riane"],
body [class*="cat-hero"] nav[aria-label*="readcrumb"] {
  display: none !important;
}



body [class*="persona-photo"], body img[class*="persona"], body [class*="-persona"] img {
  max-width: 280px !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 50% !important;
  display: block !important;
  margin: 0 auto !important;
}
@media (min-width: 768px) {
  body [class*="persona-photo"], body img[class*="persona"], body [class*="-persona"] img {
    max-width: 320px !important;
  }
}


@media (max-width: 1023px) {
  /* FIX width:auto -> ne plus l'imposer (laisse child theme définir width).
     Sinon écrase le child et le burger devient 0 de large -> invisible. */
  body [class*="burger"], body button[class*="burger"] {
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 100 !important;
  }
}
@media (min-width: 1024px) {
  body [class*="burger"], body button[class*="burger"] {
    display: none !important;
  }
}



body footer, body [class*="footer"]:not([class*="logo"]):not([class*="brand-logo"]) {
  color: inherit !important;
}


body footer ul li a, body footer ol li a,
body [class*="footer"] ul li a:not([class*="btn"]):not([class*="cta"]),
body footer [class*="link"]:not([class*="brand"]):not([class*="btn"]) {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 1px !important;
  text-decoration-color: currentColor !important;
  opacity: 0.85 !important;
  transition: opacity .2s ease !important;
}
body footer ul li a:hover, body footer ol li a:hover,
body [class*="footer"] ul li a:hover {
  opacity: 1 !important;
  text-decoration-thickness: 2px !important;
}


body [class*="burger"] {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 6px;
  cursor: pointer !important;
  padding: 8px;
  color: inherit;
  transition: background .2s ease, border-color .2s ease !important;
}
body [class*="burger"]:hover, body [class*="burger"]:focus-visible {
  background: rgba(0,0,0,0.06);
  border-color: var(--dc2-accent, currentColor);
}
/* Container des 3 barres (peut s'appeler "bars", "lines", etc.) */
body [class*="burger"] > [class*="bar"],
body [class*="burger"] > [class*="line"],
body [class*="burger"] > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 16px;
  gap: 0;
}
/* Les 3 barres elles-mêmes */
body [class*="burger"] [class*="bar"] > span,
body [class*="burger"] [class*="line"] > span,
body [class*="burger"] > span > span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  margin: 2px 0;
  transition: transform .25s ease, opacity .25s ease !important;
}
/* Etat ouvert : transforme en X */
body [class*="burger"][aria-expanded="true"] [class*="bar"] > span:nth-child(1),
body [class*="burger"][aria-expanded="true"] [class*="line"] > span:nth-child(1),
body [class*="burger"][aria-expanded="true"] > span > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg) !important;
}
body [class*="burger"][aria-expanded="true"] [class*="bar"] > span:nth-child(2),
body [class*="burger"][aria-expanded="true"] [class*="line"] > span:nth-child(2),
body [class*="burger"][aria-expanded="true"] > span > span:nth-child(2) {
  opacity: 0 !important;
}
body [class*="burger"][aria-expanded="true"] [class*="bar"] > span:nth-child(3),
body [class*="burger"][aria-expanded="true"] [class*="line"] > span:nth-child(3),
body [class*="burger"][aria-expanded="true"] > span > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg) !important;
}

@media (max-width: 1023px) {
  body header [class*="cta-wrap"]:has([class*="burger"]),
  body header > div:has([class*="burger"]),
  body [class*="header"] [class*="-wrap"]:has([class*="burger"]),
  body [class*="header-inner"] > div:has([class*="burger"]) {
    display: flex;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* Mobile : 1 SEUL CTA visible (dans le burger).
   Sur mobile le CTA original du header est masque ; sur desktop le clone est hidden. */
@media (max-width: 1023px) {
  body [class*="header-cta"] [class*="btn--cta"],
  body [class*="header__cta"] [class*="btn--cta"],
  body [class*="header-cta"] > [class*="cta"],
  body [class*="header__cta"] > a {
    display: none !important;
  }
}


/* ============================================================
   Section 'On parle de nous' (media press)
   Logos grayscale par defaut, couleur au hover.
   Grid responsive 2-6 colonnes, gap auto.
============================================================ */
.dc2-media-press {
  padding: 2.5rem 0;
  background: var(--dc2-bg-soft, var(--dc2-color-surface, #f9fafb));
  margin: 2rem 0;
}
.dc2-media-press > .dc2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.dc2-media-press-title {
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dc2-color-text-soft, var(--dc2-color-muted, #5a6a85));
  margin: 0 0 1.6rem;
  font-weight: 600;
}
.dc2-media-press-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.dc2-media-press-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 160px;
  transition: opacity .25s ease, filter .25s ease, transform .25s ease;
  opacity: .65;
  filter: grayscale(100%);
}
.dc2-media-press-item:hover,
.dc2-media-press-item:focus {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}
.dc2-media-press-item img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .dc2-media-press { padding: 1.8rem 0; }
  .dc2-media-press-grid { gap: 1.4rem; }
  .dc2-media-press-item { max-width: 110px; min-height: 36px; }
  .dc2-media-press-item img { max-height: 36px; }
}


/* FIX gap header->hero (parent theme override) + media-press compact centre */
body main, body.home main, body.archive main, body.single main,
body, body, body main[class*="-main"] {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* MEDIA PRESS : layout horizontal compact CENTRE (titre + logos cote a cote au centre) */
.dc2-media-press section[class*="media-press"] {
  padding: 24px 0 !important;
  margin: 0 !important;
  background: #fafafa;
  border-block: 1px solid rgba(0,0,0,0.06);
}
.dc2-media-press .dc2-container,
section[class*="media-press"] [class*="container"] {
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
  text-align: center;
}
.dc2-media-press-title,
section[class*="media-press"] [class*="title"] {
  margin: 0 !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dc2-muted, #666);
  flex: 0 0 auto;
}
.dc2-media-press-grid,
section[class*="media-press"] [class*="grid"] {
  display: flex !important;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
}
.dc2-media-press-item,
section[class*="media-press"] [class*="item"] {
  display: inline-flex !important;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.dc2-media-press-item:hover:hover,
section[class*="media-press"] [class*="item"]:hover {
  opacity: 1;
}
.dc2-media-press imgimg,
section[class*="media-press"] img {
  max-height: 48px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}
.dc2-media-press a:hover imga:hover img {
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .dc2-media-press .dc2-container,
  section[class*="media-press"] [class*="container"] {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
}



.dc2-cat-hero--align-left .dc2-cat-hero-inner
section[class*="cat-hero--align-left"] [class*="cat-hero-inner"] {
  text-align: left !important;
  align-items: flex-start !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding-left: 24px;
}
.dc2-cat-hero--align-center .dc2-cat-hero-inner
section[class*="cat-hero--align-center"] [class*="cat-hero-inner"] {
  text-align: center !important;
  align-items: center !important;
  margin: 0 auto !important;
}


@media (max-width: 1023.98px) {  [class*="-header-cta-wrap"],
  [class*="-header-actions"],
  [class*="-burger-wrap"],
  [class*="-header-right"],
  [class*="-header-actions-mobile"] {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }  [class*="-burger"]:not([class*="-bars"]):not([class*="-label"]):not([class*="-menu"]) {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    min-height: 42px !important;
    flex-shrink: 0 !important;
    z-index: 9999;
    pointer-events: auto !important;
    cursor: pointer !important;
  }  [class*="-burger"] > span,
  [class*="-burger-bars"] {
    display: flex !important;
    flex-direction: column !important;
    min-width: 24px !important;
    min-height: 16px !important;
  }  [class*="-burger-bars"] > *,
  [class*="-burger"] > span > * {
    display: block !important;
    min-width: 24px !important;
    min-height: 2px !important;
  }  [class*="-header-cta-desktop"] {
    display: none !important;
  }  [class*="-burger-label"] {
    display: none !important;
  }
}
@media (min-width: 1024px) {  [class*="-burger"]:not([class*="-bars"]):not([class*="-label"]):not([class*="-menu"]) {
    display: none !important;
  }
}


/* Burger style */
@media (max-width: 1023.98px) {
  [class*="-burger"]:not([class*="-bars"]):not([class*="-label"]):not([class*="-menu"]) {
    width: 42px !important; height: 42px !important;
    border-radius: 2px !important; padding: 8px !important;
     
  }
  [class*="-burger"] > span, [class*="-burger-bars"] {
    gap: 5px !important; width: 24px !important; height: 16px !important;
    align-items: center !important;
  }
  [class*="-burger-bars"] > *, [class*="-burger"] > span > * {
    height: 2px !important; border-radius: 0 !important;
  }
  [class*="-burger-bars"] > *:nth-child(1), [class*="-burger"] > span > *:nth-child(1) { width: 24px !important; }
  [class*="-burger-bars"] > *:nth-child(2), [class*="-burger"] > span > *:nth-child(2) { width: 24px !important; }
  [class*="-burger-bars"] > *:nth-child(3), [class*="-burger"] > span > *:nth-child(3) { width: 24px !important; }
}

/* RANKO HEADER GRID 7x2 2026-06-27 */
@media (min-width: 1024px) {
  /* Logo a gauche, taille modeste */
  .dc2-brand-logo { max-width: 150px !important; max-height: 60px !important; width: auto !important; height: auto !important; }
  .dc2-brand-name { font-size: 1rem !important; white-space: nowrap !important; }
  /* Header : 1 seule ligne (pas de wrap), logo a gauche + nav prenant le reste */
  .dc2-header-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 10px 24px !important;
  }
  .dc2-brand-link { flex: 0 0 auto !important; align-self: center !important; }
  .dc2-nav-desktop { flex: 1 1 auto !important; min-width: 0 !important; }
  /* Grid 7 colonnes pour 2 rangees equilibrees de 7 cats */
  .dc2-nav-desktop-list {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    gap: 6px 8px !important;
    justify-items: center !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .dc2-nav-desktop-list > li { display: flex !important; align-items: center !important; justify-content: center !important; }
  .dc2-nav-desktop-list a {
    padding: 4px 6px !important;
    font-size: 0.82rem !important;
    gap: 4px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .dc2-nav-desktop-list .dc2-nav-icon { width: 14px !important; height: 14px !important; }
}
