/* =================================================================
   Mobile Health Providers — Article page styles
   Shared by every long-form article (patient or provider).
   Builds on assets/styles.css. Newsreader body for editorial feel.
   ================================================================= */

/* Article hero -------------------------------------------------- */
.article-hero {
  background: var(--cream);
  padding: clamp(40px, 6vw, 72px) 0 0;
  border-bottom: 1px solid var(--line);
}
.article-hero__inner { max-width: 760px; margin: 0 auto; padding: 0 var(--s-5); }
.article-hero__crumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.88rem; color: var(--muted);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}
.article-hero__crumbs a { color: var(--muted); }
.article-hero__crumbs a:hover { color: var(--brand); }
.article-hero__crumbs span.sep { color: var(--line); }

/* Topic pill — defaults to gold (patient articles).
   Provider articles add .article-hero__topic--provider for brand-blue. */
.article-hero__topic {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-tint);
  color: var(--gold-text);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px; font-weight: 600;
  margin-bottom: var(--s-5);
}
.article-hero__topic--provider {
  background: rgba(67,56,202,0.1);
  color: var(--brand);
}
.article-hero__topic--teal {
  background: var(--teal-tint);
  color: var(--teal-text);
}

.article-hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.4rem);
  line-height: 1.08;
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.article-hero__dek {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 0.4vw + 1.05rem, 1.35rem);
  line-height: 1.5;
  color: var(--body);
  margin-bottom: var(--s-6);
  text-wrap: pretty;
}
.article-byline {
  display: flex; align-items: center; gap: var(--s-4);
  padding: var(--s-4) 0 var(--s-6);
  border-top: 1px solid var(--line);
}
.article-byline__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden;
  background: var(--cream-2);
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.article-byline__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.article-byline__who { line-height: 1.3; }
.article-byline__name { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.article-byline__creds { font-size: 0.82rem; color: var(--gold-text); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }
.article-byline__meta {
  margin-left: auto;
  text-align: right;
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.5;
}
.article-byline__meta strong { color: var(--slate); font-weight: 600; }
@media (max-width: 560px) {
  .article-byline__meta { font-size: 0.82rem; }
}

/* Hero image --------------------------------------------------- */
.article-figure {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.article-figure__img {
  aspect-ratio: 16 / 8;
  background: var(--cream-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  margin: var(--s-6) 0;
}
.article-figure__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.article-figure__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: -8px auto var(--s-7);
  padding: 0 var(--s-4);
}

/* Article body ------------------------------------------------- */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--s-5) var(--s-9);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--body);
}
.article-body > * { max-width: 100%; }
.article-body p {
  margin: 0 0 var(--s-5);
  text-wrap: pretty;
}
.article-body p > a,
.article-body li > a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(67,56,202,0.35);
  transition: text-decoration-color .15s ease;
}
.article-body p > a:hover,
.article-body li > a:hover {
  text-decoration-color: var(--brand);
}
.article-body h2 {
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2rem);
  margin: var(--s-8) 0 var(--s-4);
  color: var(--ink);
  line-height: 1.2;
  scroll-margin-top: 100px;
}
.article-body h2:first-of-type { margin-top: var(--s-6); }
.article-body h3 {
  font-size: 1.3rem;
  margin: var(--s-6) 0 var(--s-3);
  color: var(--ink);
  font-weight: 600;
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em { font-style: italic; }
.article-body ul, .article-body ol {
  margin: 0 0 var(--s-5);
  padding-left: 1.4em;
}
.article-body li { margin-bottom: 10px; padding-left: 6px; }
.article-body li::marker { color: var(--gold); }
.article-body hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: var(--s-8) auto;
  max-width: 80px;
}

/* TL;DR callout ------------------------------------------------ */
.article-tldr {
  background: linear-gradient(180deg, #FCF6E6 0%, var(--gold-tint) 100%);
  border: 1px solid var(--gold-soft);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin: 0 0 var(--s-7);
  position: relative;
}
.article-tldr--provider {
  background: linear-gradient(180deg, #EFEDFB 0%, #DCD8F4 100%);
  border-color: rgba(67,56,202,0.25);
}
.article-tldr__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.article-tldr--provider .article-tldr__label { color: var(--brand); }
.article-tldr ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--slate);
}
.article-tldr li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.article-tldr li:last-child { margin-bottom: 0; }
.article-tldr li::before {
  content: "";
  position: absolute;
  left: 4px; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.article-tldr--provider li::before { background: var(--brand); }

/* Eligibility / criteria tiers --------------------------------- */
.tiers {
  display: grid;
  gap: var(--s-3);
  margin: var(--s-5) 0 var(--s-6);
}
.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--s-4) var(--s-5);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.55;
}
.tier__num {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 6px;
}
.tier__bmi {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.tier__cond {
  color: var(--body);
  font-size: 1rem;
  line-height: 1.5;
}

/* Data tables (medications, indications, etc.) ----------------- */
.meds-table-wrap {
  margin: var(--s-5) 0 var(--s-6);
}
.meds-table-wrap__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
}
.meds-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.4;
}
.meds-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0;
}
.meds-table thead th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink);
}
.meds-table tbody td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  vertical-align: top;
  color: var(--body);
}
.meds-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}
.meds-table tbody tr:nth-child(even) td {
  background: var(--cream);
}
.meds-table__scroll-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
  display: none;
}
@media (max-width: 720px) {
  .meds-table__scroll-hint { display: block; }
}

/* Notes / aside boxes ------------------------------------------ */
.note {
  background: var(--teal-tint);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--s-4) var(--s-5);
  margin: var(--s-5) 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--body);
}
.note strong { color: var(--teal-text); }
.note p:last-child { margin-bottom: 0; }
.note--gold {
  background: var(--gold-tint);
  border-left-color: var(--gold);
}
.note--gold strong { color: var(--gold-text); }
.note--brand {
  background: rgba(67,56,202,0.06);
  border-left-color: var(--brand);
}
.note--brand strong { color: var(--brand); }

/* Inline CTA — mid-article conversion block at peak intent ------ */
.inline-cta {
  margin: var(--s-6) 0;
  padding: var(--s-5) var(--s-6);
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.inline-cta__text { flex: 1; min-width: 260px; }
.inline-cta__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 8px;
}
.inline-cta__lead {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 8px;
}
.inline-cta__sub {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #C4CFE6;
  margin: 0;
}
.inline-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  flex-shrink: 0;
}
.inline-cta__phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.inline-cta__phone:hover { color: var(--gold-soft); text-decoration: none; }
.inline-cta .btn--gold { text-align: center; }
@media (max-width: 600px) {
  .inline-cta { padding: var(--s-4) var(--s-5); }
  .inline-cta__actions { width: 100%; }
  .inline-cta__lead { font-size: 1.3rem; }
}

/* Cross-link callout — links to a companion article ------------ */
.crosslink {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin: var(--s-6) 0;
  padding: var(--s-4) var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  text-decoration: none !important;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.crosslink:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
  text-decoration: none !important;
  transform: translateY(-1px);
}
.crosslink__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(67,56,202,0.1);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.crosslink__icon svg { width: 22px; height: 22px; }
.crosslink__body { flex: 1; min-width: 0; }
.crosslink__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 2px;
}
.crosslink__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}
.crosslink__arrow {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 1.4rem;
  transition: transform .15s, color .15s;
}
.crosslink:hover .crosslink__arrow { color: var(--brand); transform: translateX(3px); }
@media (max-width: 560px) {
  .crosslink__arrow { display: none; }
}

/* Pull quote --------------------------------------------------- */
.pullquote-block {
  margin: var(--s-7) 0;
  padding: var(--s-3) 0 var(--s-3) var(--s-5);
  border-left: 3px solid var(--gold);
}
.pullquote-block p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 0.5vw + 1.2rem, 1.55rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

/* FAQ ----------------------------------------------------------- */
.faq {
  margin: var(--s-5) 0;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: "";
  flex-shrink: 0;
  width: 14px; height: 14px;
  margin-left: auto;
  margin-top: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq__item[open] > summary::after {
  transform: rotate(-135deg);
  margin-top: 12px;
}
.faq__a {
  padding: 0 0 var(--s-5);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--body);
}
.faq__a p:last-child { margin-bottom: 0; }
.faq__a a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* References list (numbered, academic style) -------------------- */
.references {
  margin: var(--s-5) 0 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--body);
}
.references ol {
  padding-left: 1.8em;
  margin: 0;
  list-style: decimal;
}
.references li {
  margin-bottom: 14px;
  padding-left: 6px;
  color: var(--body);
  font-size: 0.92rem;
}
.references li::marker {
  color: var(--brand);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.references em { font-style: italic; color: var(--ink); }
.references a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(67,56,202,0.35);
  text-underline-offset: 3px;
  word-break: break-word;
}
.references a:hover { text-decoration-color: var(--brand); }

/* Author bio card --------------------------------------------- */
.author-bio {
  max-width: 760px;
  margin: var(--s-7) auto 0;
  padding: var(--s-6);
  background: var(--cream-2);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--s-5);
  align-items: start;
  border: 1px solid var(--line);
}
@media (max-width: 560px) {
  .author-bio { grid-template-columns: 1fr; }
  .author-bio__photo { width: 96px; height: 96px; margin: 0 auto; }
}
.author-bio__photo {
  width: 96px; height: 96px; border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  border: 2px solid var(--paper);
  box-shadow: var(--shadow-sm);
}
.author-bio__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.author-bio__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 4px;
  font-weight: 500;
}
.author-bio__title {
  font-size: 0.85rem;
  color: var(--gold-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.author-bio p {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--body);
  margin: 0 0 var(--s-3);
}
.author-bio__link {
  font-weight: 600;
  color: var(--brand);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

/* Share / print bar ------------------------------------------- */
.share-bar {
  max-width: 720px;
  margin: var(--s-6) auto 0;
  padding: var(--s-4) var(--s-5);
  display: flex;
  gap: var(--s-3);
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.share-bar__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-right: var(--s-3);
}
.share-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, color .15s, background-color .15s;
  line-height: 1;
}
.share-bar__btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  text-decoration: none;
  background: var(--paper);
}
.share-bar__btn svg { width: 16px; height: 16px; flex-shrink: 0; }
/* Brand-colored hover for social platforms */
.share-bar__btn[data-share-action="facebook"]:hover { border-color: #1877F2; color: #1877F2; }
.share-bar__btn[data-share-action="x"]:hover { border-color: var(--ink); color: var(--ink); }
.share-bar__btn[data-share-action="whatsapp"]:hover { border-color: #25D366; color: #25D366; }
.share-bar__btn[data-share-action="linkedin"]:hover { border-color: #0A66C2; color: #0A66C2; }
@media (max-width: 560px) {
  /* On phones, drop labels to fit more icons */
  .share-bar__btn { padding: 10px; gap: 0; }
  .share-bar__btn span:not(.share-bar__copied) { display: none; }
  .share-bar__btn[data-share-action="copy"] span,
  .share-bar__btn[data-share-action="native"] span { display: none; }
  .share-bar__label { width: 100%; margin-bottom: 4px; }
}
.share-bar__copied {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  opacity: 0;
  transition: opacity .2s;
}
.share-bar__copied.on { opacity: 1; }

/* Related reading --------------------------------------------- */
.related {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.related__head {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--s-5) var(--s-5);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.related__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 1vw + 1rem, 1.9rem);
}
.related__head a {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand);
}

/* Disclaimer footer ------------------------------------------- */
.article-disclaimer {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-6) var(--s-5) 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-serif);
  text-align: center;
}

/* Extended disclaimer block (multi-paragraph "About this article") */
.article-disclaimer-block {
  max-width: 760px;
  margin: var(--s-6) auto 0;
  padding: var(--s-5);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}
.article-disclaimer-block h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  text-align: left;
}
.article-disclaimer-block p {
  margin: 0 0 var(--s-3);
}
.article-disclaimer-block p:last-child {
  margin-bottom: 0;
}
.article-disclaimer-block a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Reading progress bar ---------------------------------------- */
.read-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}
.read-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--brand) 100%);
  transition: width .1s linear;
}
.read-progress--provider .read-progress__bar {
  background: linear-gradient(90deg, var(--brand) 0%, var(--teal) 100%);
}

/* Quick Answer / Key Facts box (GEO-optimized, citable) -------- */
.quick-answer {
  margin: 0 0 var(--s-6);
  padding: var(--s-5) var(--s-6);
  background: linear-gradient(180deg, #FBFAF6 0%, #F4F1E9 100%);
  border: 1px solid var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-lg);
}
.quick-answer--provider {
  background: linear-gradient(180deg, #F6F5FD 0%, #ECEAF8 100%);
  border-color: rgba(67,56,202,0.25);
  border-left-color: var(--brand);
}
.quick-answer__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-text);
  margin-bottom: var(--s-3);
}
.quick-answer--provider .quick-answer__label { color: var(--brand); }
.quick-answer__label svg { width: 15px; height: 15px; }
.quick-answer__lead {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  text-wrap: pretty;
}
.quick-answer__facts-label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 10px;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}
.key-facts { list-style: none; margin: 0; padding: 0; }
.key-facts li {
  position: relative;
  padding: 0 0 0 24px;
  margin: 0 0 10px;
  font-size: 1.0rem;
  line-height: 1.5;
  color: var(--body);
}
.key-facts li:last-child { margin-bottom: 0; }
.key-facts li::before {
  content: "";
  position: absolute;
  left: 3px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}
.quick-answer--provider .key-facts li::before { background: var(--brand); }
.key-facts strong { color: var(--ink); font-weight: 600; }
.key-facts .src {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}
.key-facts .src::before { content: "("; }
.key-facts .src::after { content: ")"; }
.key-facts .src a {
  color: var(--slate);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.key-facts .src a:hover { color: var(--ink); text-decoration-color: currentColor; }

/* Smaller screens --------------------------------------------- */
@media (max-width: 720px) {
  .article-body { font-size: 1.1rem; line-height: 1.6; }
  .article-tldr ul { font-size: 1rem; }
  .quick-answer { padding: var(--s-4) var(--s-5); }
  .quick-answer__lead { font-size: 1.1rem; }
  .article-byline { flex-wrap: wrap; }
  .article-byline__meta { margin-left: 0; text-align: left; width: 100%; padding-top: 8px; border-top: 1px dashed var(--line); }
}
