/* ==========================================================================\n   STOCKMARKETLOOP — SML NEWS ARTICLE TEMPLATES 2.0\n   Source of truth: SML Article Design 2.0.html\n   Covers ordinary .sml-news-article and Grandmaster-OBI .sml-alert-report.\n   ========================================================================== */\n\n:root {
  --sml-bg: #0A0E11;
  --sml-surface: #10161B;
  --sml-surface-2: #151D24;
  --sml-line: #223039;
  --sml-text: #DCE6EA;
  --sml-muted: #8A9BA6;
  --sml-green: #38F58A;
  --sml-green-dim: #1e7a4a;
  --sml-red: #F2495C;
  --sml-blue: #4DA6FF;
  --sml-sans: "IBM Plex Sans", system-ui, sans-serif;
  --sml-mono: "IBM Plex Mono", ui-monospace, monospace;
  --sml-display: "Archivo", "IBM Plex Sans", sans-serif;
}

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

html { scroll-behavior: smooth; }

/* reading-progress bar across the top (scroll-driven, pure CSS) */
@supports (animation-timeline: scroll()) {
  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    height: 3px; width: 100%;
    background: linear-gradient(90deg, var(--sml-green), #12b463);
    box-shadow: 0 0 12px rgba(56,245,138,.6);
    transform-origin: 0 50%;
    transform: scaleX(0);
    animation: sml-progress linear both;
    animation-timeline: scroll(root);
    z-index: 50;
  }
  @keyframes sml-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}

/* faint ticker-grid backdrop for depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(56,245,138,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,245,138,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(900px 600px at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 50% 0%, #000 0%, transparent 75%);
  z-index: 0;
}

body {
  margin: 0;
  background:
    radial-gradient(1100px 500px at 85% -5%, rgba(56,245,138,.07), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(242,73,92,.05), transparent 55%),
    var(--sml-bg);
  color: var(--sml-text);
  font-family: var(--sml-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sml-green); color: #05130b; }

img { max-width: 100%; height: auto; }
table { border-collapse: collapse; }

/* ── Content column ─────────────────────────────────────────────── */
.entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.entry-content a {
  color: var(--sml-blue);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .25s ease;
}
.entry-content a:hover { background-size: 100% 1px; }
.entry-content a:focus-visible {
  outline: 2px solid var(--sml-green);
  outline-offset: 3px;
  border-radius: 2px;
}

.entry-content p { margin: 0 0 1.4em; text-wrap: pretty; }
.entry-content hr {
  border: 0;
  border-top: 1px solid var(--sml-line);
  margin: 48px 0;
}

/* ── Headline + flipping 3D coin accent ─────────────────────────── */
.sml-news-article h1,
.sml-alert-report h1 {
  position: relative;
  font-family: var(--sml-display);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
  padding-top: 34px;
  background: linear-gradient(180deg, #fff 55%, #93a8b3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}
/* a small green disc that flips in 3D above the title — attention anchor */
.sml-news-article h1::before,
.sml-alert-report h1::before {
  content: "";
  position: absolute;
  top: 0; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sml-green), #12b463);
  box-shadow: 0 0 18px rgba(56,245,138,.55);
  animation: sml-coin-flip 3.2s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes sml-coin-flip {
  0%, 15%  { transform: perspective(120px) rotateY(0deg); }
  50%, 65% { transform: perspective(120px) rotateY(180deg); }
  100%     { transform: perspective(120px) rotateY(360deg); }
}

/* ── Decks ──────────────────────────────────────────────────────── */
.sml-news-subtitle,
.sml-dek {
  font-size: 20px;
  line-height: 1.55;
  color: var(--sml-muted);
  margin: 0 0 32px;
  padding-bottom: 28px;
  font-weight: 400;
  border-bottom: 1px solid var(--sml-line);
}

/* drop cap on the opening paragraph */
.sml-news-subtitle + p::first-letter,
.sml-dek + p::first-letter {
  font-family: var(--sml-display);
  font-weight: 900;
  font-size: 3.4em;
  line-height: .82;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--sml-green);
  text-shadow: 0 0 24px rgba(56,245,138,.35);
}

/* ── Numbered section headings ──────────────────────────────────── */
.sml-news-article, .sml-alert-report { counter-reset: sml-section; }

.sml-news-article h2,
.sml-alert-report h2 {
  counter-increment: sml-section;
  font-family: var(--sml-display);
  font-weight: 800;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 52px 0 14px;
  scroll-margin-top: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sml-line);
  background:
    linear-gradient(90deg, var(--sml-green), transparent) left bottom / 0% 1px no-repeat;
  transition: background-size .6s ease;
}
.sml-news-article h2:hover,
.sml-alert-report h2:hover { background-size: 56% 1px; }
.sml-news-article h2::before,
.sml-alert-report h2::before {
  content: "0" counter(sml-section);
  display: block;
  font-family: var(--sml-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--sml-green);
  margin-bottom: 6px;
}

.sml-alert-report h3 {
  font-family: var(--sml-display);
  font-weight: 700;
  font-size: 18.5px;
  color: var(--sml-text);
  margin: 32px 0 10px;
}

/* ── Lists ──────────────────────────────────────────────────────── */
.entry-content ul { padding-left: 0; margin: 0 0 1.4em; list-style: none; }
.entry-content ul > li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.entry-content ul > li::before {
  content: "";
  position: absolute;
  left: 2px; top: .58em;
  width: 8px; height: 8px;
  background: var(--sml-green);
  transform: rotate(45deg);
  transition: transform .3s ease;
}
.entry-content ul > li:hover::before { transform: rotate(225deg); }

.entry-content ol { padding-left: 24px; margin: 0 0 1.4em; }

/* ── Table of contents (alert type) ─────────────────────────────── */
.sml-article-toc {
  position: sticky;
  top: 16px;
  z-index: 5;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--sml-surface) 82%, transparent);
  border: 1px solid var(--sml-line);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0 36px;
  box-shadow: 0 16px 40px -20px rgba(0,0,0,.7);
}
.sml-article-toc > strong {
  display: block;
  font-family: var(--sml-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--sml-muted);
  margin-bottom: 12px;
}
.sml-article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sml-toc;
  display: grid;
  gap: 8px;
}
.sml-article-toc li { counter-increment: sml-toc; }
.sml-article-toc li::before {
  content: "0" counter(sml-toc);
  font-family: var(--sml-mono);
  font-size: 12px;
  color: var(--sml-green);
  margin-right: 12px;
}
.sml-article-toc a {
  color: var(--sml-text);
  font-weight: 500;
  display: inline-block;
  transition: transform .2s ease, color .2s ease;
}
.sml-article-toc a:hover { color: var(--sml-green); transform: translateX(4px); }

/* ── Data table — 3D tilt card ──────────────────────────────────── */
.entry-content table {
  width: 100%;
  margin: 28px 0;
  background: var(--sml-surface);
  border: 1px solid var(--sml-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px -18px rgba(0,0,0,.65);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
  transform: perspective(1100px) rotateX(0deg);
}
.entry-content table:hover {
  transform: perspective(1100px) rotateX(3.5deg) translateY(-3px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.8), 0 0 0 1px rgba(56,245,138,.25),
              0 0 40px -10px rgba(56,245,138,.2);
}
.entry-content table th[scope="row"] {
  text-align: left;
  font-family: var(--sml-sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--sml-muted);
  padding: 14px 20px;
  border-bottom: 1px solid var(--sml-line);
  width: 52%;
}
.entry-content table td {
  font-family: var(--sml-mono);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--sml-green);
  text-align: right;
  padding: 14px 20px;
  border-bottom: 1px solid var(--sml-line);
  font-variant-numeric: tabular-nums;
}
.entry-content table tr:last-child th,
.entry-content table tr:last-child td { border-bottom: 0; }
.entry-content table tbody tr { transition: background .2s ease; }
.entry-content table tbody tr:hover { background: rgba(56,245,138,.05); }

/* ── Evidence figure — 3D hover ─────────────────────────────────── */
.sml-alert-evidence {
  margin: 32px 0;
  perspective: 1200px;
}
.sml-alert-evidence img {
  display: block;
  border-radius: 10px;
  border: 1px solid var(--sml-line);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.7);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.sml-alert-evidence:hover img {
  transform: rotateX(4deg) rotateY(-3deg) scale(1.015);
  box-shadow: 0 34px 70px -22px rgba(0,0,0,.85), 0 0 45px -12px rgba(56,245,138,.3);
}
.sml-alert-evidence figcaption {
  font-family: var(--sml-mono);
  font-size: 12.5px;
  color: var(--sml-muted);
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px solid var(--sml-green);
}

/* ── Ticker links — chip treatment ──────────────────────────────── */
.entry-content .sml-ticker-link {
  color: var(--sml-green);
  display: inline-block;
  font-family: var(--sml-mono);
  font-weight: 600;
  font-size: .88em;
  padding: 1px 9px 2px;
  border: 1px solid rgba(56,245,138,.4);
  border-radius: 999px;
  background: rgba(56,245,138,.08) !important;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.sml-ticker-link:hover {
  background: rgba(56,245,138,.18) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -6px rgba(56,245,138,.5);
}

/* ── Live chart block ───────────────────────────────────────────── */
/* ── Live chart block — flush, no card chrome ───────────────── */
.sml-live-chart {
  margin: 32px 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.sml-live-chart .sml-live-chart-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 10px;
  border: 0;
  font-family: var(--sml-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sml-muted) !important;
  background: none !important;
  text-decoration: none;
  transition: color .2s ease;
}
.sml-live-chart .sml-live-chart-head:hover { color: var(--sml-green) !important; }
.sml-live-chart .sml-live-chart-open {
  margin-left: auto;
  color: var(--sml-green);
  letter-spacing: .08em;
}
.sml-live-chart .sml-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sml-green);
  box-shadow: 0 0 10px rgba(56,245,138,.8);
  animation: sml-live-pulse 1.6s ease-in-out infinite;
}
@keyframes sml-live-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.sml-live-chart .sml-live-chart-body {
  height: 446px;
  position: relative;
  overflow: hidden;
  /* Frame ONLY the LoopCharts engine out of the full Ticker Terminal page.
     Values calibrated against the live site: */
  --sml-chart-page-w: 1168px;  /* virtual desktop width the page renders at */
  --sml-chart-crop-top: 248px; /* px of page above the chart engine to hide */
  --sml-chart-crop-left: 16px; /* px of left margin to hide */
  --sml-chart-scale: .6;       /* fit: column width / --sml-chart-page-w */
}
.sml-live-chart iframe {
  border: 0;
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: var(--sml-chart-page-w) !important;
  height: 1400px !important;
  transform: scale(var(--sml-chart-scale))
             translate(calc(-1 * var(--sml-chart-crop-left)),
                       calc(-1 * var(--sml-chart-crop-top)));
  transform-origin: top left;
}
@media (max-width: 560px) {
  .sml-live-chart .sml-live-chart-body { height: 320px; --sml-chart-scale: .30; }
}
/* click-through overlay: the whole chart is a link to the Ticker Terminal */
.sml-live-chart .sml-live-chart-overlay {
  position: absolute;
  inset: 0;
  background: none !important;
}
.sml-live-chart .sml-live-chart-cta {
  display: block;
  padding: 12px 18px;
  border-top: 1px solid var(--sml-line);
  font-family: var(--sml-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--sml-green) !important;
  background: rgba(56,245,138,.06) !important;
  text-decoration: none;
  transition: background-color .2s ease, padding-left .2s ease;
}
.sml-live-chart .sml-live-chart-cta:hover {
  background: rgba(56,245,138,.14) !important;
  padding-left: 26px;
}

/* ── Blockquote ─────────────────────────────────────────────────── */
.entry-content blockquote {
  position: relative;
  margin: 36px 0;
  padding: 8px 0 8px 32px;
  font-size: 19px;
  line-height: 1.6;
  font-style: italic;
  color: #fff;
}
.entry-content blockquote::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--sml-green), var(--sml-red));
}
.entry-content blockquote p { margin: 0; }

/* ── Asides: source / disclaimer / market links ─────────────────── */
.sml-article-source,
.sml-article-disclaimer {
  font-size: 14px;
  color: var(--sml-muted);
  margin: 0 0 14px;
  padding: 14px 18px;
  background: var(--sml-surface);
  border: 1px solid var(--sml-line);
  border-radius: 8px;
}
.sml-article-source strong,
.sml-article-disclaimer strong {
  font-family: var(--sml-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--sml-text);
  margin-right: 6px;
}

.sml-market-links {
  margin: 48px 0 0;
  padding: 24px 26px;
  background: linear-gradient(160deg, var(--sml-surface-2), var(--sml-surface));
  border: 1px solid var(--sml-line);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.sml-market-links::after {           /* subtle 3D rotating diamond, corner */
  content: "";
  position: absolute;
  right: 22px; top: 22px;
  width: 14px; height: 14px;
  background: var(--sml-green);
  animation: sml-spin3d 6s linear infinite;
  box-shadow: 0 0 20px rgba(56,245,138,.5);
}
@keyframes sml-spin3d {
  from { transform: perspective(200px) rotateX(20deg) rotateZ(45deg) rotateY(0); }
  to   { transform: perspective(200px) rotateX(20deg) rotateZ(45deg) rotateY(360deg); }
}
.sml-market-links h2 {
  margin: 0 0 14px !important;
  font-size: 19px !important;
}
.sml-market-links h2::before { content: none !important; }
.sml-market-links ul { margin: 0; }

/* ── Trust box ──────────────────────────────────────────────────── */
.sml-trust-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid var(--sml-line);
  font-size: 13.5px;
  color: var(--sml-muted);
}
.sml-trust-box p { margin: 0 0 6px; }
.sml-trust-box strong { color: var(--sml-text); }
.sml-trust-box a { color: var(--sml-green); text-decoration: none; }
.sml-trust-box a:hover { text-decoration: underline; }
.sml-trust-box time { font-family: var(--sml-mono); font-size: 12.5px; }

/* keep the trust box inside the column when it sits in .entry-content */
.entry-content .sml-trust-box { padding-left: 0; padding-right: 0; margin-top: 40px; }

/* ── Scroll-driven reveals (progressive enhancement) ────────────── */
@supports (animation-timeline: view()) {
  .entry-content h2,
  .entry-content h3,
  .entry-content > article > p,
  .entry-content > article > ul,
  .entry-content table,
  .sml-alert-evidence,
  .sml-market-links,
  .sml-article-source,
  .sml-article-disclaimer,
  .entry-content blockquote {
    animation: sml-rise both;
    animation-timeline: view();
    animation-range: entry 0% entry 32%;
  }
  @keyframes sml-rise {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Small screens ──────────────────────────────────────────────── */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .entry-content { padding: 36px 18px 60px; }
  .sml-news-subtitle, .sml-dek { font-size: 18px; }
  .entry-content table th[scope="row"],
  .entry-content table td { padding: 11px 14px; font-size: 13.5px; }
}\n\n/* Preserved functional modules from the prior permanent stylesheet. */\n/* ── 07b · verified live market pulse ─────────────────────────────────── */
.sml-live-market {
  position: relative;
  overflow: hidden;
  margin: 42px auto 56px;
  border: 1px solid rgba(56,245,138,.42);
  border-radius: 18px;
  background:
    radial-gradient(680px 260px at 8% 0%, rgba(56,245,138,.16), transparent 62%),
    radial-gradient(620px 280px at 96% 8%, rgba(56,214,245,.13), transparent 64%),
    linear-gradient(150deg, #091119, #060B10 68%);
  box-shadow: 0 22px 70px rgba(0,0,0,.48), 0 0 34px rgba(56,245,138,.08), inset 0 1px 0 rgba(255,255,255,.06);
  color: var(--sml-text-bright);
}
.sml-live-market::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.016) 0 1px, transparent 1px 4px);
  opacity: .5;
}
.sml-live-market.is-down { border-color: rgba(242,73,92,.5); box-shadow: 0 22px 70px rgba(0,0,0,.48), 0 0 34px rgba(242,73,92,.09); }
.sml-pulse-head,
.sml-pulse-stats,
.sml-pulse-graphs,
.sml-pulse-foot { position: relative; z-index: 1; }
.sml-pulse-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.sml-pulse-company { display: flex; align-items: center; gap: 14px; min-width: 0; }
.sml-pulse-logo {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 15px;
  background: linear-gradient(145deg, #F8FBFD, #CFD9E2);
  box-shadow: 0 8px 28px rgba(0,0,0,.36);
}
.sml-pulse-logo img { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); object-fit: contain; z-index: 2; }
.sml-pulse-logo b { font: 700 1rem/1 var(--sml-mono); color: #12202C; }
.sml-pulse-company > span:last-child { display: grid; gap: 2px; min-width: 0; }
.sml-pulse-company em,
.sml-pulse-company strong,
.sml-pulse-company small { font-style: normal; }
.sml-pulse-company em { font: 700 .61rem/1 var(--sml-mono); letter-spacing: .17em; color: var(--sml-green); }
.sml-pulse-company strong { font: 700 clamp(1.55rem,4vw,2.3rem)/1 var(--sml-display); color: #FFFFFF; }
.sml-pulse-company small { overflow: hidden; max-width: 330px; color: #C8D6E2; font: 500 .78rem/1.35 var(--sml-sans); text-overflow: ellipsis; white-space: nowrap; }
.sml-pulse-price { display: grid; justify-items: end; gap: 3px; margin-left: auto; }
.sml-pulse-price > strong { font: 700 clamp(1.45rem,4vw,2.2rem)/1 var(--sml-mono); color: #FFFFFF; font-variant-numeric: tabular-nums; }
.sml-pulse-price > span { font: 700 .78rem/1 var(--sml-mono); }
.sml-pulse-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(56,245,138,.35);
  border-radius: 999px;
  background: rgba(56,245,138,.09);
  color: var(--sml-green);
  font: 700 .59rem/1 var(--sml-mono);
  letter-spacing: .12em;
}
.sml-pulse-status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; animation: sml-pulse 1.4s ease-in-out infinite; }
.sml-pulse-status.is-delayed { border-color: rgba(245,197,68,.42); background: rgba(245,197,68,.1); color: var(--sml-amber); }
.sml-pulse-stats { display: grid; grid-template-columns: repeat(5,1fr); border-bottom: 1px solid rgba(255,255,255,.09); }
.sml-pulse-stats > div { display: grid; gap: 5px; padding: 13px 18px 14px; border-right: 1px solid rgba(255,255,255,.08); }
.sml-pulse-stats > div:last-child { border-right: 0; }
.sml-pulse-stats span { color: #8EA2B4; font: 600 .59rem/1 var(--sml-mono); letter-spacing: .14em; }
.sml-pulse-stats b { color: #F4F9FC; font: 700 .9rem/1.2 var(--sml-mono); font-variant-numeric: tabular-nums; }
.sml-pulse-graphs { display: grid; grid-template-columns: minmax(0,3fr) minmax(180px,1fr); gap: 0; }
.sml-pulse-graph { position: relative; min-width: 0; padding: 17px 18px 10px; }
.sml-pulse-volume-graph { border-left: 1px solid rgba(255,255,255,.09); }
.sml-pulse-graph > span { display: block; margin-bottom: 8px; color: #A9BBC9; font: 700 .61rem/1 var(--sml-mono); letter-spacing: .14em; }
.sml-pulse-graph svg { display: block; width: 100%; height: auto; filter: drop-shadow(0 7px 13px rgba(0,0,0,.24)); }
.sml-pulse-price-graph b { position: absolute; bottom: 13px; color: #C7D5E0; font: 600 .61rem/1 var(--sml-mono); }
.sml-pulse-price-graph b:first-of-type { left: 20px; }
.sml-pulse-price-graph b:last-of-type { right: 20px; }
.sml-pulse-grid path { fill: none; stroke: rgba(255,255,255,.09); stroke-width: 1; stroke-dasharray: 5 8; }
.sml-pulse-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 20px 15px; border-top: 1px solid rgba(255,255,255,.09); background: rgba(0,0,0,.18); }
.sml-pulse-foot span { color: #A6B8C6; font: 500 .65rem/1.5 var(--sml-mono); }
.sml-pulse-foot a { color: var(--sml-green); font: 700 .66rem/1.4 var(--sml-mono); letter-spacing: .05em; text-decoration: none; white-space: nowrap; }
.sml-pulse-loading,
.sml-pulse-unavailable { display: grid; justify-items: center; gap: 8px; padding: 46px 24px; text-align: center; }
.sml-pulse-loading i { width: 10px; height: 10px; border-radius: 50%; background: var(--sml-green); box-shadow: 0 0 18px var(--sml-green); animation: sml-pulse 1.2s ease-in-out infinite; }
.sml-pulse-loading strong,
.sml-pulse-unavailable strong { color: #FFFFFF; font: 700 1.02rem/1.3 var(--sml-display); }
.sml-pulse-loading span,
.sml-pulse-unavailable span { color: #B3C1CD; font-size: .82rem; }
.sml-pulse-unavailable a { color: var(--sml-green); font: 700 .72rem/1 var(--sml-mono); }


/* ── 12 · featured image + engagement bar ───────────────────────────── */
/* Featured image sits directly under the byline/date row:
     <figure class="sml-featured-image"><img …></figure>
   Engagement bar sits under the dek (WP renders the buttons; these style them):
     <div class="sml-engage-bar">
       <button class="sml-engage-btn sml-engage-like">… Like · <span>128</span></button> …
     </div>                                                                  */
.sml-featured-image { margin: 0 auto 48px; }
.sml-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--sml-line-strong);
}
.sml-featured-image figcaption {
  font-family: var(--sml-mono);
  font-size: 0.74rem;
  color: var(--sml-text-dim);
  margin-top: 10px;
}

.sml-engage-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 26px;
  max-width: 680px;
}
.sml-engage-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sml-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 10px 18px 11px;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.sml-engage-btn svg { display: block; }
.sml-engage-btn:hover { transform: translateY(-1px); filter: brightness(1.12); }
.sml-engage-btn:active { transform: translateY(2px); }

.sml-engage-like {
  color: #04140B;
  background: linear-gradient(180deg, #6DFFAC, #2DDF78);
  border: 1px solid #1FB35F;
  box-shadow: 0 4px 0 #148144, 0 8px 18px rgba(56,245,138,.28), inset 0 1px 0 rgba(255,255,255,.5);
}
.sml-engage-like span { color: #0A3D22; }
.sml-engage-like:active { box-shadow: 0 1px 0 #148144, 0 3px 8px rgba(56,245,138,.2), inset 0 1px 0 rgba(255,255,255,.5); }
.sml-engage-like[aria-pressed="true"] { background: linear-gradient(180deg, #38F58A, #1CB963); }

.sml-engage-comment {
  color: #03222C;
  background: linear-gradient(180deg, #7BE4FF, #29BEE8);
  border: 1px solid #1B9CC4;
  box-shadow: 0 4px 0 #12718F, 0 8px 18px rgba(56,214,245,.26), inset 0 1px 0 rgba(255,255,255,.5);
}
.sml-engage-comment span { color: #0A4759; }
.sml-engage-comment:active { box-shadow: 0 1px 0 #12718F, 0 3px 8px rgba(56,214,245,.2), inset 0 1px 0 rgba(255,255,255,.5); }

.sml-engage-share {
  color: #2A1F03;
  background: linear-gradient(180deg, #FFDD6E, #F0B62E);
  border: 1px solid #C99417;
  box-shadow: 0 4px 0 #97700F, 0 8px 18px rgba(245,197,68,.26), inset 0 1px 0 rgba(255,255,255,.55);
}
.sml-engage-share:active { box-shadow: 0 1px 0 #97700F, 0 3px 8px rgba(245,197,68,.2), inset 0 1px 0 rgba(255,255,255,.55); }


/* ── 11 · quote board (corporate stat grid under the byline) ────────────── */
/*   <div class="sml-quote-board">
       <div><span class="sml-q-label">Last</span>
            <span class="sml-q-value">$8.25</span>
            <span class="sml-q-sub sml-up">+234.0%</span></div> ×N
     </div>
     <p class="sml-q-asof">Exchange · Company · timestamp</p>                */
.sml-quote-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--sml-line);
  border-top: 2px solid var(--sml-green);
  border-right: 0;
  border-bottom: 0;
  background: var(--sml-bg-card);
  margin: 0 auto 12px;
}
.sml-quote-board > div { transition: background .14s ease; }
.sml-quote-board > div:hover { background: rgba(56,245,138,.05); }
.sml-quote-board > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px 15px;
  border-right: 1px solid var(--sml-line);
  border-bottom: 1px solid var(--sml-line);
}
.sml-q-label {
  font-family: var(--sml-mono);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sml-text-faint);
}
.sml-q-value {
  font-family: var(--sml-mono);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--sml-text-bright);
  font-variant-numeric: tabular-nums;
}
.sml-q-sub { font-family: var(--sml-mono); font-size: 0.72rem; color: var(--sml-text-dim); }
.entry-content .sml-q-asof {
  font-family: var(--sml-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--sml-text-faint);
  margin: 0 auto 52px;
}\n\n/* ── WordPress production compatibility ──────────────────────────
   WordPress owns the post H1 outside .entry-content. Match the supplied
   specimen without adding a duplicate H1 to post_content. */
body.sml-article-template-page h1.wp-block-post-title {
  position: relative;
  width: min(100% - 48px, 720px);
  margin: 34px auto 20px !important;
  padding-top: 34px;
  font-family: var(--sml-display);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
  color: #fff;
  background: linear-gradient(180deg, #fff 55%, #93a8b3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.sml-article-template-page h1.wp-block-post-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sml-green), #12b463);
  box-shadow: 0 0 18px rgba(56,245,138,.55);
  animation: sml-coin-flip 3.2s cubic-bezier(.65,0,.35,1) infinite;
}
body.sml-article-template-page .entry-content { margin-block-start: 0 !important; }
body.sml-article-template-page .entry-content > p:empty { display: none !important; }
body.sml-article-template-page :is(.sml-news-article,.sml-alert-report),
body.sml-article-template-page :is(.sml-news-article,.sml-alert-report) p,
body.sml-article-template-page :is(.sml-news-article,.sml-alert-report) li { color: var(--sml-text); }
body.sml-article-template-page :is(.sml-news-article,.sml-alert-report) strong { color: #fff; }
body.sml-article-template-page :is(.sml-news-article,.sml-alert-report) em { color: #C7D3DD; }
body.sml-article-template-page :is(.post-navigation,.navigation.post-navigation,.wp-block-post-navigation-link,.sml-rh-btn,.sml-rh-panel,[class*="floating"][class*="next"],[class*="floating"][class*="prev"]) { display: none !important; }
body.sml-article-template-page .entry-content > :is(.sharedaddy,.sd-sharing-enabled,.jetpack-likes-widget-wrapper),
body.sml-article-template-page #comments,
body.sml-article-template-page .comment-respond { display: none !important; }
body.sml-article-template-page .sml-news-engagement {
  width: min(100% - 48px, 720px);
  margin: 0 auto 18px !important;
  padding: 12px 0 !important;
  border-top: 1px solid var(--sml-line);
  border-bottom: 1px solid var(--sml-line);
}
body.sml-article-template-page .sml-uads-header,
body.sml-article-template-page .wordads-ad-wrapper--top,
body.sml-article-template-page :is(.sml-news-article,.sml-alert-report) .sml-uads-slot { display: none !important; }
@media (max-width: 560px) {
  body.sml-article-template-page h1.wp-block-post-title,
  body.sml-article-template-page .sml-news-engagement { width: min(100% - 36px, 720px); }
}\n
