/* =========================================================
   Long-form content · article + templated sections
   ========================================================= */

.content-shell {
  background:
    radial-gradient(circle at 0% 0%, rgba(184, 35, 58, 0.04), transparent 30%),
    #fff;
  padding: 88px 0 96px;
}

.content-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (max-width: 960px) {
  .content-layout { grid-template-columns: 1fr; gap: 32px; }
  .content-toc { position: static !important; max-height: none !important; }
}

/* ---------- Table of Contents (sticky) ---------- */
.content-toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
  padding: 22px 18px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.content-toc__title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
  padding-left: 12px;
}

.content-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.content-toc__link {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.content-toc__link:hover {
  color: var(--text);
  background: rgba(184, 35, 58, 0.04);
}

.content-toc__link.is-active {
  color: var(--primary);
  background: var(--primary-50);
  border-left-color: var(--primary);
  font-weight: 600;
}

.content-toc__link--child {
  padding-left: 24px;
  font-size: 0.84rem;
}

/* ---------- Article container ---------- */
.article {
  min-width: 0;
  max-width: 780px;
}

.article > section {
  scroll-margin-top: calc(var(--header-h) + 24px);
  margin-bottom: 64px;
}

.article > section:last-child { margin-bottom: 0; }

/* Section title bar */
.article-section__head {
  margin-bottom: 24px;
}

.article-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.article-section__eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.article-section__title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 12px;
}

.article-section__lede {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Prose typography ---------- */
.prose { color: var(--text); font-size: 1rem; line-height: 1.75; }
.prose > * + * { margin-top: 18px; }
.prose h3 { font-size: 1.25rem; font-weight: 700; margin-top: 36px; color: var(--text); letter-spacing: -0.01em; }
.prose h4 { font-size: 1.05rem; font-weight: 700; margin-top: 28px; color: var(--text); }
.prose p { margin: 0; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--primary-700); }
.prose ul, .prose ol { margin: 0; padding-left: 22px; }
.prose ul li, .prose ol li { margin-top: 6px; }
.prose ul li::marker { color: var(--primary); }
.prose blockquote {
  margin: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--primary);
  background: var(--primary-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--text);
}
.prose code {
  background: var(--bg-card-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  font-family: ui-monospace, "SF Mono", monospace;
  color: var(--primary-700);
}

/* ---------- Callout boxes ---------- */
.callout {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--r-lg);
  border: 1px solid;
  margin: 24px 0;
}

.callout__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
}

.callout__icon svg { width: 18px; height: 18px; }

.callout__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 4px 0 4px;
  letter-spacing: -0.01em;
}

.callout__body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.callout__body p + p { margin-top: 8px; }

.callout--info     { background: #f1f7fd; border-color: #cce0f5; }
.callout--info .callout__icon  { background: #cce0f5; color: #1a6aa8; }
.callout--info .callout__title { color: #1a4d7a; }

.callout--tip      { background: #f0faf4; border-color: #c8ecd4; }
.callout--tip .callout__icon   { background: #c8ecd4; color: #1f7a3a; }
.callout--tip .callout__title  { color: #1f5a2a; }

.callout--warning  { background: #fff8eb; border-color: #f3deaa; }
.callout--warning .callout__icon { background: #f3deaa; color: #8a5a14; }
.callout--warning .callout__title{ color: #5a3a08; }

.callout--danger   { background: #fdf2f4; border-color: #f3c8d0; }
.callout--danger .callout__icon  { background: #f3c8d0; color: var(--primary); }
.callout--danger .callout__title { color: var(--primary-700); }

/* ---------- Pros / Cons grid ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}

@media (max-width: 640px) { .pros-cons { grid-template-columns: 1fr; } }

.pros-cons__col {
  padding: 22px 24px;
  border-radius: var(--r-lg);
  border: 1px solid;
}

.pros-cons__col--pros { background: #f3faf5; border-color: #c8e8d2; }
.pros-cons__col--cons { background: #fdf2f4; border-color: #f3c8d0; }

.pros-cons__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 14px;
}

.pros-cons__col--pros .pros-cons__title { color: #1f5a2a; }
.pros-cons__col--cons .pros-cons__title { color: var(--primary-700); }

.pros-cons__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; }
.pros-cons__list li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.pros-cons__list li svg { flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; }
.pros-cons__col--pros .pros-cons__list svg { color: var(--accent-green); }
.pros-cons__col--cons .pros-cons__list svg { color: var(--primary); }

/* ---------- Step-by-step ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 24px 0;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -22px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), transparent);
  opacity: 0.4;
}

.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(184, 35, 58, 0.3);
}

.step__title { font-size: 1.1rem; font-weight: 700; margin: 8px 0 8px; color: var(--text); }
.step__body { color: var(--text-muted); line-height: 1.65; font-size: 0.96rem; }
.step__body p + p { margin-top: 8px; }

/* ---------- FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(184, 35, 58, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236d4a51' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 8L10 13L15 8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-item__body {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-item__body p + p { margin-top: 10px; }

/* ---------- Stats grid (big numbers) ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
  padding: 22px 18px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
}

.stat-card__num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1.1;
}

.stat-card__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ---------- Data table ---------- */
.data-table-wrap {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  background: #fff;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: var(--bg-card-alt);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}

.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--bg-card-alt); }
.data-table td strong { color: var(--text); }

.data-table .pill {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
}

.pill--ok   { background: #e6f5ec; color: #1f7a3a; }
.pill--warn { background: #fff4dc; color: #8a5a14; }
.pill--bad  { background: #fbe5e9; color: var(--primary-700); }

/* ---------- Author bio ---------- */
.author-bio {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin: 24px 0;
}

@media (max-width: 520px) { .author-bio { grid-template-columns: 1fr; text-align: center; } .author-bio__avatar { margin-inline: auto; } }

.author-bio__avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.author-bio__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.author-bio__role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.author-bio__about {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 10px;
}

.author-bio__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.author-bio__meta span { display: inline-flex; align-items: center; gap: 5px; }
.author-bio__meta svg { width: 14px; height: 14px; }

/* ---------- Methodology / criteria ---------- */
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

@media (max-width: 640px) { .criteria-grid { grid-template-columns: 1fr; } }

.criteria-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  align-items: center;
}

.criteria-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary);
  display: grid; place-items: center;
}

.criteria-card__icon svg { width: 22px; height: 22px; }
.criteria-card__title { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.criteria-card__sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

.criteria-card__weight {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* ---------- Pull quote ---------- */
.pullquote {
  position: relative;
  padding: 28px 32px;
  margin: 28px 0;
  background: linear-gradient(135deg, var(--primary-50) 0%, #fff 80%);
  border-radius: var(--r-xl);
  border: 1px solid var(--primary-100);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pullquote::before {
  content: """;
  position: absolute;
  top: -12px;
  left: 22px;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  font-family: Georgia, serif;
  opacity: 0.4;
}

.pullquote__cite {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin: 28px 0;
  padding-left: 20px;
  border-left: 2px dashed var(--primary-100);
}

.timeline__item {
  position: relative;
  padding: 0 0 28px 20px;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--primary);
}

.timeline__year {
  display: inline-block;
  padding: 3px 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-radius: var(--r-pill);
  margin-bottom: 6px;
}

.timeline__title { font-weight: 700; font-size: 1rem; color: var(--text); margin: 0; }
.timeline__body  { font-size: 0.92rem; color: var(--text-muted); margin-top: 4px; line-height: 1.6; }

/* ---------- Glossary ---------- */
.glossary {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4px 24px;
  padding: 22px 24px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin: 24px 0;
}

@media (max-width: 640px) { .glossary { grid-template-columns: 1fr; gap: 2px 0; } }

.glossary dt {
  font-weight: 700;
  color: var(--primary);
  padding: 10px 0;
}

.glossary dd {
  margin: 0;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px dashed var(--border);
}

.glossary dt:not(:first-of-type) { border-top: 1px dashed var(--border); padding-top: 14px; }
.glossary dd:last-of-type { border-bottom: none; }

@media (max-width: 640px) {
  .glossary dt { padding-bottom: 4px; }
  .glossary dd { padding-top: 0; padding-bottom: 14px; }
  .glossary dt:not(:first-of-type) { padding-top: 10px; }
}

/* ---------- Highlight / Editor's Choice box ---------- */
.highlight-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  padding: 26px 28px;
  background: linear-gradient(135deg, #2a0a14 0%, #4a0f1f 100%);
  border-radius: var(--r-xl);
  color: #fff;
  margin: 28px 0;
  overflow: hidden;
}

@media (max-width: 640px) { .highlight-box { grid-template-columns: 1fr; text-align: center; } }

.highlight-box::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-box__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.highlight-box__title { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; line-height: 1.25; }
.highlight-box__sub   { font-size: 0.96rem; color: rgba(255, 255, 255, 0.78); line-height: 1.6; margin: 0 0 16px; }
.highlight-box__cta { background: var(--accent-gold); color: #2a1d00; }
.highlight-box__cta:hover { background: #fdd673; transform: translateY(-1px); }

.highlight-box__visual {
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 20px;
}

.highlight-box__visual-num { font-size: 3rem; font-weight: 900; color: var(--accent-gold); line-height: 1; }
.highlight-box__visual-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 6px; text-align: center; }

/* ---------- Latest posts / news grid ---------- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}

@media (max-width: 880px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .posts-grid { grid-template-columns: 1fr; } }

.post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: var(--primary-100);
}

.post-card__cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--primary), var(--bg-deep));
  position: relative;
  overflow: hidden;
}

.post-card__cover svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.post-card__cat {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.post-card__title { font-size: 0.98rem; font-weight: 700; color: var(--text); line-height: 1.35; margin: 0 0 6px; }
.post-card__excerpt { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.post-card__meta { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 0.78rem; color: var(--text-soft); }
.post-card__meta span::before { content: "·"; margin-right: 10px; opacity: 0.5; }
.post-card__meta span:first-child::before { content: none; }

/* ---------- Comparison criteria (vertical mini-bars) ---------- */
.score-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }

.score-row {
  display: grid;
  grid-template-columns: 180px 1fr 50px;
  gap: 14px;
  align-items: center;
}

@media (max-width: 520px) { .score-row { grid-template-columns: 1fr; gap: 4px; } .score-row__bar-wrap { order: 3; } }

.score-row__label { font-weight: 600; font-size: 0.92rem; color: var(--text); }

.score-row__bar-wrap {
  height: 8px;
  background: var(--bg-card-alt);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.score-row__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold));
  border-radius: var(--r-pill);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.score-row__value { font-weight: 800; font-size: 0.95rem; color: var(--primary); text-align: right; }

/* ---------- Risk warning block ---------- */
.risk-warning {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 22px 26px;
  background: #fff8eb;
  border: 1.5px solid #f3deaa;
  border-left-width: 4px;
  border-left-color: #c8951c;
  border-radius: var(--r-md);
  margin: 28px 0;
}

.risk-warning__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #f3deaa;
  display: grid;
  place-items: center;
  color: #8a5a14;
}

.risk-warning__icon svg { width: 30px; height: 30px; }

.risk-warning__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #5a3a08;
  margin: 4px 0 4px;
}

.risk-warning__body {
  font-size: 0.92rem;
  color: #6a4a14;
  line-height: 1.6;
}

.risk-warning__body a { color: #8a5a14; font-weight: 700; text-decoration: underline; }

/* ---------- Key takeaways panel ---------- */
.takeaways {
  padding: 24px 28px;
  background: linear-gradient(180deg, var(--primary-50) 0%, #fff 100%);
  border: 1px solid var(--primary-100);
  border-radius: var(--r-lg);
  margin: 24px 0;
}

.takeaways__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-700);
  margin: 0 0 14px;
}

.takeaways__title svg { width: 20px; height: 20px; }
.takeaways__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.takeaways__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text);
}
.takeaways__list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 9px;
}

/* ---------- Inline disclosure / placeholder note ---------- */
.placeholder-note {
  display: block;
  padding: 10px 14px;
  background: repeating-linear-gradient(135deg, #fff 0 10px, #fafafa 10px 20px);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 12px 0;
  font-style: italic;
}

.placeholder-note::before {
  content: "Content slot · ";
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
}
