/* ============================================================
   SEO REWRITE CONTENT STYLES
   ============================================================
   Loaded only on single blog posts (single.php). Maps the master
   SEO prompt's component classes (sqp-key-takeaways, callout,
   toc-wrapper, hero-editorial, resources, etc.) to the marseille-
   premium brand aesthetic — cream surfaces, navy ink, amber
   accents, Cormorant Garamond italic display, Inter body.
   ============================================================ */

:root {
  --srw-cream:      #FAF7EB;
  --srw-cream-2:    #F0EBD9;
  --srw-navy:       #0F1729;
  --srw-navy-soft:  #1d2433;
  --srw-amber:      #F4B53F;
  --srw-amber-deep: #B8732A;
  --srw-terracotta: #C75A3D;
  --srw-ink:        #1d2433;
  --srw-ink-muted:  #5A5A55;
  --srw-line-cream: #E6E0CF;
  --srw-success:    #2D7A4F;
  --srw-warning:    #C75A3D;
  --srw-info:       #486E91;
  --srw-r-1:        4px;
  --srw-r-2:        6px;
  --srw-r-3:        10px;
  --srw-shadow-sm:  0 4px 12px -4px rgba(15, 23, 41, 0.10);
  --srw-shadow-md:  0 12px 32px -12px rgba(15, 23, 41, 0.16);
}

/* Scope everything under .m-prose so it only affects rewritten article bodies */
.m-prose {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--srw-ink);
  text-wrap: pretty;
}
.m-prose p { margin: 0 0 1.2em; }
.m-prose h2,
.m-prose h3,
.m-prose h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--srw-navy);
  letter-spacing: -0.01em;
  margin: 2em 0 0.6em;
  line-height: 1.15;
}
.m-prose h2 { font-size: clamp(28px, 3vw, 40px); }
.m-prose h3 { font-size: clamp(22px, 2.2vw, 28px); }
.m-prose h4 { font-size: 18px; font-weight: 600; font-family: 'Inter', sans-serif; }
.m-prose h2 em,
.m-prose h3 em { color: var(--srw-amber-deep); font-style: italic; }
.m-prose strong { color: var(--srw-navy); font-weight: 600; }
.m-prose a { color: var(--srw-amber-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.m-prose a:hover { color: var(--srw-navy); }
.m-prose ul,
.m-prose ol { margin: 0 0 1.4em; padding-left: 1.6em; }
.m-prose li { margin: 0.5em 0; line-height: 1.55; }
.m-prose blockquote {
  border-left: 3px solid var(--srw-amber);
  padding: 0.4em 0 0.4em 1.4em;
  margin: 1.5em 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15em;
  color: var(--srw-ink-muted);
}

/* ============================================================
   1. HERO EDITORIAL (the article opening)
   ============================================================ */
.m-prose .hero-editorial,
.hero-editorial {
  background: linear-gradient(135deg, var(--srw-cream) 0%, var(--srw-cream-2) 100%);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-3);
  padding: clamp(24px, 4vw, 56px);
  margin: 0 0 2em;
  position: relative;
  overflow: hidden;
}
.hero-editorial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--srw-amber-deep), var(--srw-amber));
}
.hero-editorial .eyebrow,
.hero-editorial > p:first-child {
  color: var(--srw-amber-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.hero-editorial h2,
.hero-editorial h2:first-child {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 0 0 0.4em;
  color: var(--srw-navy);
}
.hero-editorial h2 em { color: var(--srw-amber-deep); font-style: italic; }
.hero-editorial p.lead,
.hero-editorial > p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--srw-ink);
  margin: 0 0 1.2em;
  max-width: 65ch;
}
.hero-editorial p.lead a,
.hero-editorial p a {
  color: var(--srw-navy);
  font-weight: 500;
  text-decoration-color: var(--srw-amber);
  text-decoration-thickness: 2px;
}

/* ============================================================
   2. TL;DR KEY TAKEAWAYS BOX
   ============================================================ */
.sqp-key-takeaways {
  background: var(--srw-navy);
  color: #f5f4ed;
  border-radius: var(--srw-r-3);
  padding: clamp(20px, 2.5vw, 32px);
  margin: 1.5em 0 2em;
  position: relative;
  border-left: 4px solid var(--srw-amber);
}
.sqp-key-takeaways h4 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  font-size: 12px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--srw-amber);
  margin: 0 0 0.6em !important;
}
.sqp-key-takeaways p,
.sqp-key-takeaways > * {
  color: #f5f4ed;
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}
.sqp-key-takeaways strong { color: var(--srw-amber); }
.sqp-key-takeaways a { color: var(--srw-amber); }

/* ============================================================
   3. YMYL WARNING / DISCLAIMER BOX
   ============================================================ */
.sqp-warning-box {
  background: rgba(199, 90, 61, 0.06);
  border: 1px solid rgba(199, 90, 61, 0.25);
  border-left: 4px solid var(--srw-terracotta);
  border-radius: var(--srw-r-2);
  padding: 1em 1.4em;
  margin: 1.5em 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--srw-ink);
}
.sqp-warning-box strong { color: var(--srw-terracotta); }

/* ============================================================
   4. TABLE OF CONTENTS
   ============================================================ */
details.toc-wrapper {
  background: var(--srw-cream-2);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-2);
  padding: 1em 1.4em;
  margin: 0 0 2em;
}
.toc-wrapper > summary,
.toc-wrapper .toc-title {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--srw-amber-deep);
  list-style: none;
  position: relative;
  padding-right: 2em;
}
.toc-wrapper > summary::-webkit-details-marker { display: none; }
.toc-wrapper > summary::after {
  content: '▾';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--srw-amber-deep);
  transition: transform 200ms ease;
}
.toc-wrapper[open] > summary::after { transform: rotate(180deg); }
.toc-list,
.toc-wrapper nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 1em;
}
.toc-link,
.toc-wrapper a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--srw-ink);
  text-decoration: none;
  padding: 4px 0 4px 14px;
  border-left: 2px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}
.toc-link.h3,
.toc-link--h3 { padding-left: 32px; font-size: 13px; color: var(--srw-ink-muted); }
.toc-link:hover,
.toc-wrapper a:hover {
  border-left-color: var(--srw-amber);
  color: var(--srw-amber-deep);
}

/* ============================================================
   5. CALLOUT BOXES (info / warning / success)
   ============================================================ */
.callout,
.callout-box {
  background: var(--srw-cream-2);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-2);
  padding: 1.2em 1.4em;
  margin: 1.5em 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.callout-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--srw-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.callout-content { flex: 1; min-width: 0; }
.callout-content h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 0.3em;
  color: var(--srw-navy);
}
.callout-content p { margin: 0; font-size: 15px; line-height: 1.55; }

.callout.callout-success,
.callout-box.callout-success { border-left: 4px solid var(--srw-success); background: rgba(45, 122, 79, 0.05); }
.callout.callout-success .callout-icon { background: var(--srw-success); color: #fff; }

.callout.callout-info,
.callout-box.callout-info,
.callout-box.info { border-left: 4px solid var(--srw-info); background: rgba(72, 110, 145, 0.06); }
.callout.callout-info .callout-icon { background: var(--srw-info); color: #fff; }

.callout.callout-warning,
.callout-box.callout-warning { border-left: 4px solid var(--srw-warning); background: rgba(199, 90, 61, 0.06); }
.callout.callout-warning .callout-icon { background: var(--srw-warning); color: #fff; }

/* ============================================================
   6. HIGHLIGHT BOX (Featured snippet capsule)
   ============================================================ */
.highlight-box {
  background: linear-gradient(135deg, var(--srw-amber) 0%, var(--srw-amber-deep) 100%);
  color: var(--srw-navy);
  border-radius: var(--srw-r-3);
  padding: 1.4em 1.8em;
  margin: 1.5em 0;
}
.highlight-box h3 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700;
  font-size: 13px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.6em !important;
  color: var(--srw-navy);
}
.highlight-box p { margin: 0; font-size: 17px; line-height: 1.5; color: var(--srw-navy); }
.highlight-box strong { color: var(--srw-navy); }

/* ============================================================
   7. PROS / CONS COMPARISON
   ============================================================ */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2em;
  margin: 1.5em 0;
}
.pros-highlight-section,
.cons-highlight-section {
  border-radius: var(--srw-r-3);
  padding: 1.4em 1.6em;
}
.pros-highlight-section {
  background: rgba(45, 122, 79, 0.06);
  border: 1px solid rgba(45, 122, 79, 0.25);
  border-left: 4px solid var(--srw-success);
}
.cons-highlight-section {
  background: rgba(199, 90, 61, 0.06);
  border: 1px solid rgba(199, 90, 61, 0.25);
  border-left: 4px solid var(--srw-warning);
}
.pros-highlight-section h3,
.cons-highlight-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.8em;
}
.pros-highlight-section h3 { color: var(--srw-success); }
.cons-highlight-section h3 { color: var(--srw-warning); }
.pros-highlight-section ul,
.cons-highlight-section ul { padding-left: 1.2em; margin: 0; }
.pros-highlight-section li,
.cons-highlight-section li { margin: 0.5em 0; }

/* ============================================================
   8. FEATURE CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2em;
  margin: 1.5em 0;
}
.feature-card {
  background: var(--srw-cream);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-3);
  padding: 1.6em;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--srw-shadow-md);
}
.feature-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--srw-amber) 0%, var(--srw-amber-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8em;
  color: var(--srw-navy);
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  margin: 0 0 0.4em;
  color: var(--srw-navy);
}
.feature-card p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--srw-ink-muted); }

/* ============================================================
   9. DATA TABLES
   ============================================================ */
.table-responsive {
  overflow-x: auto;
  margin: 1.5em 0;
  border-radius: var(--srw-r-2);
  border: 1px solid var(--srw-line-cream);
}
.data-table,
.m-prose table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: var(--srw-cream);
}
.data-table caption,
.m-prose table caption {
  caption-side: top;
  text-align: left;
  padding: 0.8em 1em;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--srw-amber-deep);
  background: var(--srw-cream-2);
}
.data-table thead,
.m-prose table thead { background: var(--srw-navy); }
.data-table thead th,
.m-prose table thead th {
  color: var(--srw-amber);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
.data-table tbody td,
.m-prose table tbody td {
  padding: 12px 16px;
  border-top: 1px solid var(--srw-line-cream);
  vertical-align: top;
  line-height: 1.45;
}
.data-table tbody tr:nth-child(even) td,
.m-prose table tbody tr:nth-child(even) td {
  background: rgba(15, 23, 41, 0.02);
}

/* ============================================================
   10. STYLED LISTS
   ============================================================ */
.styled-list,
.numbered-list {
  margin: 1.4em 0;
  padding-left: 0;
  list-style: none;
}
.styled-list li,
.numbered-list li {
  position: relative;
  padding: 0.4em 0 0.4em 2em;
  border-bottom: 1px solid var(--srw-line-cream);
}
.styled-list li:last-child,
.numbered-list li:last-child { border-bottom: none; }
.styled-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--srw-amber);
  border: 2px solid var(--srw-amber-deep);
}
.numbered-list { counter-reset: numlist; }
.numbered-list li {
  counter-increment: numlist;
  padding-left: 2.4em;
}
.numbered-list li::before {
  content: counter(numlist);
  position: absolute;
  left: 0; top: 0.4em;
  width: 1.6em; height: 1.6em;
  border-radius: 50%;
  background: var(--srw-navy);
  color: var(--srw-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
}

/* Definition lists */
.definition-list dt {
  font-weight: 600;
  color: var(--srw-navy);
  margin-top: 1em;
}
.definition-list dd {
  margin: 0.3em 0 1em 0;
  padding-left: 1em;
  border-left: 2px solid var(--srw-amber);
  color: var(--srw-ink-muted);
}

/* ============================================================
   11. CONTENT IMAGES (figure + figcaption)
   ============================================================ */
.content-image,
.m-prose figure {
  margin: 2em 0;
  background: var(--srw-cream-2);
  border-radius: var(--srw-r-3);
  overflow: hidden;
  box-shadow: var(--srw-shadow-sm);
}
.content-image img,
.responsive-image,
.m-prose figure img {
  width: 100%;
  height: auto;
  display: block;
}
.content-image figcaption,
.m-prose figure figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--srw-ink-muted);
  text-align: center;
  padding: 0.8em 1.2em;
  background: var(--srw-cream-2);
  border-top: 1px solid var(--srw-line-cream);
  font-style: italic;
}

/* ============================================================
   12. FAQ (extends theme's faq-item)
   ============================================================ */
.m-prose details.faq-item,
section.faq-section details.faq-item {
  background: var(--srw-cream);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-2);
  padding: 0;
  margin: 0 0 12px;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.m-prose details.faq-item[open],
section.faq-section details.faq-item[open] {
  border-color: var(--srw-amber);
}
.m-prose details.faq-item summary,
section.faq-section details.faq-item summary,
.faq-item__summary,
.faq-question {
  cursor: pointer;
  list-style: none;
  padding: 1em 1.4em;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  color: var(--srw-navy);
  position: relative;
  padding-right: 2.5em;
  transition: background 180ms ease;
}
.m-prose details.faq-item summary::-webkit-details-marker { display: none; }
.m-prose details.faq-item summary::after,
section.faq-section details.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1em; top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--srw-amber-deep);
  transition: transform 200ms ease;
}
.m-prose details.faq-item[open] summary::after,
section.faq-section details.faq-item[open] summary::after { content: '−'; }
.m-prose details.faq-item:hover summary,
section.faq-section details.faq-item:hover summary { background: var(--srw-cream-2); }
.faq-item__panel,
.faq-answer {
  padding: 0 1.4em 1.2em;
  color: var(--srw-ink);
  font-size: 16px;
  line-height: 1.6;
}
.faq-item__panel p:first-child,
.faq-answer p:first-child { margin-top: 0; }

/* ============================================================
   13. CTA BUTTONS (master prompt's `cta-button` class)
   ============================================================ */
.cta-button,
a.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--srw-r-2);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  border: none;
  cursor: pointer;
}
.cta-button.primary,
a.cta-button.primary {
  background: var(--srw-amber);
  color: var(--srw-navy) !important;
  box-shadow: 0 4px 14px -4px rgba(244, 181, 63, 0.55);
}
.cta-button.primary:hover {
  transform: translateY(-1px);
  background: var(--srw-amber-deep);
  color: #fff !important;
  box-shadow: 0 8px 20px -4px rgba(184, 115, 42, 0.5);
}
.cta-button.secondary,
a.cta-button.secondary {
  background: transparent;
  color: var(--srw-navy) !important;
  border: 2px solid var(--srw-navy);
}
.cta-button.secondary:hover {
  background: var(--srw-navy);
  color: var(--srw-amber) !important;
}
.cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.4em 0;
}

/* ============================================================
   14. MID-CTA + URGENCE-BAND (rewrite injection blocks)
   ============================================================ */
.m-prose aside.mid-cta,
.m-prose .mid-cta {
  background: linear-gradient(135deg, var(--srw-cream) 0%, var(--srw-cream-2) 100%);
  border: 1px solid var(--srw-line-cream);
  border-left: 4px solid var(--srw-amber);
  border-radius: var(--srw-r-2);
  padding: 1.4em 1.6em;
  margin: 2em 0;
  display: flex;
  align-items: center;
  gap: 1.2em;
  flex-wrap: wrap;
}
.m-prose .mid-cta p { margin: 0; flex: 1; min-width: 220px; }
.m-prose .mid-cta a {
  background: var(--srw-navy);
  color: var(--srw-amber) !important;
  padding: 12px 24px;
  border-radius: var(--srw-r-2);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease;
}
.m-prose .mid-cta a:hover { background: var(--srw-amber-deep); color: #fff !important; }

.m-prose aside.urgence-band,
.m-prose .urgence-band {
  background: linear-gradient(135deg, var(--srw-terracotta) 0%, #a04429 100%);
  color: #fff;
  border-radius: var(--srw-r-3);
  padding: 1.6em 1.8em;
  margin: 2em 0;
  text-align: center;
}
.m-prose .urgence-band h3,
.m-prose .urgence-band p { color: #fff; margin: 0 0 0.6em; }
.m-prose .urgence-band h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-style: italic;
}
.m-prose .urgence-band a {
  display: inline-block;
  margin-top: 0.6em;
  background: var(--srw-amber);
  color: var(--srw-navy) !important;
  padding: 14px 32px;
  border-radius: var(--srw-r-2);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: background 200ms ease;
}
.m-prose .urgence-band a:hover { background: #fff; }

/* ============================================================
   15. RESOURCES / "POUR ALLER PLUS LOIN"
   ============================================================ */
.m-prose section.resources,
.m-prose aside.resources,
.m-prose .resources {
  background: var(--srw-cream-2);
  border-top: 4px solid var(--srw-amber);
  border-radius: var(--srw-r-3);
  padding: 1.6em 1.8em;
  margin: 2em 0;
}
.m-prose .resources h2,
.m-prose .resources h3 {
  font-size: 22px;
  margin-top: 0;
}
.m-prose .resources ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}
.m-prose .resources li {
  background: var(--srw-cream);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-2);
  padding: 12px 16px;
  border-bottom: 1px solid var(--srw-line-cream);
}
.m-prose .resources li::before { content: '→'; color: var(--srw-amber-deep); margin-right: 8px; font-weight: 700; }
.m-prose .resources a { font-weight: 500; }

/* ============================================================
   16. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .m-prose { font-size: 16px; }
  .hero-editorial { padding: 24px; }
  .hero-editorial h2 { font-size: 28px; }
  .sqp-key-takeaways { padding: 20px; }
  .stats-section,
  .cards-grid { grid-template-columns: 1fr; }
  .m-prose .mid-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .m-prose .mid-cta a { width: 100%; }
}


/* ============================================================
   SELF-HEAL @ 2026-05-03 18:38:30 (post 10674)
   classes: .resources-list
   ============================================================ */
.m-prose .resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-prose .resources-list li {
  background-color: var(--srw-cream);
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.m-prose .resources-list li:hover {
  background-color: var(--srw-cream-2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.m-prose .resources-list a {
  display: block;
  color: var(--srw-navy);
  font-family: Inter, sans-serif;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}

.m-prose .resources-list a:hover {
  color: var(--srw-amber);
}

.m-prose .resources-list .resource-category {
  display: inline-block;
  background-color: var(--srw-line-cream);
  color: var(--srw-ink-muted);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.m-prose .resources-list .resource-description {
  color: var(--srw-ink-muted);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================================
   PREMIUM POLISH — drop caps, dividers, image-text cards,
   stat cards, step cards, quote cards, eyebrow underlines
   ============================================================ */

/* --- Drop cap on first paragraph after hero --- */
.m-prose .has-drop-cap::first-letter,
.m-prose p.drop-cap::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  float: left;
  font-size: 5.4em;
  line-height: 0.85;
  margin: 0.06em 0.12em 0 -0.04em;
  color: var(--srw-amber-deep);
  font-weight: 500;
}

/* --- Eyebrow with mini-rule --- */
.m-prose .eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--srw-amber-deep);
  margin: 0 0 0.6em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.m-prose .eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--srw-amber-deep);
}

/* --- Section divider with amber dot --- */
.m-prose .section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 56px auto;
  max-width: 220px;
  color: var(--srw-line-cream);
}
.m-prose .section-divider::before,
.m-prose .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--srw-line-cream);
}
.m-prose .section-divider .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--srw-amber);
  box-shadow: 0 0 0 4px rgba(244, 181, 63, 0.18);
}

/* --- Image+text card (alternating left/right) --- */
.m-prose .card-image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin: 40px 0;
  padding: clamp(20px, 3vw, 32px);
  background: var(--srw-cream);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-3);
  transition: box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.m-prose .card-image-text:hover {
  box-shadow: var(--srw-shadow-md);
}
.m-prose .card-image-text.is-reversed {
  direction: rtl;
}
.m-prose .card-image-text.is-reversed > * {
  direction: ltr;
}
.m-prose .card-image-text__media {
  position: relative;
  border-radius: var(--srw-r-2);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.m-prose .card-image-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}
.m-prose .card-image-text:hover .card-image-text__media img {
  transform: scale(1.03);
}
.m-prose .card-image-text__body h3,
.m-prose .card-image-text__body h4 {
  margin-top: 0;
  margin-bottom: 0.4em;
}
.m-prose .card-image-text__body p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .m-prose .card-image-text {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .m-prose .card-image-text.is-reversed { direction: ltr; }
}

/* --- Stat card (oversize numeral) --- */
.m-prose .card-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 36px 0;
}
.m-prose .card-stat {
  background: linear-gradient(180deg, var(--srw-cream) 0%, var(--srw-cream-2) 100%);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-3);
  padding: 28px 24px 24px;
  text-align: left;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 240ms ease;
}
.m-prose .card-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--srw-shadow-md);
}
.m-prose .card-stat__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 500;
  line-height: 0.9;
  color: var(--srw-amber-deep);
  letter-spacing: -0.02em;
  display: block;
  margin: 0 0 12px;
}
.m-prose .card-stat__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--srw-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 4px;
}
.m-prose .card-stat__detail {
  font-size: 14px;
  color: var(--srw-ink-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Step card (numbered protocol) --- */
.m-prose .card-step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}
.m-prose .card-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-3);
  transition: border-color 240ms ease;
}
.m-prose .card-step:hover { border-color: var(--srw-amber); }
.m-prose .card-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--srw-navy);
  color: var(--srw-cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-prose .card-step__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--srw-navy);
  margin: 0 0 6px;
  line-height: 1.2;
}
.m-prose .card-step__body {
  margin: 0;
  color: var(--srw-ink);
  line-height: 1.6;
}

/* --- Quote card (oversized opening guillemet) --- */
.m-prose .card-quote {
  position: relative;
  background: var(--srw-cream);
  border-left: 4px solid var(--srw-amber);
  padding: 32px 28px 28px 56px;
  margin: 36px 0;
  border-radius: 0 var(--srw-r-3) var(--srw-r-3) 0;
}
.m-prose .card-quote::before {
  content: '«';
  position: absolute;
  left: 16px;
  top: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 78px;
  line-height: 1;
  color: var(--srw-amber);
  font-weight: 500;
}
.m-prose .card-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--srw-navy);
  margin: 0 0 12px;
}
.m-prose .card-quote cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--srw-ink-muted);
}
.m-prose .card-quote cite::before { content: '— '; }

/* --- Pull quote (full-width statement) --- */
.m-prose .pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.25;
  text-align: center;
  color: var(--srw-navy);
  max-width: 760px;
  margin: 56px auto;
  padding: 0 24px;
  position: relative;
}
.m-prose .pull-quote::before,
.m-prose .pull-quote::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background: var(--srw-amber);
  margin: 24px auto;
}

/* --- Focus ring polish across CTAs --- */
.m-prose a:focus-visible,
.m-prose button:focus-visible {
  outline: 2px solid var(--srw-amber-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   NEW CTA DISPATCHER — cta-card, cta-band-mid, cta-band-urgent,
   cta-inline, button variants. Each block has unique-anchor
   text dispatched per-position from agent_v2.py inject_ctas.
   ============================================================ */

/* --- cta-card (after_problem / after_methode / after_pricing) — centered stack --- */
.m-prose aside.cta-card,
.m-prose .cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--srw-cream) 0%, #fff 100%);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-3);
  padding: 28px 32px;
  margin: 36px auto;
  max-width: 560px;
  box-shadow: var(--srw-shadow-sm);
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 240ms ease;
}
.m-prose .cta-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--srw-shadow-md);
}
.m-prose .cta-card.cta-card--amber-left {
  border-left: 4px solid var(--srw-amber);
}
.m-prose .cta-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--srw-amber);
  color: var(--srw-navy);
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
  margin: 0 auto 4px;
  box-shadow: 0 6px 14px -4px rgba(244, 181, 63, 0.45);
}
.m-prose .cta-card__link {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--srw-navy) !important;
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  border-bottom: 2px solid var(--srw-amber);
  padding-bottom: 4px;
  transition: border-color 240ms ease, color 240ms ease, transform 240ms ease;
  text-align: center;
}
.m-prose .cta-card__link:hover {
  color: var(--srw-amber-deep) !important;
  border-bottom-color: var(--srw-amber-deep);
  transform: translateY(-1px);
}
.m-prose .cta-card__hint {
  display: block;
  font-size: 14px;
  color: var(--srw-ink-muted);
  line-height: 1.5;
  text-align: center;
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .m-prose .cta-card {
    padding: 22px 20px;
  }
  .m-prose .cta-card__icon {
    width: 46px; height: 46px; font-size: 20px;
  }
  .m-prose .cta-card__link { font-size: 22px; }
}

/* --- Hero editorial CTA — single button, centered --- */
.m-prose .hero-editorial {
  text-align: center;
}
.m-prose .hero-editorial > p,
.m-prose .hero-editorial > h1,
.m-prose .hero-editorial > h2 {
  text-align: center;
}
.m-prose .hero-editorial .hero-editorial__cta,
.m-prose .hero-editorial a.btn,
.m-prose .hero-editorial a.cta-button {
  display: inline-block;
  margin: 24px auto 0;
}
.m-prose .hero-editorial .btn-primary,
.m-prose .hero-editorial a.cta-button.primary {
  background: var(--srw-amber);
  color: var(--srw-navy) !important;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 18px -6px rgba(244, 181, 63, 0.5);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.m-prose .hero-editorial .btn-primary:hover,
.m-prose .hero-editorial a.cta-button.primary:hover {
  background: var(--srw-amber-deep);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(184, 115, 42, 0.55);
}

/* --- Legacy mid-cta / urgence-band → also centered --- */
.m-prose .mid-cta,
.m-prose .urgence-band {
  text-align: center;
}
.m-prose .mid-cta p,
.m-prose .urgence-band p {
  text-align: center;
}

/* --- cta-band-mid (full-width cream band, mid-article) --- */
.m-prose aside.cta-band-mid,
.m-prose .cta-band-mid {
  background: linear-gradient(135deg, var(--srw-cream) 0%, var(--srw-cream-2) 100%);
  border: 1px solid var(--srw-line-cream);
  border-radius: var(--srw-r-3);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.m-prose .cta-band-mid::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--srw-amber);
}
.m-prose .cta-band-mid__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.m-prose .cta-band-mid__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--srw-amber-deep);
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.m-prose .cta-band-mid__eyebrow::before,
.m-prose .cta-band-mid__eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--srw-amber-deep);
}
.m-prose .cta-band-mid__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  color: var(--srw-navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.m-prose .cta-band-mid__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--srw-ink);
  margin: 0 auto 24px;
  max-width: 600px;
}
.m-prose .cta-band-mid__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
}

/* --- cta-band-urgent (dark navy/terracotta, end-of-article) --- */
.m-prose aside.cta-band-urgent,
.m-prose .cta-band-urgent {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(244, 181, 63, 0.20) 0%, transparent 60%),
    linear-gradient(135deg, #6E1F0E 0%, #C75A3D 60%, #B8732A 100%);
  color: #FBE9CF;
  border-radius: var(--srw-r-3);
  padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 56px);
  margin: 56px 0 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(110, 31, 14, 0.45);
}
.m-prose .cta-band-urgent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><circle cx='100' cy='100' r='1' fill='%23FAF7EB' opacity='0.06'/></svg>");
  background-size: 14px 14px;
  pointer-events: none;
}
.m-prose .cta-band-urgent__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.m-prose .cta-band-urgent__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--srw-amber);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.m-prose .cta-band-urgent__eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--srw-amber);
}
.m-prose .cta-band-urgent__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.m-prose .cta-band-urgent__lead {
  font-size: 16px;
  line-height: 1.6;
  color: #FBE9CF;
  margin: 0 auto 28px;
  max-width: 560px;
  opacity: 0.92;
}
.m-prose .cta-band-urgent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
}
.m-prose .cta-band-urgent__actions br { display: none; }

/* --- cta-inline (subtle paragraph after FAQ) --- */
.m-prose .cta-inline {
  font-size: 15px;
  color: var(--srw-ink-muted);
  margin: 24px 0 0;
  padding: 16px 20px;
  background: rgba(244, 181, 63, 0.08);
  border-left: 2px solid var(--srw-amber);
  border-radius: 0 var(--srw-r-2) var(--srw-r-2) 0;
}
.m-prose .cta-inline__link {
  font-weight: 600;
  color: var(--srw-amber-deep) !important;
}

/* --- cta-button variants used by mid + urgent bands --- */
.m-prose a.cta-button {
  display: inline-block;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 200ms ease, background 200ms ease;
}
.m-prose a.cta-button.primary {
  background: var(--srw-amber);
  color: var(--srw-navy) !important;
  box-shadow: 0 6px 14px -4px rgba(244, 181, 63, 0.45);
}
.m-prose a.cta-button.primary:hover {
  background: var(--srw-amber-deep);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -6px rgba(184, 115, 42, 0.55);
}
.m-prose a.cta-button.secondary {
  background: transparent;
  color: var(--srw-navy) !important;
  border: 1.5px solid var(--srw-navy);
}
.m-prose a.cta-button.secondary:hover {
  background: var(--srw-navy);
  color: #fff !important;
}

/* On the dark urgent band — invert the buttons to light */
.m-prose .cta-band-urgent a.cta-button,
.m-prose a.cta-button--ghost-light {
  background: #fff;
  color: var(--srw-navy) !important;
  border: 1.5px solid #fff;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.25);
}
.m-prose .cta-band-urgent a.cta-button:hover,
.m-prose a.cta-button--ghost-light:hover {
  background: var(--srw-amber);
  color: var(--srw-navy) !important;
  border-color: var(--srw-amber);
  transform: translateY(-1px);
}
.m-prose .cta-band-urgent a.cta-button--outline,
.m-prose a.cta-button--ghost-light.cta-button--outline {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.m-prose .cta-band-urgent a.cta-button--outline:hover,
.m-prose a.cta-button--ghost-light.cta-button--outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #fff;
  color: #fff !important;
}

@media (max-width: 560px) {
  .m-prose .cta-band-urgent__actions,
  .m-prose .cta-band-mid__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .m-prose a.cta-button { text-align: center; }
}
