/* ═══════════════════════════════════════════════════════════════
   BLOG STYLES — drgaleazzinico.it
   Override e componenti specifici per articoli e blog index
   Importa il design system principale per coerenza
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design System Variables ─── */
:root {
  --navy: #1a2940;
  --navy-deep: #0f1a2b;
  --navy-light: #243654;
  --gold: #b8996a;
  --gold-light: #d4b896;
  --gold-pale: #e8dcc8;
  --gold-dark: #8a7045;
  --cream: #f8f5f0;
  --cream-dark: #efe9e0;
  --white: #ffffff;
  --text: #1a1e2e;
  --text-soft: #4a5568;
  --text-muted: #718096;
  --border: #e2ddd5;
  --border-light: #f0ebe4;
  --verde: #25D366;
  --verde-h: #1aab52;
  --rosso-soft: #c53030;
  --section-pad: clamp(72px, 8vw, 140px);
  --section-pad-sm: clamp(48px, 6vw, 80px);
  --container: 1200px;
  --container-narrow: 780px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(26,41,64,.06);
  --shadow: 0 4px 24px rgba(26,41,64,.08);
  --shadow-lg: 0 12px 48px rgba(26,41,64,.12);
  --shadow-gold: 0 4px 24px rgba(184,153,106,.15);
}

/* REDESIGN: Import design system base */
@import url('../style.css');

/* UX: Barra di progresso lettura gold */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   BLOG HEADER (coerente con sito principale)
   ═══════════════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(26,41,64,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(15,26,43,.25);
}
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
/* Hamburger nascosto su desktop */
.hamburger { display: none; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  color: rgba(248,245,240,.68);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.header-nav a:hover {
  background: rgba(248,245,240,.08);
  color: var(--cream);
}
.header-nav a.active {
  background: rgba(248,245,240,.1);
  color: var(--cream);
}
.header-nav .wa-btn {
  background: var(--verde);
  color: white !important;
  border-radius: var(--radius-sm);
}
.header-nav .wa-btn:hover { background: var(--verde-h); }

/* ═══════════════════════════════════════════════════
   BLOG INDEX — Hero
   ═══════════════════════════════════════════════════ */
.blog-hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  padding: clamp(56px, 7vw, 80px) 24px;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.blog-hero .tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.blog-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--cream);
}
.blog-hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: rgba(248,245,240,.7);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   BLOG INDEX — Article Cards Grid
   ═══════════════════════════════════════════════════ */
.articoli-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  text-decoration: none;
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.card-top { height: 5px; border-radius: var(--radius) var(--radius) 0 0; }
.card-top.verde { background: var(--gold); }
.card-top.blu { background: var(--navy); }
.card-top.rosso { background: var(--navy-deep); }
.card-top.arancio { background: var(--gold-light); }

.card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 100px;
  align-self: flex-start;
  width: fit-content;
}
.card-cat.verde { color: var(--gold-dark); background: rgba(184,153,106,.1); }
.card-cat.blu { color: var(--navy); background: rgba(26,41,64,.07); }
.card-cat.rosso { color: var(--navy-deep); background: rgba(15,26,43,.07); }
.card-cat.arancio { color: var(--gold-dark); background: rgba(212,184,150,.15); }

.card-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.card-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
}
.article-card:hover .card-cta { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   BLOG INDEX — Category Filter Pills
   ═══════════════════════════════════════════════════ */
.blog-filters {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 24px;
}
.filters-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.filters-inner::-webkit-scrollbar { display: none; }
.filter-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s ease;
  line-height: 1;
}
.filter-pill:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--white);
}
.filter-pill.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   BLOG INDEX — Articles Header + Counter
   ═══════════════════════════════════════════════════ */
.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.articles-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════
   BLOG INDEX — Featured Card (first article)
   ═══════════════════════════════════════════════════ */
.article-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
}
.article-card.featured .card-top { display: none; }
.article-card.featured .card-body {
  padding: 40px 36px;
}
.article-card.featured .card-cat {
  color: var(--gold) !important;
  background: rgba(184,153,106,.15) !important;
}
.article-card.featured .card-body h2 {
  color: var(--cream);
  font-size: clamp(22px, 3vw, 28px);
}
.article-card.featured .card-body p {
  color: rgba(248,245,240,.65);
  font-size: 15px;
  max-width: 640px;
}
.article-card.featured .card-meta {
  border-top-color: rgba(255,255,255,.1);
  color: rgba(248,245,240,.45);
}
.article-card.featured .card-cta {
  color: var(--gold);
}
.article-card.featured:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 56px rgba(26,41,64,.35);
}
.article-card.featured:hover .card-cta { color: var(--gold-light); }

.featured-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured-badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════
   BLOG INDEX — Filter Animation
   ═══════════════════════════════════════════════════ */
.article-card {
  transition: border-color .25s, box-shadow .25s, transform .25s, opacity .35s ease, max-height .4s ease;
}
.article-card.filter-hidden {
  display: none;
}

/* ═══════════════════════════════════════════════════
   BLOG INDEX — No Results Empty State
   ═══════════════════════════════════════════════════ */
.no-results {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}
.no-results p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   BLOG INDEX — Studio CTA Box
   ═══════════════════════════════════════════════════ */
.studio-box {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  padding: 48px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.studio-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.studio-box .studio-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cream);
}
.studio-box .studio-text p { color: rgba(248,245,240,.75); font-size: 15px; margin-bottom: 24px; }

.studio-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248,245,240,.08);
  border: 1px solid rgba(248,245,240,.2);
  color: var(--cream);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.studio-badge {
  background: rgba(184,153,106,.08);
  border: 1px solid rgba(184,153,106,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  flex-shrink: 0;
  min-width: 160px;
}
.studio-badge .badge-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
}
.studio-badge .badge-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(248,245,240,.55);
  margin-top: 4px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   BLOG ARTICLE — Layout
   ═══════════════════════════════════════════════════ */
article {
  max-width: 800px;
  margin: 40px auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Article Hero */
article .hero,
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 56px 48px 48px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 0;
}
article .hero::before,
.hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: rgba(184,153,106,.06);
  border-radius: 50%;
}
article .hero::after { display: none; }
article .hero .categoria,
.hero .categoria {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
article .hero h1,
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--cream);
}
article .hero .meta,
.hero .meta {
  display: flex;
  gap: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  opacity: .65;
  flex-wrap: wrap;
  color: var(--cream);
}

/* Article Content */
.content {
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
}
.content p {
  margin-bottom: 1.5em;
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-soft);
  line-height: 1.8;
}
.content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7em;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5em 0 0.8em;
  padding-bottom: 0.3em;
  border-bottom: 3px solid var(--gold);
  border-top: none;
  display: inline-block;
}
.content h2::after {
  content: '';
  display: block;
  clear: both;
}
.content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  color: var(--navy);
  margin: 2em 0 0.6em;
}
.content ul, .content ol { padding-left: 24px; margin-bottom: 20px; }
.content li { margin-bottom: 8px; font-size: 16.5px; font-family: 'DM Sans', sans-serif; }
.content strong { color: var(--navy); }

/* Images responsive */
.content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 8px;
}
.content figure {
  margin: 2em 0;
  text-align: center;
}
.content figcaption,
.content .img-caption {
  font-size: 0.85em;
  color: #666;
  text-align: center;
  margin-top: 0.5em;
  font-family: 'DM Sans', sans-serif;
}

/* HR divider gold */
.content hr {
  border: none;
  border-top: 1px solid var(--gold);
  width: 60%;
  margin: 2.5em auto;
  opacity: 0.5;
}

/* Key evidence box */
.content .key-box,
.content .evidence-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2em 1.5em;
  margin: 1.5em 0;
  font-size: 0.95em;
  line-height: 1.7;
}

/* Varieta visiva — sezioni H2 con sfondo alternato */
.content h2:nth-of-type(even) {
  background: var(--cream);
  margin-left: -48px;
  margin-right: -48px;
  padding: 0.8em 48px 0.3em;
  border-radius: 0;
  border-bottom: 3px solid var(--gold);
}

/* Punto chiave inline — spezza muri di testo */
.content .punto-chiave,
.content .highlight-box {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2em 1.5em;
  margin: 2em 0;
  font-size: 1em;
  line-height: 1.7;
  color: var(--navy);
}

/* Sfondo generale pagina leggermente cream per meno bianco */
body {
  background: #fdfcfa;
}

/* Blockquote */
.content blockquote {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 22px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
}
.content blockquote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--gold-pale);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
}

/* Stat Banner */
.stat-banner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(248,245,240,.7);
  margin-top: 8px;
  line-height: 1.4;
}
.stat-source {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(248,245,240,.35);
  margin-top: 6px;
}

/* Cause Grid (cards colorate) */
.cause-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.causa-card { border-radius: var(--radius); padding: 22px 20px; }
.causa-card .icon { font-size: 28px; margin-bottom: 10px; }
.causa-card .title { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.causa-card p { font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.6; margin: 0; }

.causa-gengivite { background: var(--cream); border: 1.5px solid var(--gold-pale); }
.causa-gengivite .title { color: var(--navy); }
.causa-gengivite p { color: var(--text-soft); }
.causa-paro { background: #faf5f0; border: 1.5px solid var(--gold); }
.causa-paro .title { color: var(--navy); }
.causa-paro p { color: var(--text-soft); }
.causa-farmaci { background: var(--cream); border: 1.5px solid var(--border); }
.causa-farmaci .title { color: var(--navy); }
.causa-farmaci p { color: var(--text-soft); }
.causa-altre { background: var(--white); border: 1.5px solid var(--border); }
.causa-altre .title { color: var(--navy); }
.causa-altre p { color: var(--text-soft); }

/* Mito Box */
.mito-box {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}
.mito-box .label-myth {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mito-row { display: flex; gap: 16px; margin-top: 12px; }
.mito-col { flex: 1; border-radius: var(--radius-sm); padding: 14px 16px; }
.mito-sbagliato { background: #f5eeea; }
.mito-sbagliato .col-label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.mito-sbagliato p { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-soft); margin: 0; }
.mito-giusto { background: var(--cream); }
.mito-giusto .col-label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.mito-giusto p { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-soft); margin: 0; }

/* Treatment Steps */
.trattamento-steps { margin: 28px 0; }
.tratt-step { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border-radius: var(--radius); margin-bottom: 12px; }
.tratt-step:nth-child(1) { background: var(--cream); }
.tratt-step:nth-child(2) { background: var(--white); border: 1px solid var(--border); }
.tratt-step:nth-child(3) { background: var(--cream); }
.tratt-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tratt-num { background: var(--navy); color: var(--gold); }
.tratt-step:nth-child(1) .tratt-num { background: var(--navy); color: var(--gold); }
.tratt-step:nth-child(2) .tratt-num { background: var(--gold); color: var(--navy); }
.tratt-step:nth-child(3) .tratt-num { background: var(--navy-deep); color: var(--cream); }
.tratt-body .tratt-title { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tratt-body p { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-soft); margin: 0; }

/* FAQ in articles */
.faq-section {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  margin: 40px 0;
}
.faq-section p { font-family: 'DM Sans', sans-serif; font-size: 16px; color: var(--text-soft); line-height: 1.7; }
.faq-section h2 { border-top: none; padding-top: 0; margin-top: 0; margin-bottom: 24px; }
.faq-item { margin-bottom: 24px; }
.faq-item:last-child { margin-bottom: 0; }
.faq-q {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
.faq-q::before {
  content: "Q";
  background: var(--navy);
  color: var(--gold);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-a {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-soft);
  padding-left: 30px;
  line-height: 1.7;
}

/* Conclusione */
.conclusione {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--cream);
  padding: 44px 48px;
}
.conclusione h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--cream);
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 26px;
}
.conclusione p { color: rgba(248,245,240,.82); margin-bottom: 16px; font-size: 16.5px; font-family: 'DM Sans', sans-serif; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  margin-top: 8px;
  transition: background .2s, transform .2s;
}
.cta-btn:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }

/* Firma */
.firma {
  padding: 28px 48px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
}
.firma strong { color: var(--navy); font-size: 1.2em; font-family: 'Cormorant Garamond', Georgia, serif; }
.firma a { color: var(--gold); }
.firma a:hover { color: var(--gold-dark); }

/* ═══════════════════════════════════════════════════
   LEGGI ANCHE — Sezione uniforme per tutti gli articoli
   ═══════════════════════════════════════════════════ */
.leggi-anche {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(184,153,106,.2);
}
.leggi-anche__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.leggi-anche__linea {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.leggi-anche__titolo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.leggi-anche__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.leggi-anche__card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  display: block;
  background: var(--white);
}
.leggi-anche__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,41,64,.12);
  border-color: var(--gold);
}
.leggi-anche__card--consigliato {
  border-color: var(--gold);
  position: relative;
}
.leggi-anche__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}
.leggi-anche__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.leggi-anche__thumb-icon {
  font-size: 36px;
  opacity: 0.4;
}
.leggi-anche__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leggi-anche__body {
  padding: 18px 20px;
}
.leggi-anche__categoria {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.leggi-anche__titolo-articolo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin: 8px 0;
}
.leggi-anche__tempo {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

/* Backward compat: old .leggi-anche format (bare links) */
.leggi-anche a:not(.leggi-anche__card):not(.la-card) {
  display: block;
  padding: 16px 20px;
  margin-bottom: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  line-height: 1.4;
}
.leggi-anche a:not(.leggi-anche__card):not(.la-card):hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.leggi-anche a:not(.leggi-anche__card):not(.la-card)::after {
  content: ' \2192';
  color: var(--gold);
  font-weight: 400;
}

/* Old .la-card compat */
.la-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  display: block;
  background: var(--white);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.la-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.la-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--gold);
}
.la-card .la-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.la-card .la-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Leggi anche h3 (old format) */
.leggi-anche h3:not(.leggi-anche__titolo) {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-pale);
}

/* Mobile */
@media (max-width: 768px) {
  .leggi-anche__grid { grid-template-columns: 1fr; gap: 16px; }
  .leggi-anche__titolo-articolo { font-size: 17px; }
  .leggi-anche-grid { grid-template-columns: 1fr; }
}

/* Site Nav (article pages) */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 0;
}
.site-nav a {
  display: inline-block;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .15s;
}
.site-nav a:hover { color: var(--navy); border-bottom-color: var(--gold); }
.site-nav a.home { color: var(--navy); }
.site-nav .sep { color: var(--border); padding: 0 2px; }
.site-nav .cta-nav {
  margin-left: auto;
  background: var(--navy);
  color: var(--cream) !important;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
}
.site-nav .cta-nav:hover { background: var(--navy-light); }

/* Preview bar */
.preview-bar {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.preview-bar strong { color: var(--gold); }
.preview-bar span { opacity: .5; }

/* Passi grid */
.passi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.passo {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.passo-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.passo-icon { font-size: 28px; margin-bottom: 10px; }
.passo-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.passo p { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Link sito inline */
.link-sito {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-top: 8px;
  transition: border-color .2s;
}
.link-sito:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════
   BLOG FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(248,245,240,.5);
  text-align: center;
  padding: 32px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.site-footer a { color: rgba(248,245,240,.6); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Blog
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .articoli-grid { grid-template-columns: 1fr; }
  .blog-hero h1 { font-size: 26px; }
  .article-card.featured .card-body { padding: 28px 22px; }
  .article-card.featured .card-body h2 { font-size: 22px; }
  .blog-filters { padding: 12px 16px; }
  .filter-pill { font-size: 13px; padding: 8px 16px; }
  .studio-box { flex-direction: column; padding: 32px 24px; gap: 24px; }
  .header-nav { display: none; }

  /* Hamburger menu mobile */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cream);
  }
  .hamburger svg { width: 24px; height: 24px; }

  /* Quando il menu è aperto */
  .header-nav.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(184,153,106,.12);
    box-shadow: 0 12px 36px rgba(15,26,43,.35);
    z-index: 200;
  }
  .header-nav.open a {
    padding: 12px 16px;
    font-size: 15px;
    color: var(--cream);
    border-radius: var(--radius-sm);
  }
  .header-nav.open a:hover { background: rgba(248,245,240,.08); }

  /* QA FIX: Blog nav — visibile su mobile come barra compatta */
  .site-nav {
    padding: 0 16px;
    flex-wrap: wrap;
    gap: 0;
  }
  .site-nav a {
    font-size: 13px;
    padding: 12px 10px;
  }
  .site-nav .cta-nav {
    margin-left: auto;
    padding: 8px 12px;
    font-size: 11px;
  }

  article .hero, .hero { padding: 36px 24px 32px; }
  article .hero h1, .hero h1 { font-size: 26px; line-height: 1.25; }
  article .hero .meta, .hero .meta { font-size: 13px; gap: 12px; }

  /* REDESIGN FIX: Font più grandi su mobile — come il vecchio design */
  .content { padding: 28px 20px; max-width: 100%; }
  .content p { font-size: 16px; line-height: 1.8; }
  .content h2 { font-size: 1.4em; margin: 1.8em 0 0.6em; display: block; }
  .content h3 { font-size: 1.15em; }
  .content li { font-size: 16px; line-height: 1.8; }
  .content blockquote { font-size: 17px; padding: 18px 20px; }
  .content img { margin: 1.5em auto; }
  .author-box-hero { padding: 1em 1.2em; flex-direction: row; gap: 0.8em; }
  .author-box-hero img { width: 56px; height: 56px; }
  .author-box-hero .author-name { font-size: 1.1em; }
  .author-box-hero .author-title { font-size: 0.9em; }
  .author-box-hero .author-link { font-size: 0.9em; }

  /* REDESIGN FIX: Infografiche e card colorate più visibili */
  .stat-banner { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  .stat-number { font-size: 40px; }
  .stat-label { font-size: 15px; }

  .causa-card { padding: 20px 18px; border-width: 2px; }
  .causa-card .title { font-size: 17px; }
  .causa-card p { font-size: 16px; }

  .mito-box { padding: 20px; border-width: 2px; }
  .mito-box .label-myth { font-size: 13px; }
  .mito-row { flex-direction: column; }
  .mito-col { padding: 16px 18px; }
  .mito-sbagliato .col-label, .mito-giusto .col-label { font-size: 12px; }
  .mito-sbagliato p, .mito-giusto p { font-size: 16px; }

  .tratt-step { padding: 16px; }
  .tratt-body .tratt-title { font-size: 17px; }
  .tratt-body p { font-size: 16px; }

  .passo { padding: 20px 16px; }
  .passo-title { font-size: 16px; }
  .passo p { font-size: 14px; }

  .faq-section { padding: 28px 20px; }
  .faq-q { font-size: 17px; }
  .faq-a { font-size: 16px; line-height: 1.75; }

  .cause-grid { grid-template-columns: 1fr; }
  .passi-grid { grid-template-columns: 1fr; }

  .conclusione { padding: 32px 24px; }
  .conclusione h2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; }
  .conclusione p { font-size: 17px; }
  .cta-btn { font-size: 17px; padding: 16px 28px; }

  .firma { padding: 20px 24px; font-size: 15px; }
  .disclaimer { padding: 20px; font-size: 14px; }
  .disclaimer img { width: 64px; height: 64px; }
  .cta-info-link { display: block; text-align: center; margin: 8px 0; }
}


/* ═══════════════════════════════════════════════════════════════
   MISSING CLASSES — Restored from article-specific components
   These were lost when inline CSS was replaced with style.css
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────
   1. ACCESSIBILITY & SEO (skip-link, speakable-intro)
   Used in: ALL articles
   ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}
.speakable-intro {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
}

/* ───────────────────────────────────────────
   2. HEADER LOGO (logo, logo-nome, logo-sub)
   Used in: newer-design articles (12 articles)
   ─────────────────────────────────────────── */
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.logo-nome {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(248,245,240,.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ───────────────────────────────────────────
   3. DATO CHIAVE (dato-chiave, label)
   Highlighted evidence/data box — Used in 20+ articles
   ─────────────────────────────────────────── */
.dato-chiave {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}
.dato-chiave .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
}
.dato-chiave p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

/* Generic .label inside boxes (also used in allarme-box, mito-box, etc.) */
.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lead {
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
}

/* ───────────────────────────────────────────
   4. CALLOUT BOXES (callout, callout.warning, callout.success,
      callout.info, callout.warn, callout.ok, callout.danger)
   Used in: impianto-dentale-costo, sondaggio-parodontale,
            costo-cura-parodontite, and others (6+ articles)
   ─────────────────────────────────────────── */
.callout {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}
.callout p { margin: 0; font-size: 15px; }
.callout.warning {
  background: #faf5f0;
  border-color: var(--gold-pale);
  border-left-color: var(--navy);
  color: var(--text-soft);
}
.callout.warning p { color: var(--text-soft); }
.callout.success {
  background: var(--cream);
  border-color: var(--gold-pale);
  border-left-color: var(--gold);
  color: var(--text-soft);
}
.callout.success p { color: var(--text-soft); }
.callout.danger {
  background: #faf5f0;
  border-color: var(--gold-pale);
  border-left-color: var(--navy);
  color: var(--text-soft);
}
.callout.danger p { color: var(--text-soft); }
.callout.info {
  background: var(--cream);
  border-color: var(--gold-pale);
  border-left-color: var(--gold-light);
  color: var(--text-soft);
}
.callout.info p { color: var(--text-soft); }
.callout.warn {
  background: var(--cream);
  border-color: var(--gold-pale);
  border-left-color: var(--gold-light);
  color: var(--text-soft);
}
.callout.warn p { color: var(--text-soft); }
.callout.ok {
  background: var(--cream);
  border-color: var(--gold-pale);
  border-left-color: var(--gold);
  color: var(--text-soft);
}
.callout.ok p { color: var(--text-soft); }

/* ───────────────────────────────────────────
   5. URGENZA BOX & ALLARME BOX
   Red/amber warning boxes — Used in 7+ articles
   ─────────────────────────────────────────── */
.urgenza-box {
  background: #faf5f0;
  border: 1.5px solid var(--gold-pale);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
}
.urgenza-box .label {
  color: var(--navy);
}
.urgenza-box p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}
.allarme-box {
  background: #faf5f0;
  border: 1.5px solid var(--gold-pale);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}
.allarme-box .label {
  color: var(--navy);
  font-size: 14px;
}
.allarme-box ol, .allarme-box ul {
  padding-left: 20px;
  margin: 12px 0 0;
}
.allarme-box li {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Attenzione box (parodontite-e-fumo, parodontite-in-gravidanza) */
.attenzione {
  background: #faf5f0;
  border: 1.5px solid var(--gold-pale);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Avviso medico (parodontite-e-cuore, parodontite-perdere-denti) */
.avviso-medico {
  background: var(--cream);
  border: 1.5px solid var(--gold-pale);
  border-left: 4px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ───────────────────────────────────────────
   6. INFOGRAFICA (SVG container + caption)
   Used in: gengive-che-sanguinano, denti-che-si-muovono,
            parodontite-e-diabete, and 7+ articles
   ─────────────────────────────────────────── */
.infografica {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.infografica svg {
  display: block;
  width: 100%;
  height: auto;
}
.infografica-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-top: 1px solid var(--border-light);
}

/* ───────────────────────────────────────────
   7. FAQ BLOCK (alternative FAQ layout)
   Used in: parodontite-guida-completa, sondaggio-parodontale,
            parodontite-e-fumo, and 7+ articles
   ─────────────────────────────────────────── */
.faq-block {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  margin: 40px 0;
}
.faq-block .faq-item {
  margin-bottom: 24px;
}
.faq-block .faq-item:last-child {
  margin-bottom: 0;
}

/* FAQ Stack (impianto-dentale-costo layout with <details>) */
.faq-stack {
  margin: 28px 0;
}
.faq-stack details {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-stack details[open] {
  border-color: var(--gold);
}
.faq-stack summary {
  padding: 18px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-stack summary::-webkit-details-marker { display: none; }
.faq-stack summary::marker { display: none; }
.faq-ico {
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  transition: transform .2s;
}
details[open] .faq-ico { transform: rotate(45deg); }
.faq-body {
  padding: 0 22px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* FAQ Answer (parodontite-sintomi layout with <details>) */
.faq-answer {
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ───────────────────────────────────────────
   8. ARTICLE HERO (alternative article layout)
   Used in: impianto-dentale-costo, costo-cura-parodontite,
            denti-muovono-salvare, and 5+ articles
   ─────────────────────────────────────────── */
.article-hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 56px 48px 48px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: rgba(184,153,106,.06);
  border-radius: 50%;
}
.article-hero .cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.article-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--cream);
}
.article-hero .meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  opacity: .65;
  color: var(--cream);
}
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  font-family: 'DM Sans', sans-serif;
}
.article-body p {
  margin-bottom: 20px;
  font-size: 16.5px;
  color: var(--text-soft);
  line-height: 1.75;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 48px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.article-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin: 32px 0 12px;
}
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; font-size: 16.5px; line-height: 1.75; }
.article-body strong { color: var(--navy); }

/* ───────────────────────────────────────────
   9. AUTHOR BOX (author-box, author-name, etc.)
   Used in: 5+ articles (newer design)
   ─────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius);
  margin: 40px 0;
  border: 1px solid var(--border);
}
.author-box img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.author-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.author-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* Firma extended (firma-nome, firma-titolo, firma-bio) */
.firma-nome {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.firma-titolo {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.firma-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
.firma img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
/* FIX (2026-04-20): il flex qui disponeva a colonne affiancate firma-nome,
   <nav class="next-prev-articolo">, firma-titolo e firma-bio (quando il nav
   viene inserito come sibling nel wrapper). Torniamo a block stack.
   Per il layout img+testo di variante 2, usiamo flex sul parent solo
   quando c'è un <img>. */
.firma > div:first-child { display: block; }
.firma:has(> img) {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.firma:has(> img) > div { flex: 1 1 220px; min-width: 0; }

/* ───────────────────────────────────────────
   10. PRICE TABLE
   Used in: impianto-dentale-costo, costo-cura-parodontite,
            costo-impianti-dentali-marche
   ─────────────────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}
.price-table thead {
  background: var(--navy);
  color: var(--cream);
}
.price-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-soft);
  line-height: 1.5;
}
.price-table tbody tr:hover {
  background: rgba(184,153,106,.04);
}

/* ───────────────────────────────────────────
   11. RELATED GRID (alternative leggi-anche layout)
   Used in: 5+ articles (newer design)
   ─────────────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
}
.related-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-decoration: none;
  display: block;
  transition: border-color .2s, box-shadow .2s;
}
.related-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.rc-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}
.related-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}

/* ───────────────────────────────────────────
   12. CTA BOXES (cta-box, cta-screening, btn-wa, btn-screening)
   Used in: impianto-dentale-costo, impianti-dentali-problemi
   ─────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 44px 40px;
  margin: 40px 0;
  color: var(--cream);
}
.cta-box h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  border-top: none;
  margin-top: 0;
  margin-bottom: 12px;
}
.cta-box p {
  color: rgba(248,245,240,.8);
  font-size: 15px;
  margin-bottom: 20px;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: background .2s, transform .2s;
}
.btn-wa:hover { background: var(--verde-h); transform: translateY(-1px); color: #fff; }

.cta-screening {
  background: var(--cream);
  border: 1.5px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
  text-align: center;
}
.cta-screening h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.cta-screening p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.cta-screening a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.cta-screening a:hover { text-decoration: underline; }
.btn-screening {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--verde);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: background .2s;
}
.btn-screening:hover { background: var(--verde-h); color: #fff; }

/* ───────────────────────────────────────────
   13. SINTOMO CARD (parodontite-sintomi.html)
   ─────────────────────────────────────────── */
.sintomo-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 24px 0;
}
.sintomo-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sintomo-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.sintomo-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ───────────────────────────────────────────
   14. TABELLA STADI (parodontite-sintomi.html)
   ─────────────────────────────────────────── */
.tabella-stadi {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}
.tabella-stadi thead {
  background: var(--navy);
  color: var(--cream);
}
.tabella-stadi th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.tabella-stadi td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-soft);
  line-height: 1.5;
}
.stadio-iniziale {
  background: var(--cream);
  color: var(--navy);
}
.stadio-avanzato {
  background: #f5eeea;
  color: var(--navy);
}

/* Trimestre table (parodontite-in-gravidanza.html) */
.trimestre-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}
.trimestre-table thead { background: var(--navy); color: var(--cream); }
.trimestre-table th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: 13px; }
.trimestre-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); color: var(--text-soft); line-height: 1.5; }
.cauto {
  display: inline-block;
  background: #f5eeea;
  color: var(--navy);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ok {
  display: inline-block;
  background: var(--cream);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ───────────────────────────────────────────
   15. TEST BOX (parodontite-sintomi.html)
   ─────────────────────────────────────────── */
.test-box {
  background: var(--cream);
  border: 1.5px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}
.test-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.test-domanda {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.test-domanda:last-of-type { border-bottom: none; }
.test-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.test-check::before {
  content: '';
}

/* ───────────────────────────────────────────
   16. VISITA STEPS (parodontite-sintomi.html)
   ─────────────────────────────────────────── */
.visita-steps {
  margin: 28px 0;
}
.visita-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
}
.visita-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visita-body {
  flex: 1;
}
.visita-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.visita-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

/* ───────────────────────────────────────────
   17. STEP LIST (sondaggio-parodontale.html)
   ─────────────────────────────────────────── */
.step-list {
  list-style: none;
  padding-left: 0;
  margin: 28px 0;
}
.step-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Steps Urgenza (denti-che-si-muovono.html) */
.steps-urgenza {
  margin: 24px 0;
}
.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: #faf5f0;
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 1px solid var(--gold-pale);
}
.step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}
.steps-urgenza .step-num {
  background: var(--navy);
  color: var(--gold);
}

/* ───────────────────────────────────────────
   18. MM SCALE (sondaggio-parodontale.html)
   Millimeter measurement cards
   ─────────────────────────────────────────── */
.mm-scale {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.mm-card {
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.mm-card.verde { background: var(--cream); border: 1.5px solid var(--gold-pale); }
.mm-card.giallo { background: #faf5f0; border: 1.5px solid var(--gold); }
.mm-card.rosso { background: #f5eeea; border: 1.5px solid var(--navy); }
.mm-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.mm-card.verde .mm-num { color: var(--gold); }
.mm-card.giallo .mm-num { color: var(--gold); }
.mm-card.rosso .mm-num { color: var(--navy); }
.mm-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.mm-card.verde .mm-label { color: var(--gold); }
.mm-card.giallo .mm-label { color: var(--gold); }
.mm-card.rosso .mm-label { color: var(--navy); }
.mm-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
.mm-card.verde .mm-desc { color: var(--text-soft); }
.mm-card.giallo .mm-desc { color: var(--text-soft); }
.mm-card.rosso .mm-desc { color: var(--text-soft); }

/* ───────────────────────────────────────────
   19. INFOGRAFICA VALORI (tasche-parodontali.html)
   Color-coded depth scale cards
   ─────────────────────────────────────────── */
.infografica-valori {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.valore-box {
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.valore-box.verde, .valore-box:nth-child(1) { background: var(--cream); border: 1.5px solid var(--gold-pale); }
.valore-box.giallo, .valore-box:nth-child(2) { background: var(--cream); border: 1.5px solid var(--gold); }
.valore-box.arancio, .valore-box:nth-child(3) { background: #f5eeea; border: 1.5px solid var(--gold); }
.valore-box.rosso, .valore-box:nth-child(4) { background: #f0ebe4; border: 1.5px solid var(--navy); }
.valore-mm {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.valore-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.valore-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  opacity: 0.8;
}

/* ───────────────────────────────────────────
   20. FASE BOX (parodontite-e-impianti, dopo-60-anni)
   Treatment phase steps
   ─────────────────────────────────────────── */
.fase-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
}
.fase-num {
  background: var(--navy);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.fase-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.fase-box p, .fase p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

/* ───────────────────────────────────────────
   21. STAGE GRID (costo-cura-parodontite.html)
   Parodontite stages comparison cards
   ─────────────────────────────────────────── */
.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.stage-card {
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1.5px solid;
}
.stage-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.stage-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.stage-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.stage-1 { background: var(--cream); border-color: var(--gold-pale); }
.stage-1 .stage-label { color: var(--gold); }
.stage-1 h3 { color: var(--navy); }
.stage-1 p { color: var(--text-soft); }
.stage-2 { background: var(--cream); border-color: var(--gold); }
.stage-2 .stage-label { color: var(--gold); }
.stage-2 h3 { color: var(--navy); }
.stage-2 p { color: var(--text-soft); }
.stage-3 { background: #f5eeea; border-color: var(--gold); }
.stage-3 .stage-label { color: var(--gold); }
.stage-3 h3 { color: var(--navy); }
.stage-3 p { color: var(--text-soft); }
.stage-4 { background: #f0ebe4; border-color: var(--navy); }
.stage-4 .stage-label { color: var(--navy); }
.stage-4 h3 { color: var(--navy); }
.stage-4 p { color: var(--text-soft); }

/* Badge (costo-cura-parodontite.html) */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-all {
  background: var(--cream);
  color: var(--gold);
}
.badge-adv {
  background: #f5eeea;
  color: var(--navy);
}

/* ───────────────────────────────────────────
   22. GRADE GRID (denti-muovono-salvare.html)
   Tooth mobility grade cards
   ─────────────────────────────────────────── */
.grade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.grade-card {
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1.5px solid;
}
.grade-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.grade-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.grade-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.grade-1 { background: var(--cream); border-color: var(--gold-pale); }
.grade-1 .grade-label { color: var(--gold); }
.grade-1 h3 { color: var(--navy); }
.grade-1 p { color: var(--text-soft); }
.grade-2 { background: var(--cream); border-color: var(--gold); }
.grade-2 .grade-label { color: var(--gold); }
.grade-2 h3 { color: var(--navy); }
.grade-2 p { color: var(--text-soft); }
.grade-3 { background: #f0ebe4; border-color: var(--navy); }
.grade-3 .grade-label { color: var(--navy); }
.grade-3 h3 { color: var(--navy); }
.grade-3 p { color: var(--text-soft); }

/* ───────────────────────────────────────────
   23. TIMELINE (impianti-dentali-dolore.html)
   Post-surgery recovery timeline
   ─────────────────────────────────────────── */
.timeline {
  margin: 28px 0;
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
}
.timeline-marker {
  position: absolute;
  left: -48px;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-content {
  flex: 1;
}
.timeline-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

/* ───────────────────────────────────────────
   24. DIFF GRID (gengivite.html)
   Gengivite vs Parodontite comparison
   ─────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.diff-card {
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1.5px solid;
}
.diff-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.diff-card ul {
  padding-left: 18px;
  margin: 0;
}
.diff-card li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 6px;
}
.diff-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.diff-verde { background: var(--cream); border-color: var(--gold); }
.diff-verde .diff-tag { color: var(--gold); }
.diff-verde h3 { color: var(--navy); }
.diff-verde li { color: var(--text-soft); }
.diff-rossa { background: #f5eeea; border-color: var(--navy); }
.diff-rossa .diff-tag { color: var(--navy); }
.diff-rossa h3 { color: var(--navy); }
.diff-rossa li { color: var(--text-soft); }

/* ───────────────────────────────────────────
   25. SINTOMI LIST (gengivite.html)
   Icon-based symptom list
   ─────────────────────────────────────────── */
.sintomi-list {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}
.sintomi-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.sintomi-list li:last-child { border-bottom: none; }
.s-ico {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.s-body { flex: 1; }
.s-titolo {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.s-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* INFO BOX (gengivite.html) */
.info-box {
  background: var(--cream);
  border: 1.5px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
}
.info-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-box p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

/* ───────────────────────────────────────────
   26. SCALA (gengivite.html)
   Disease progression scale/timeline
   ─────────────────────────────────────────── */
.scala {
  margin: 32px 0;
}
.scala-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
}
.scala-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.dot-1 { background: var(--gold); }
.dot-2 { background: var(--gold-light); }
.dot-3 { background: var(--navy); }
.scala-body { flex: 1; }
.scala-titolo {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.titolo-1 { color: var(--gold); }
.titolo-2 { color: var(--gold); }
.titolo-3 { color: var(--navy); }
.scala-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}
.scala-connector {
  width: 2px;
  height: 20px;
  background: var(--border);
  margin: 0 0 0 38px;
}

/* Causa variants (gengivite.html) */
.causa-1 { background: var(--cream); border: 1.5px solid var(--gold-pale); }
.causa-1 .title { color: var(--navy); }
.causa-1 p { color: var(--text-soft); }
.causa-2 { background: #faf5f0; border: 1.5px solid var(--gold); }
.causa-2 .title { color: var(--navy); }
.causa-2 p { color: var(--text-soft); }
.causa-3 { background: var(--cream); border: 1.5px solid var(--border); }
.causa-3 .title { color: var(--navy); }
.causa-3 p { color: var(--text-soft); }
.causa-4 { background: var(--white); border: 1.5px solid var(--border); }
.causa-4 .title { color: var(--navy); }
.causa-4 p { color: var(--text-soft); }

/* ───────────────────────────────────────────
   27. PROMESSA / REALTA (parodontite-laser.html)
   Promise vs Reality comparison boxes
   ─────────────────────────────────────────── */
.promessa-box {
  background: #faf5f0;
  border: 1.5px solid var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 16px 0 12px;
}
.promessa-box p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}
.realta-box {
  background: var(--cream);
  border: 1.5px solid var(--gold-pale);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 0 0 28px;
}
.realta-box p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}
.warning-box {
  background: #faf5f0;
  border: 1.5px solid var(--gold-pale);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}
.checklist-verde {
  list-style: none;
  padding-left: 0;
}
.checklist-verde li {
  padding: 6px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
}
.checklist-verde li::before { content: '\2705 '; }
.checklist-rossa {
  list-style: none;
  padding-left: 0;
}
.checklist-rossa li {
  padding: 6px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
}
.checklist-rossa li::before { content: '\274C '; }

/* ───────────────────────────────────────────
   28. BOOK BOX (impianti-dentali-dolore.html)
   ─────────────────────────────────────────── */
.book-box {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}
.book-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.book-box p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

/* ───────────────────────────────────────────
   29. DISCLAIMER & GLOSSARIO (impianti-dentali-problemi.html)
   ─────────────────────────────────────────── */
.disclaimer {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}
.disclaimer img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}
.disclaimer strong {
  font-size: 1.2em;
  color: var(--navy);
}
.glossario {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}
.glossario h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.glossario dl { margin: 0; }
.glossario dt {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 14px;
}
.glossario dd {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-left: 0;
  padding-left: 16px;
  border-left: 2px solid var(--border-light);
}

/* ───────────────────────────────────────────
   30. FONTI & FOOTER (parodontite-sintomi.html)
   ─────────────────────────────────────────── */
.fonti {
  font-family: 'DM Sans', sans-serif;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 40px 0;
}
.fonti h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.fonti ol {
  padding-left: 20px;
}
.fonti li {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 8px;
}
.fonti a { color: var(--gold); }
.footer-line {
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 4px;
}

/* ───────────────────────────────────────────
   31. WA FLOAT (WhatsApp floating button)
   ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  z-index: 1000;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}

/* QA FIX: Missing classes from blog articles */

/* Hero article — already styled via `article .hero` but standalone .hero needs definition */
.hero .categoria {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero .meta {
  display: flex;
  gap: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(248,245,240,.65);
  flex-wrap: wrap;
}

/* Navigation classes */
.site-nav .home { color: var(--navy); }
.site-nav .sep { color: var(--border); padding: 0 2px; }
.site-nav .cta-nav {
  margin-left: auto;
  background: var(--navy);
  color: var(--cream) !important;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
}
.site-nav .cta-nav:hover { background: var(--navy-light); }
.header-nav .wa-btn {
  background: var(--verde);
  color: white !important;
  border-radius: var(--radius-sm);
}
.header-nav .wa-btn:hover { background: var(--verde-h); }

/* MM-scale color variants for sondaggio-parodontale */
.mm-card.verde { background: var(--cream); border-color: var(--gold-pale); }
.mm-card.verde .mm-num { color: var(--gold); }
.mm-card.giallo { background: #faf5f0; border-color: var(--gold); }
.mm-card.giallo .mm-num { color: var(--gold); }
.mm-card.rosso { background: #f5eeea; border-color: var(--navy); }
.mm-card.rosso .mm-num { color: var(--navy); }

/* Callout variants */
.callout.danger, .callout.warning { background: #faf5f0; border-left-color: var(--navy); }
.callout.danger .callout-title, .callout.warning .callout-title { color: var(--navy); }
.callout.success, .callout.ok { background: var(--cream); border-left-color: var(--gold); }
.callout.success .callout-title, .callout.ok .callout-title { color: var(--gold); }
.callout.warn, .callout.info { background: var(--cream); border-left-color: var(--gold-light); }
.callout.warn .callout-title, .callout.info .callout-title { color: var(--gold); }

/* ───────────────────────────────────────────
   33. RESPONSIVE — Missing classes
   ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .article-hero { padding: 36px 24px 32px; }
  .article-hero h1 { font-size: 26px; line-height: 1.25; }
  .article-body { padding: 28px 20px; }
  .article-body p { font-size: 18px; line-height: 1.8; }
  .article-body h2 { font-size: 22px; margin: 36px 0 14px; }
  .article-body li { font-size: 18px; }

  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 10px 12px; }
  .tabella-stadi { font-size: 13px; }
  .tabella-stadi th, .tabella-stadi td { padding: 10px 12px; }
  .trimestre-table { font-size: 13px; }
  .trimestre-table th, .trimestre-table td { padding: 10px 12px; }

  /* QA FIX: Tables responsive — prevent overflow */
  .tabella-stadi, .price-table, .trimestre-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
  }
  table:not(.tabella-stadi):not(.price-table):not(.trimestre-table) {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .related-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: 1fr; }
  .grade-grid { grid-template-columns: 1fr; }
  .mm-scale { grid-template-columns: 1fr; }
  .infografica-valori { grid-template-columns: 1fr 1fr; }

  .sintomo-card { padding: 22px 18px; }
  .sintomo-card h3 { font-size: 18px; }
  .sintomo-card p { font-size: 16px; }

  .cta-box { padding: 32px 24px; }
  .cta-box h2 { font-size: 24px; }
  .author-box { flex-direction: column; gap: 14px; }

  .timeline { padding-left: 40px; }
  .timeline-marker { left: -40px; width: 34px; height: 34px; font-size: 10px; }

  .callout { padding: 18px 20px; }
  .dato-chiave { padding: 20px; }
  .urgenza-box { padding: 18px 20px; }
  .allarme-box { padding: 20px; }

  .step-list li { flex-direction: row; }
  .steps-urgenza .step-item { padding: 14px 16px; }

  .scala-step { padding: 16px; }
  .scala-connector { margin-left: 30px; }

  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 24px; }

  /* QA FIX: Blog nav bar mobile — spostare in basso per non coprire contenuto */
  .blog-nav-bar { padding: 10px 16px; }
  .blog-nav-bar .nav-links { gap: 6px; flex-wrap: nowrap; overflow-x: auto; }
  .blog-nav-bar a { font-size: 12px; padding: 8px 12px; white-space: nowrap; }
}

/* ═══════════════════════════════════════════════════
   NAVIGAZIONE BLOG MIGLIORATA
   Barra sticky per navigare facilmente tra articoli
   ═══════════════════════════════════════════════════ */

/* QA FIX: Barra navigazione blog sticky — facile passare da articolo ad articolo */
.blog-nav-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  box-shadow: 0 2px 8px rgba(26,41,64,.06);
}
.blog-nav-bar .nav-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.blog-nav-bar .nav-back {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.blog-nav-bar .nav-back:hover { color: var(--gold); }
.blog-nav-bar .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-nav-bar a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.blog-nav-bar a:hover {
  background: var(--cream);
  color: var(--navy);
}
.blog-nav-bar .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}
.blog-nav-bar .nav-cta:hover {
  background: var(--gold-light);
}

/* Torna al blog — CTA in fondo all'articolo */
.blog-footer-nav {
  text-align: center;
  padding: 40px 24px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.blog-footer-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 28px;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  display: inline-block;
}
.blog-footer-nav a:hover {
  background: var(--navy);
  color: var(--cream);
}

/* UX: Box "In sintesi" alla fine degli articoli */
.box-sintesi {
  background: var(--cream);
  border: 2px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 28px 28px 20px;
  margin: 40px 0;
}
.box-sintesi h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.box-sintesi ul {
  list-style: none;
  padding: 0;
}
.box-sintesi li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
}
.box-sintesi li:last-child { border-bottom: none; }
.box-sintesi li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   UX/UI UPGRADE — Nuovi componenti (aprile 2026)
   TOC, CTA standardizzate, text-wall breakers, back-to-top
   ═══════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

/* ─── TOC / Sommario articolo ─── */
.toc {
  display: block !important;
  background: var(--cream);
  border: 1px solid #e0dcd5;
  border-radius: 12px;
  padding: 1.5em 2em;
  margin: 28px auto 36px;
  max-width: 720px;
}
.toc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3em;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8em;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.toc-list li {
  counter-increment: toc;
  padding: 0.4em 0;
}
.toc-list li:last-child { padding-bottom: 0; }
.toc-list li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05em;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: color .2s;
  line-height: 1.6;
}
.toc-list li a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toc-list li a:hover { color: var(--gold); }

/* ─── CTA Prenota Visita (navy gradient) ─── */
.cta-prenota {
  background: linear-gradient(135deg, #1a3a5c, #2a5298);
  border-radius: 12px;
  padding: 28px;
  margin: 36px 0;
  text-align: center;
  color: white;
}
.cta-prenota .cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}
.cta-prenota .cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 16px;
}

/* ─── CTA Screening (green gradient) ─── */
.cta-screening-box {
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 12px;
  padding: 24px;
  margin: 36px 0;
  text-align: center;
  color: white;
}
.cta-screening-box .cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}
.cta-screening-box .cta-sub {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 16px;
}

/* ─── CTA Info (cream + gold border) ─── */
.cta-info-box {
  background: #f0f7ff;
  border: 2px solid #2a7dd4;
  border-radius: 12px;
  padding: 24px;
  margin: 36px 0;
  text-align: center;
}
.cta-info-box .cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cta-info-box .cta-sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

/* ─── CTA Buttons ─── */
.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.cta-wa-btn:hover { background: var(--gold-light); transform: translateY(-1px); color: white; }

.cta-test-btn {
  display: inline-block;
  background: white;
  color: #059669;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.cta-test-btn:hover { background: #f0fdf4; transform: translateY(-1px); }

.cta-info-link {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.cta-info-link:hover { background: var(--navy-light); transform: translateY(-1px); color: var(--cream); }

/* ─── Key Takeaway (spezza muri di testo) ─── */
.key-takeaway {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
  margin: 32px 0;
}
.key-takeaway .kt-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}
.key-takeaway p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.65;
  margin: 0;
}
.key-takeaway p strong { color: var(--navy); }

/* ─── Clinical Note (nota del dottore) ─── */
.clinical-note {
  background: #f0f7ff;
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
  margin: 32px 0;
}
.clinical-note .cn-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.clinical-note p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

/* ─── Back to Top ─── */
.btn-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .2s;
}
.btn-top.visible { opacity: 1; visibility: visible; }
.btn-top:hover { transform: translateY(-2px); background: var(--navy-light); }

/* ─── Author box posizionato dopo hero ─── */
.author-box-hero {
  display: flex;
  gap: 1em;
  align-items: center;
  padding: 1.2em 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  border-radius: 10px;
  margin: 0 auto;
  max-width: 720px;
}
.author-box-hero img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box-hero .author-info {
  flex: 1;
}
.author-box-hero .author-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25em;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.author-box-hero .author-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1em;
  color: #555;
  margin-bottom: 0;
}
.author-box-hero .author-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1em;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: color .15s;
}
.author-box-hero .author-link:hover { color: var(--gold-dark); text-decoration: underline; }

/* ─── Infografiche SVG responsive (container "#f0f7ff") ─── */
.content div[style*="background:#f0f7ff"] {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content div[style*="background:#f0f7ff"] svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ─── Responsive: nuovi componenti ─── */
@media (max-width: 768px) {
  .toc { padding: 20px 22px; margin: 20px 0 28px; display: block !important; }
  .toc-list li a { font-size: 14px; }
  .cta-prenota, .cta-screening-box { padding: 24px 20px; margin: 28px 0; }
  .cta-info-box { padding: 20px; margin: 28px 0; }
  .key-takeaway, .clinical-note { padding: 18px 20px; margin: 24px 0; }
  .author-box-hero { padding: 14px 20px; gap: 12px; }
  .author-box-hero img { width: 40px; height: 40px; }
  .author-box-hero .author-name { font-size: 13px; }
  .author-box-hero .author-title { font-size: 11px; }
  .author-box-hero .author-link { font-size: 11px; }
  .btn-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 18px; }
  /* Infografiche SVG: padding ridotto su mobile */
  .content div[style*="background:#f0f7ff"] { padding: 16px 12px; margin: 24px 0; border-radius: 10px; }
  .content div[style*="background:#f0f7ff"] p { font-size: 11px; }
  /* Stat banner: stack verticale su mobile */
  .stat-banner { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .stat-item { min-width: unset; }
}

/* ═══════════════════════════════════════════════════════════
   34. IMAGES & INFOGRAFICHE — RESPONSIVE FIX (mobile leggibile)
   Rende tutte le immagini e le infografiche SVG degli articoli
   completamente responsive e leggibili su mobile. Le infografiche
   complesse con viewBox largo (900x*) abilitano scroll orizzontale
   per mantenere il testo interno leggibile.
   ═══════════════════════════════════════════════════════════ */

/* Tutte le immagini del corpo articolo: full fluid */
.content img,
.article-body img,
article img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Figure: full width */
.content figure,
.article-body figure,
article figure {
  max-width: 100%;
  margin: 24px auto;
}
.content figure img,
.article-body figure img,
article figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Container infografica SVG (wrapper div.infografica) */
.infografica {
  width: 100%;
  max-width: 100%;
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.infografica svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* SVG inline come figli diretti dentro .content (infografiche senza wrapper) */
.content > svg,
.content p + svg,
.content h2 + svg,
.content h3 + svg,
.article-body > svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
}

/* ─── Mobile: infografiche leggibili ─── */
@media (max-width: 768px) {
  /* Articoli: immagini forzatamente full-width su mobile */
  .content img,
  .article-body img,
  article img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  /* Eccezione: avatar autore e icone piccole mantengono dimensioni fisse */
  .content img[width="48"],
  .content img[width="40"],
  .content img[width="36"],
  .content img[width="32"],
  .author-box img,
  .author-box-hero img,
  .article-author img,
  .author-mini img {
    width: auto !important;
    max-width: 100% !important;
    margin: 0;
  }

  /* Infografiche SVG complesse (viewBox largo 900x*):
     abilita scroll orizzontale e mantieni testo leggibile */
  .infografica {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    padding: 0;
    border-radius: var(--radius);
  }
  .infografica svg {
    min-width: 680px;
    width: 100%;
    height: auto;
  }

  /* Infografiche SVG semplici (viewBox 600x*/700x*) nei container #f0f7ff:
     full width senza vincoli min-width */
  .content div[style*="background:#f0f7ff"] svg,
  .article-body div[style*="background:#f0f7ff"] svg {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
  }

  /* Caso clinico (gengive-che-si-ritirano): stack verticale su mobile */
  .caso-clinico-row {
    flex-direction: column !important;
  }
  .caso-clinico-img {
    width: 100% !important;
    max-width: 420px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center;
    margin: 0 auto !important;
  }
  .caso-clinico-text {
    padding: 20px 18px !important;
    text-align: center;
  }
  .caso-clinico-text > div[style*="flex-direction: column"] {
    align-items: center !important;
  }

  /* Tabella cause recessione: trasforma righe in cards su mobile */
  .tabella-cause-recessione thead {
    display: none;
  }
  .tabella-cause-recessione,
  .tabella-cause-recessione tbody,
  .tabella-cause-recessione tr,
  .tabella-cause-recessione td {
    display: block;
    width: 100%;
  }
  .tabella-cause-recessione tr {
    background: #fff !important;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 14px;
    padding: 14px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  }
  .tabella-cause-recessione td {
    border: none !important;
    padding: 6px 0 !important;
    text-align: left !important;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .tabella-cause-recessione td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }
  .tabella-cause-recessione td.td-causa {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #1a2e4a !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #f3f4f6 !important;
    margin-bottom: 8px;
    display: block;
  }
  .tabella-cause-recessione td.td-causa::before {
    display: none;
  }
}

/* ─── Caso clinico (gengive-che-si-ritirano): desktop ─── */
@media (min-width: 769px) {
  .caso-clinico-row {
    min-height: 420px;
    max-height: 520px;
  }
  .caso-clinico-row > .caso-clinico-img {
    width: 45% !important;
    max-width: 45% !important;
    height: 100% !important;
    max-height: 520px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #fdf2f4;
    align-self: stretch;
    padding: 16px 0;
  }
  .caso-clinico-row > .caso-clinico-text {
    flex: 1;
    max-width: 55%;
  }
}

/* ─── Tabella cause recessione: desktop ─── */
.tabella-cause-wrapper {
  overflow-x: auto;
  margin: 2em 0;
  -webkit-overflow-scrolling: touch;
}
.tabella-cause-recessione {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.tabella-cause-recessione thead th {
  background: #0d6efd;
  color: #ffffff;
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
}
.tabella-cause-recessione thead th.th-causa {
  background: #1a2e4a;
  text-align: left;
}
.tabella-cause-recessione tbody tr:nth-child(odd) {
  background: #ffffff;
}
.tabella-cause-recessione tbody tr:nth-child(even) {
  background: #f9fafb;
}
.tabella-cause-recessione tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid #f3f4f6;
  text-align: center;
  color: #374151;
}
.tabella-cause-recessione tbody td.td-causa {
  text-align: left;
  font-weight: 600;
}
.tabella-cause-recessione tbody tr:last-child td {
  border-bottom: none;
}
.tabella-cause-recessione .badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.tabella-cause-recessione .badge-rosso   { background: #fee2e2; color: #b91c1c; }
.tabella-cause-recessione .badge-giallo  { background: #fef3c7; color: #b45309; }
.tabella-cause-recessione .badge-azzurro { background: #e0f2fe; color: #0369a1; }
.tabella-cause-recessione .rev-parziale  { color: #d97706; font-weight: 700; }
.tabella-cause-recessione .rev-si        { color: #16a34a; font-weight: 700; }

/* ─── Mobile stretto (iPhone SE, 320-375px): ulteriore riduzione ─── */
@media (max-width: 420px) {
  .infografica {
    margin: 20px -4px;
  }
  .infografica svg {
    min-width: 600px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   35. BLOG INDEX v2 — Breadcrumb, Hero v2, Category Nav,
   Category Sections, Subcategories, CTA Banner, FAQ, Pillar Links
   ═══════════════════════════════════════════════════════════════ */

/* ─── Breadcrumb ─── */
.blog-breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-inner a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner .sep {
  color: var(--border);
  font-weight: 400;
}

/* ─── Hero v2 ─── */
.blog-hero-v2 {
  padding: clamp(56px, 8vw, 96px) 24px;
  /* Override del gradient ereditato da .blog-hero: uniforme, senza "banda" visibile */
  background: radial-gradient(ellipse at center top, #1e324d 0%, #162338 100%) !important;
}
.blog-hero-v2 .hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.blog-hero-v2 .hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(248,245,240,.72);
  max-width: 640px;
  margin: 0 auto 32px;
}
.blog-hero-v2 .hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 32px 0 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(184,153,106,.22);
  border-bottom: 1px solid rgba(184,153,106,.22);
}
.blog-hero-v2 .hero-stat {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}
.blog-hero-v2 .hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.blog-hero-v2 .hero-stat span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(248,245,240,.6);
}
.blog-hero-v2 .hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-primary,
.btn-hero-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .2s;
  line-height: 1;
}
.btn-hero-primary {
  background: #25D366;
  color: #ffffff;
}
.btn-hero-primary:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-hero-secondary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ─── Category Nav sticky ─── */
.category-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(26,41,64,.04);
}
.category-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.category-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  padding: 18px 18px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  flex-shrink: 0;
}
.cat-nav-item:hover {
  color: var(--navy);
  border-bottom-color: var(--gold-pale);
}
.cat-nav-item.active {
  color: var(--navy);
  font-weight: 700;
  border-bottom-color: var(--gold);
}

/* ─── Blog Intro ─── */
.blog-intro {
  max-width: 800px;
  margin: 48px auto 32px;
  padding: 0 24px;
}
.blog-intro p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  text-align: center;
}
.blog-intro p strong { color: var(--navy); font-weight: 700; }

/* ─── Category Section ─── */
.category-section {
  max-width: var(--container);
  margin: 0 auto 72px;
  padding: 0 24px;
  scroll-margin-top: 80px;
}
.cat-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gold-pale);
}
.cat-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--cream), rgba(184,153,106,.15));
  border: 1.5px solid var(--gold-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold-dark);
}
.cat-head-text { flex: 1; min-width: 0; }
.cat-head-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 6px;
}
.cat-head-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
  max-width: 680px;
}

/* ─── Subcategory heading ─── */
.subcat-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--gold-dark);
  margin: 36px 0 20px;
  padding-left: 14px;
  position: relative;
}
.subcat-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.category-section > .subcat-heading:first-of-type { margin-top: 0; }

/* category section articoli-grid overrides */
.category-section .articoli-grid {
  margin-bottom: 32px;
}
.category-section .articoli-grid:last-child {
  margin-bottom: 0;
}

/* ─── CTA Banner (screening + prenota) — v2 migliorato ─── */
.cta-banner {
  max-width: 1100px;
  margin: 0 auto 72px !important;
  padding: 0 24px;
}
.cta-banner-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  padding: 32px 40px 32px 36px !important;
  border-radius: 18px !important;
  position: relative;
  overflow: hidden;
}

/* Screening: chiaro con accenti gold */
.cta-screening-banner .cta-banner-inner {
  background: linear-gradient(135deg, #fefcf8 0%, #f8f1e4 55%, #f3e9d3 100%) !important;
  border: 1.5px solid rgba(184,153,106,.35) !important;
  box-shadow:
    0 2px 8px rgba(26,41,64,.04),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.cta-screening-banner .cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184,153,106,.18) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.cta-screening-banner .cta-banner-inner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 18px 0 0 18px;
}

/* Prenota: navy scuro con accenti gold */
.cta-prenota-banner .cta-banner-inner {
  background: linear-gradient(135deg, #1a2940 0%, #243b5c 55%, #1a2940 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 12px 32px rgba(26,41,64,.25),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.cta-prenota-banner .cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
}
.cta-prenota-banner .cta-banner-inner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184,153,106,.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Icona CTA */
.cta-icon-wrap {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cta-screening-banner .cta-icon-wrap {
  background: linear-gradient(145deg, #ffffff 0%, #f8f1e4 100%);
  border: 1.5px solid rgba(184,153,106,.4);
  box-shadow: 0 4px 14px rgba(184,153,106,.15);
  color: var(--gold-dark);
}
.cta-prenota-banner .cta-icon-wrap {
  background: linear-gradient(145deg, rgba(184,153,106,.22), rgba(184,153,106,.08));
  border: 1.5px solid rgba(184,153,106,.4);
  color: var(--gold);
}
.cta-icon-wrap svg {
  width: 32px;
  height: 32px;
}

/* Testo CTA */
.cta-banner-text {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 2;
  text-align: left !important;
}
.cta-banner-text * {
  text-align: left !important;
}
.cta-eyebrow {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
  line-height: 1.3 !important;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
}
.cta-screening-banner .cta-eyebrow {
  color: #8a6d2a !important;
  background: rgba(184,153,106,.18);
}
.cta-prenota-banner .cta-eyebrow {
  color: #e8cf96 !important;
  background: rgba(184,153,106,.18);
}

.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(22px, 2.4vw, 28px) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  margin: 8px 0 8px !important;
  letter-spacing: -.2px;
}
.cta-screening-banner .cta-title {
  color: #1a2940 !important;
}
.cta-prenota-banner .cta-title {
  color: #ffffff !important;
}

.cta-desc {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: 560px;
}
.cta-screening-banner .cta-desc {
  color: #5a6478 !important;
}
.cta-prenota-banner .cta-desc {
  color: rgba(255,255,255,.78) !important;
}

/* Bottone CTA */
.cta-banner-btn {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 15px 28px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  letter-spacing: .2px;
}
.cta-screening-banner .cta-banner-btn {
  background: linear-gradient(145deg, var(--gold) 0%, #c4a878 100%) !important;
  color: #1a2940 !important;
  box-shadow:
    0 4px 14px rgba(184,153,106,.35),
    0 2px 4px rgba(184,153,106,.2);
}
.cta-screening-banner .cta-banner-btn:hover {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(184,153,106,.45),
    0 4px 8px rgba(184,153,106,.25);
}
.cta-banner-btn-wa {
  background: linear-gradient(145deg, #25D366 0%, #1da851 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 4px 14px rgba(37,211,102,.35),
    0 2px 4px rgba(37,211,102,.2);
}
.cta-banner-btn-wa:hover {
  background: linear-gradient(145deg, #2ae874 0%, #25D366 100%) !important;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(37,211,102,.45),
    0 4px 8px rgba(37,211,102,.25);
}

/* ─── FAQ Blog ─── */
.faq-blog {
  max-width: 860px;
  margin: 0 auto 72px;
  padding: 0 24px;
  scroll-margin-top: 80px;
}
.faq-blog h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin: 0 0 14px;
}
.faq-blog .faq-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  text-align: center;
  color: var(--text-soft);
  margin: 0 0 36px;
}
.faq-blog .faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-blog .faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(184,153,106,.1);
}
.faq-blog .faq-item summary {
  padding: 22px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-blog .faq-item summary::-webkit-details-marker { display: none; }
.faq-blog .faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  font-weight: 400;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-blog .faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-blog .faq-item p {
  padding: 0 26px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}
.faq-blog .faq-item p a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.faq-blog .faq-item p a:hover { color: var(--gold); }

/* ─── Pillar Links ─── */
.pillar-links {
  max-width: var(--container);
  margin: 0 auto 72px;
  padding: 0 24px;
}
.pillar-links h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin: 0 0 12px;
}
.pillar-links > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  text-align: center;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  transition: all .25s;
  display: block;
}
.pillar-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,41,64,.1);
}
.pillar-card .pillar-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--cream), rgba(184,153,106,.18));
  border: 1px solid var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.pillar-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.25;
}
.pillar-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Responsive blog v2 ─── */
@media (max-width: 768px) {
  .blog-breadcrumb { display: none; }
  .breadcrumb { display: none !important; }
  nav.breadcrumb { display: none !important; }

  .blog-hero-v2 { padding: 48px 20px 56px; }
  .blog-hero-v2 .hero-sub { font-size: 15px; }
  .blog-hero-v2 .hero-stats {
    gap: 20px;
    padding: 20px 0;
    margin: 24px 0 28px;
    flex-wrap: wrap;
  }
  .blog-hero-v2 .hero-stat strong { font-size: 28px; }
  .blog-hero-v2 .hero-stat span { font-size: 10px; }
  .blog-hero-v2 .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-hero-primary, .btn-hero-secondary {
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .category-nav-inner { padding: 0 16px; gap: 0; }
  .cat-nav-item { font-size: 13px; padding: 14px 12px; }

  .blog-intro { margin: 32px auto 24px; padding: 0 20px; }
  .blog-intro p { font-size: 15px; line-height: 1.7; text-align: left; }

  .category-section { margin-bottom: 56px; padding: 0 20px; }
  .cat-header {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
  .cat-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 11px;
  }
  .cat-head-text h2 { font-size: 26px; line-height: 1.2; }
  .cat-head-text p { font-size: 14px; line-height: 1.55; }

  .subcat-heading {
    font-size: 12px;
    letter-spacing: 1.8px;
    margin: 28px 0 16px;
  }

  .cta-banner { margin-bottom: 56px; padding: 0 20px; }
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
  }
  .cta-title { font-size: 22px; }
  .cta-desc { font-size: 13.5px; }
  .cta-banner-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .faq-blog { margin-bottom: 56px; padding: 0 20px; }
  .faq-blog h2 { font-size: 26px; }
  .faq-blog .faq-intro { font-size: 14px; margin-bottom: 28px; }
  .faq-blog .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }
  .faq-blog .faq-item p {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .pillar-links { margin-bottom: 56px; padding: 0 20px; }
  .pillar-links h2 { font-size: 24px; }
  .pillar-links > p { font-size: 14px; margin-bottom: 28px; }
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pillar-card { padding: 22px 20px; }
  .pillar-card h3 { font-size: 18px; }
  .pillar-card p { font-size: 13px; }
}

/* ─── Mobile molto stretto (<=420px) ─── */
@media (max-width: 420px) {
  .blog-hero-v2 .hero-stats { gap: 12px; }
  .blog-hero-v2 .hero-stat strong { font-size: 24px; }
  .cta-banner-inner { padding: 24px 20px; }
  .cat-head-text h2 { font-size: 24px; }
  .cat-icon { width: 40px; height: 40px; font-size: 18px; }
}
