/* =============================================================================
   Veedrobe blog — server-rendered pages under veedrobe.com/blog
   Standalone sheet: no Tailwind, no icon font, no JS. The editorial component
   classes (.ll-*) are produced by the blog service and must keep their names;
   only their styling lives here, mapped onto the landing page's palette
   (see css/veedrobe.css — cream / terracotta / charcoal).
   ========================================================================== */

:root {
  /* Brand ramp — built around --terracotta (#C65D3B) / --terracotta-deep */
  --brand-50: #fbf2ed;
  --brand-100: #f3d9cd;
  --brand-200: #e9c3b1;
  --brand-300: #dba48b;
  --brand-400: #d07f5f;
  --brand-500: #c65d3b;
  --brand-600: #b14f30;
  --brand-700: #a8472b;
  --brand-800: #8a3922;

  /* Surface ramp — warm ivory → charcoal, matching the landing neutrals */
  --surface-50: #fffdf8;
  --surface-100: #f7f2ea;
  --surface-200: #e8dfd2;
  --surface-300: #dcd3c6;
  --surface-400: #9a8d7b;
  --surface-500: #847968;
  --surface-600: #5e554b;
  --surface-700: #4a4239;
  --surface-800: #332e28;
  --surface-900: #25211c;

  --blog-max: 1120px;
  --blog-radius: 14px;
  --blog-shadow: 0 14px 36px -22px rgba(37, 33, 28, 0.3);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

body.blog-page {
  margin: 0;
  background: var(--surface-50);
  color: var(--surface-800);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.blog-page img { max-width: 100%; height: auto; }
/* Single-class specificity on purpose: component rules below must be able to
   override this without !important. `body.blog-page a` would outrank them. */
.blog-page a { color: var(--brand-700); }

/* === Header / footer chrome ================================================ */
.blog-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-200);
}
.blog-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  max-width: var(--blog-max); margin: 0 auto; padding: 0 1.5rem; height: 64px;
}
.blog-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--surface-900); }
.blog-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-900); color: var(--surface-50);
}
.blog-brand-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.blog-nav-links { display: none; gap: 1.75rem; font-size: 0.9375rem; }
.blog-nav-links a { color: var(--surface-600); text-decoration: none; }
.blog-nav-links a:hover { color: var(--surface-900); }
.blog-nav-cta {
  display: inline-flex; align-items: center; padding: 9px 20px; border-radius: 999px;
  background: var(--surface-900); color: var(--surface-50);
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.blog-nav-cta:hover { background: var(--brand-700); transform: translateY(-1px); }

.blog-footer { margin-top: 4rem; border-top: 1px solid var(--surface-200); background: var(--surface-100); }
.blog-footer-inner {
  display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between;
  max-width: var(--blog-max); margin: 0 auto; padding: 3rem 1.5rem 1.5rem;
}
.blog-footer-brand { max-width: 360px; }
.blog-footer-brand p { margin: 1rem 0 0; font-size: 0.9375rem; color: var(--surface-600); }
.blog-footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: flex-start; font-size: 0.9375rem; }
.blog-footer-links a { color: var(--surface-600); text-decoration: none; }
.blog-footer-links a:hover { color: var(--surface-900); }
.blog-footer-copy {
  max-width: var(--blog-max); margin: 0 auto; padding: 1.25rem 1.5rem 2.5rem;
  border-top: 1px solid var(--surface-200); font-size: 0.8125rem; color: var(--surface-400);
}

/* === Archive =============================================================== */
.blog-breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8125rem; color: var(--surface-400); }
.blog-breadcrumb a { color: var(--surface-500); text-decoration: none; }
.blog-breadcrumb a:hover { color: var(--brand-700); }

.blog-hero { max-width: var(--blog-max); margin: 0 auto; padding: 3.5rem 1.5rem 2rem; }
.blog-hero h1 {
  margin: 1rem 0 0.75rem; font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--surface-900);
}
.blog-hero p { margin: 0; max-width: 62ch; font-size: 1.0625rem; color: var(--surface-600); }

.blog-grid {
  display: grid; gap: 1.75rem; grid-template-columns: 1fr;
  max-width: var(--blog-max); margin: 0 auto; padding: 1rem 1.5rem 2rem;
}
.blog-card {
  border: 1px solid var(--surface-200); border-radius: var(--blog-radius);
  background: #fff; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--blog-shadow); }
.blog-card-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.blog-card-media { aspect-ratio: 16 / 9; background: var(--surface-100); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 1.25rem 1.375rem 1.5rem; }
.blog-card-title {
  margin: 0 0 0.5rem; font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 600; line-height: 1.3; letter-spacing: -0.015em; color: var(--surface-900);
}
.blog-card-excerpt { margin: 0 0 0.875rem; font-size: 0.9375rem; line-height: 1.65; color: var(--surface-600); }
.blog-card-meta { margin: 0; font-size: 0.8125rem; color: var(--surface-400); display: flex; gap: 0.5rem; }
.blog-dot { color: var(--surface-300); }
.blog-empty {
  max-width: var(--blog-max); margin: 0 auto; padding: 2rem 1.5rem 4rem; color: var(--surface-500);
}

.blog-pagination { max-width: var(--blog-max); margin: 0 auto; padding: 0 1.5rem 3rem; }
.blog-more {
  display: inline-flex; align-items: center; padding: 11px 24px; border-radius: 999px;
  border: 1.5px solid var(--brand-200); color: var(--brand-700);
  font-size: 0.9375rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.blog-more:hover { background: var(--brand-50); border-color: var(--brand-400); }

/* === Article =============================================================== */
.blog-post { max-width: 920px; margin: 0 auto; padding: 2.5rem 1.5rem 0; }
.blog-post-header { margin: 1.25rem 0 1.75rem; }
.blog-post-header h1 {
  margin: 0 0 0.75rem; font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.75rem); font-weight: 600; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--surface-900);
}
.blog-post-meta { margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.875rem; color: var(--surface-500); }
.blog-post-cover { margin: 0 0 2rem; }
.blog-post-cover img { width: 100%; border-radius: var(--blog-radius); display: block; }

.blog-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 2.5rem 0 0; padding: 0; }
.blog-tags li {
  padding: 5px 12px; border-radius: 999px; background: var(--brand-50);
  border: 1px solid var(--brand-100); color: var(--brand-700); font-size: 0.8125rem; font-weight: 600;
}

.blog-app-cta {
  max-width: 920px; margin: 3rem auto 0; padding: 2.5rem 1.75rem; text-align: center;
  border: 1.5px solid var(--brand-200); border-radius: 18px;
  background: linear-gradient(180deg, var(--brand-50) 0%, #fff 100%);
}
.blog-app-cta h2 {
  margin: 0 0 0.625rem; font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 600; letter-spacing: -0.02em; color: var(--surface-900);
}
.blog-app-cta p { margin: 0 0 1.5rem; color: var(--surface-600); font-size: 0.9375rem; }

.blog-related { max-width: var(--blog-max); margin: 3.5rem auto 0; padding: 0 1.5rem; }
.blog-related > h2 {
  margin: 0; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  letter-spacing: -0.02em; color: var(--surface-900);
}
.blog-related .blog-grid { padding-left: 0; padding-right: 0; }

/* =============================================================================
   Editorial body — class names are emitted by the blog service, do not rename.
   `bodyHtml` arrives sanitized: no <style>, no inline style="", so every visual
   decision below has to be class-based.
   ========================================================================== */
.post-body { max-width: 920px; margin: 0 auto; padding: 2.25rem 0 2rem; }
.blog-body { color: var(--surface-800); font-size: 1.125rem; line-height: 1.78; }
.blog-body > *:first-child { margin-top: 0; }
.blog-body > * + * { margin-top: 1.35rem; }
.blog-body > p:first-of-type { font-size: 1.25rem; line-height: 1.7; color: var(--surface-700); }

.blog-body h2 {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; line-height: 1.25;
  letter-spacing: -0.02em; color: var(--surface-900); margin-top: 3rem;
}
.blog-body h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.3;
  letter-spacing: -0.01em; color: var(--surface-900); margin-top: 2.25rem;
}
.blog-body h4 { font-size: 1.15rem; font-weight: 700; color: var(--surface-800); margin-top: 1.75rem; }

.blog-body a {
  color: var(--brand-700); font-weight: 500; text-decoration: underline;
  text-decoration-thickness: 1.5px; text-underline-offset: 3px;
  text-decoration-color: var(--brand-200); transition: text-decoration-color 0.2s;
}
.blog-body a:hover { text-decoration-color: var(--brand-600); }
.blog-body strong { color: var(--surface-900); font-weight: 700; }
.blog-body sup { font-size: 0.7em; color: var(--brand-600); font-weight: 700; margin-left: 1px; }

.blog-body ul, .blog-body ol { padding-left: 1.5rem; }
.blog-body ul { list-style: disc; }
.blog-body ol { list-style: decimal; }
.blog-body li { margin-top: 0.5rem; padding-left: 0.25rem; }
.blog-body li::marker { color: var(--brand-500); }

.blog-body figure { margin: 2.5rem 0; }
.blog-body figure img { width: 100%; height: auto; border-radius: var(--blog-radius); }
.blog-body figcaption {
  font-size: 13.5px; color: var(--surface-500); text-align: center;
  margin-top: 0.75rem; font-style: italic;
}
.blog-body img { border-radius: 10px; }
.blog-body hr {
  border: none; height: 1px; margin: 3rem 0;
  background: linear-gradient(to right, transparent, var(--surface-300), transparent);
}

.blog-body blockquote {
  border-left: 4px solid var(--brand-500); padding: 0.5rem 0 0.5rem 1.5rem; margin: 2rem 0;
  color: var(--surface-700); font-style: italic; font-size: 1.15rem; line-height: 1.7;
  background: linear-gradient(to right, var(--brand-50), transparent 30%);
}
.blog-body code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 0.88em;
  padding: 2px 7px; border-radius: 5px; background: var(--brand-50);
  color: var(--brand-800); border: 1px solid var(--brand-100);
}
.blog-body pre {
  background: #221e1a; color: #f0e8de; padding: 1.25rem 1.5rem; margin: 1.75rem 0;
  border-radius: var(--blog-radius); overflow-x: auto; font-size: 0.92em; line-height: 1.65;
}
.blog-body pre code { background: transparent; padding: 0; color: inherit; border: 0; }

.blog-body .ll-reading-time {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  margin: 0 0 1.5rem; background: var(--brand-50); color: var(--brand-700);
  font-size: 0.875rem; font-weight: 600; border: 1px solid var(--brand-100);
}

.blog-body .ll-content-nav {
  margin: 2.5rem 0; padding: 1.75rem 2rem; border: 1px solid var(--surface-200);
  border-radius: var(--blog-radius); background: var(--surface-100);
}
.blog-body .ll-content-nav > h2 {
  margin: 0 0 1.25rem !important; padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--surface-200); font-size: 1.05rem !important;
  font-weight: 700; color: var(--surface-900); letter-spacing: -0.01em;
}
.blog-body .ll-content-nav ul { list-style: none; padding: 0; margin: 0; }
.blog-body .ll-content-nav li { margin: 0.5rem 0; padding: 0; }
.blog-body .ll-content-nav li::marker { content: ''; }
.blog-body .ll-content-nav li > ul { padding-left: 1.25rem; margin-top: 0.4rem; }
.blog-body .ll-toc-link {
  display: block; padding: 4px 0; font-size: 0.9375rem; line-height: 1.5; color: var(--surface-700);
  text-decoration: underline; text-decoration-color: var(--brand-300); text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.blog-body .ll-toc-link:hover { color: var(--brand-700); text-decoration-color: var(--brand-600); }
.blog-body .ll-toc-sub { font-size: 0.875rem; color: var(--surface-600); }

/* The blog service's sanitizer drops <nav>, so the table of contents can arrive
   as a bare <h2> + <ul> with the wrapper (and its .ll-content-nav class) gone.
   The links keep .ll-toc-link, so rebuild the panel from the list itself. */
.blog-body ul:has(> li > .ll-toc-link) {
  list-style: none; margin: 2.5rem 0; padding: 1.5rem 2rem;
  border: 1px solid var(--surface-200); border-radius: var(--blog-radius);
  background: var(--surface-100);
}
.blog-body ul:has(> li > .ll-toc-link) li { margin: 0.5rem 0; padding: 0; }
.blog-body ul:has(> li > .ll-toc-link) li::marker { content: ''; }
.blog-body ul:has(> li > .ll-toc-link) ul { list-style: none; padding-left: 1.25rem; margin: 0.4rem 0 0; border: 0; background: none; }

.blog-body .ll-brand-callout {
  margin: 2.25rem 0; padding: 1.75rem 2rem; border-left: 4px solid var(--brand-500);
  border-radius: 0 var(--blog-radius) var(--blog-radius) 0;
  background: linear-gradient(135deg, var(--brand-50) 0%, rgba(251, 242, 237, 0.4) 100%);
}
.blog-body .ll-brand-callout > p:first-child {
  display: flex; align-items: center; margin: 0 0 0.875rem;
  font-weight: 700; font-size: 1.05rem; color: var(--surface-900);
}
.blog-body .ll-brand-callout > p:first-child > span:first-child {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--brand-600); color: #fff; font-weight: 700; font-size: 0.875rem; margin-right: 12px;
}
.blog-body .ll-brand-callout > p:nth-child(2) {
  margin: 0 0 1.25rem; font-size: 1rem; line-height: 1.7; color: var(--surface-700);
}
.blog-body .ll-brand-callout > p:last-child { margin: 1rem 0 0; }
.blog-body .ll-brand-callout > p:last-child > a {
  display: inline-block; padding: 9px 22px; background: var(--brand-600); color: #fff;
  border-radius: 8px; font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.blog-body .ll-brand-callout > p:last-child > a:hover { background: var(--brand-700); transform: translateY(-1px); }

.blog-body .comparison-table,
.blog-body table.responsive-table,
.blog-body table.content-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.95rem;
  border: 1px solid var(--brand-100); border-radius: 12px; overflow: hidden;
}
.blog-body .comparison-table thead tr,
.blog-body table.responsive-table thead tr,
.blog-body table.content-table thead tr {
  background: var(--brand-50); border-bottom: 2px solid var(--brand-200);
}
.blog-body .comparison-table th,
.blog-body table.responsive-table th,
.blog-body table.content-table th {
  padding: 0.875rem 1rem; text-align: left; vertical-align: top;
  font-weight: 700; color: var(--surface-900); font-size: 0.875rem;
}
.blog-body .comparison-table td,
.blog-body table.responsive-table td,
.blog-body table.content-table td {
  padding: 0.85rem 1rem; text-align: left; vertical-align: top; line-height: 1.6;
  border-bottom: 1px solid var(--surface-100); background: #fff;
}
.blog-body .comparison-table tr:last-child td { border-bottom: none; }

.blog-body .ll-eat-signals {
  counter-reset: eat-counter; margin: 3rem 0; padding: 2.25rem 2.5rem 2rem;
  border: 1px solid var(--surface-200); border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, var(--surface-100) 100%);
}
.blog-body .ll-eat-expertise,
.blog-body .ll-eat-authority,
.blog-body .ll-eat-trust { counter-increment: eat-counter; }
.blog-body .ll-eat-expertise,
.blog-body .ll-eat-authority {
  margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--surface-200);
}
.blog-body .ll-eat-signals h2 {
  position: relative; padding-left: 2.5rem; margin: 0 0 0.875rem !important;
  font-size: 1.125rem !important; font-weight: 700; color: var(--surface-900);
  letter-spacing: -0.015em; line-height: 1.4;
}
.blog-body .ll-eat-signals h2::before {
  content: counter(eat-counter, decimal-leading-zero); position: absolute; left: 0; top: 0.05em;
  font-size: 0.75rem; font-weight: 800; color: var(--brand-600); letter-spacing: 0.08em;
}
.blog-body .ll-eat-signals .ll-eat-expertise > div,
.blog-body .ll-eat-signals .ll-eat-authority > div,
.blog-body .ll-eat-signals .ll-eat-trust > div {
  padding-left: 2.5rem; font-size: 0.9375rem; line-height: 1.75; color: var(--surface-600);
}
.blog-body .ll-eat-signals .ll-eat-expertise > div + div,
.blog-body .ll-eat-signals .ll-eat-authority > div + div,
.blog-body .ll-eat-signals .ll-eat-trust > div + div { margin-top: 0.875rem; }

.blog-body .ll-faq-section {
  counter-reset: faq-counter; margin: 3rem 0; padding: 2.5rem 2.5rem 2.25rem;
  border: 1px solid var(--surface-200); border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, var(--surface-100) 100%);
}
.blog-body .ll-faq-section > h2 {
  margin: 0 0 1.5rem !important; padding: 0 0 1.25rem; border-bottom: 1px solid var(--surface-200);
  font-size: 1.5rem !important; font-weight: 700; color: var(--surface-900); letter-spacing: -0.02em;
}
.blog-body .ll-faq-item {
  counter-increment: faq-counter; margin: 0; padding: 1.5rem 0;
  border-bottom: 1px solid var(--surface-200);
}
.blog-body .ll-faq-item:last-child { padding-bottom: 0; border-bottom: none; }
.blog-body .ll-faq-section > .ll-faq-item:first-of-type { padding-top: 0.5rem; }
.blog-body .ll-faq-item h3 {
  position: relative; padding-left: 2.5rem; margin: 0 0 0.75rem !important;
  font-size: 1.0625rem !important; font-weight: 600; color: var(--surface-900); line-height: 1.5;
}
.blog-body .ll-faq-item h3::before {
  content: counter(faq-counter, decimal-leading-zero); position: absolute; left: 0; top: 0.05em;
  font-size: 0.6875rem; font-weight: 800; color: var(--brand-600); letter-spacing: 0.08em;
}
.blog-body .ll-faq-answer {
  padding-left: 2.5rem; font-size: 0.9375rem; line-height: 1.75; color: var(--surface-600);
}

.blog-body .ll-inline-faq {
  margin: 1.5rem 0; padding: 1.125rem 1.375rem 1.25rem;
  border: 1px solid var(--surface-200); border-left: 3px solid var(--brand-300); border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--surface-100) 60%, transparent 100%);
}
.blog-body .ll-inline-faq > p:first-child {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 0.625rem;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-700);
}
.blog-body .ll-inline-faq > p:first-child::before {
  content: '?'; display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  background: var(--brand-600); color: #fff; font-size: 0.6875rem; font-weight: 800; letter-spacing: 0;
}
.blog-body .ll-inline-faq > p:nth-child(2) {
  margin: 0 0 0.5rem; font-size: 0.9375rem; font-weight: 600; line-height: 1.5; color: var(--surface-900);
}
.blog-body .ll-inline-faq > p:last-child { margin: 0; font-size: 0.9rem; line-height: 1.7; color: var(--surface-600); }

.blog-body .ll-medical-verification-card {
  margin: 2.5rem 0 0; padding: 1.5rem 1.75rem; border: 1px solid var(--brand-100);
  border-radius: 16px; background: linear-gradient(180deg, var(--brand-50) 0%, var(--surface-100) 100%);
}
.blog-body .ll-medical-verification-card > p:first-child {
  margin: 0 0 1.25rem !important; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--surface-500);
}
.blog-body .ll-medical-verification-card > div { display: flex; gap: 1.25rem; align-items: flex-start; }
.blog-body .ll-medical-verification-card > div > span:first-child {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px;
  background: var(--brand-700); color: #fff; font-size: 1.5rem; font-weight: 700;
}
.blog-body .ll-medical-verification-card > div > div { min-width: 0; flex: 1; }
.blog-body .ll-medical-verification-card > div > div > p:first-child {
  margin: 0 0 0.375rem !important; font-size: 1.0625rem; font-weight: 700;
  line-height: 1.4; color: var(--surface-900);
}
.blog-body .ll-medical-verification-card > div > div > p:first-child a { color: inherit; text-decoration: none; }
.blog-body .ll-medical-verification-card > div > div > p:nth-child(2) {
  margin: 0 0 0.75rem; font-size: 0.9375rem; line-height: 1.6; color: var(--surface-600);
}
.blog-body .ll-medical-verification-card > div > div > p:nth-child(2) a { color: var(--surface-700); text-decoration: none; }
.blog-body .ll-medical-verification-card > div > div > p:last-child { margin: 0; }
.blog-body .ll-medical-verification-card > div > div > p:last-child a {
  font-size: 0.875rem; font-weight: 600; color: var(--brand-700);
  text-decoration: underline; text-underline-offset: 3px;
}

.blog-body .cta-section {
  text-align: center; margin: 2.75rem auto; padding: 2.5rem 1.75rem; max-width: 600px;
  border: 1.5px solid var(--brand-200); border-radius: 18px;
  background: linear-gradient(180deg, var(--brand-50) 0%, #fff 100%);
}
.blog-body .cta-section > h2 {
  margin: 0 0 0.625rem !important; font-size: 1.4rem !important; font-weight: 700;
  line-height: 1.3; color: var(--surface-900); letter-spacing: -0.02em;
}
.blog-body .cta-section > p { margin: 0 0 1.5rem; font-size: 0.9375rem; line-height: 1.55; color: var(--surface-600); }
.blog-body .cta-section > div:nth-of-type(1) {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem;
  margin: 0 0 1.75rem; font-size: 0.8125rem; color: var(--surface-600);
}
.blog-body .cta-section > div:nth-of-type(1) > span { display: inline-flex; align-items: center; gap: 6px; }
.blog-body .cta-section > div:nth-of-type(1) > span > span:first-child { color: var(--brand-600); font-weight: 700; }
.blog-body .cta-section > div:nth-of-type(2) { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }

.blog-body .ll-cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; min-width: 200px; font-size: 0.9375rem; font-weight: 600;
  text-decoration: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 4px 14px rgba(198, 93, 59, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-body .ll-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(198, 93, 59, 0.45); }
.blog-body .ll-cta-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 28px; min-width: 200px; font-size: 0.9375rem; font-weight: 500;
  text-decoration: none; border-radius: 12px; border: 1.5px solid var(--brand-200);
  background: transparent; color: var(--brand-700); transition: background 0.2s, border-color 0.2s;
}
.blog-body .ll-cta-secondary:hover { background: var(--brand-50); border-color: var(--brand-400); }

.blog-body .ll-references-section {
  margin: 2.25rem 0 0; padding: 1.5rem 1.75rem; border: 1px solid var(--surface-200);
  border-radius: 12px; background: var(--surface-100);
}
.blog-body .ll-references-section > h2 {
  margin: 0 0 0.375rem !important; font-size: 1.05rem !important; font-weight: 700; color: var(--surface-900);
}
.blog-body .ll-references-section > p { margin: 0 0 1rem; font-size: 0.8125rem; color: var(--surface-500); }
.blog-body .ll-references { margin: 0; padding: 0 0 0 1.5rem; font-size: 0.9rem; line-height: 1.8; }
.blog-body .ll-references li { margin: 0.25rem 0; color: var(--surface-700); }
.blog-body .ll-references li::marker { color: var(--brand-600); font-weight: 700; }
.blog-body .ll-references span:first-child { font-weight: 600; color: var(--surface-900); }
.blog-body .ll-references a { color: var(--brand-700); }

.blog-body .ll-disclaimer {
  margin: 2.25rem 0 0; padding: 1rem 1.25rem; border: 1px solid var(--surface-200);
  border-radius: 10px; background: var(--surface-100);
  font-size: 0.8125rem; line-height: 1.6; color: var(--surface-600);
}
.blog-body .ll-disclaimer strong { color: var(--surface-800); }

/* === Responsive ============================================================ */
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .blog-nav-links { display: flex; }
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .blog-post { padding: 1.75rem 1.25rem 0; }
  .post-body { padding: 1.75rem 0 1rem; }
  .blog-body { font-size: 1.0625rem; line-height: 1.75; }
  .blog-body > p:first-of-type { font-size: 1.15rem; }
  .blog-body h2 { font-size: 1.5rem; margin-top: 2.25rem; }
  .blog-body h3 { font-size: 1.2rem; }
  .blog-body .ll-content-nav,
  .blog-body .ll-brand-callout,
  .blog-body .ll-eat-signals,
  .blog-body .ll-faq-section,
  .blog-body .ll-medical-verification-card,
  .blog-body .cta-section,
  .blog-body .ll-references-section { padding: 1.25rem; }
  .blog-body .ll-inline-faq { padding: 1rem 1.125rem 1.125rem; }
  .blog-body .ll-medical-verification-card > div { flex-direction: column; gap: 0.75rem; }
  /* Wide tables can't be wrapped in a scroll container (markup comes from the
     API), so the table itself becomes the scroller on narrow screens. */
  .blog-body .comparison-table,
  .blog-body table.responsive-table,
  .blog-body table.content-table { display: block; overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
