:root {
  --ink: #15191c;
  --text: #22282c;
  --muted: #667078;
  --paper: #f4f5f2;
  --panel: #ffffff;
  --panel-soft: #fafafa;
  --line: #d7dadd;
  --line-strong: #aab0b5;
  --red: #b51f2a;
  --teal: #14746f;
  --gold: #9b6a16;
  --blue: #275b7f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
p,
li,
dd,
td,
th,
.lead,
.badge {
  overflow-wrap: anywhere;
  word-break: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  background: var(--ink);
  color: #f4f1e8;
  padding: 28px min(5vw, 56px) 24px;
  border-bottom: 3px solid var(--red);
}

.site-header h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.site-header p:not(.eyebrow) {
  max-width: 680px;
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d7d2c6;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.home-main {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 26px 0 60px;
}

.latest-report {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 24px;
  align-items: center;
  padding: 0 0 26px;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.latest-media {
  display: block;
  max-width: 100%;
  min-width: 0;
  background: #e6e8e4;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
}

.latest-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.latest-report h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 800;
}

.latest-report p {
  margin: 12px 0 0;
  color: #3f474c;
  font-size: 14px;
  line-height: 1.7;
}

.archive-tools {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 18px;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.segmented button,
.archive-tools input {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font: 700 13px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  border-radius: 6px;
}

.segmented button {
  min-height: 32px;
  padding: 0 12px;
  cursor: pointer;
}

.segmented button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.archive-tools input {
  width: min(320px, 100%);
  min-height: 34px;
  padding: 0 12px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.archive-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.archive-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.archive-card a {
  display: grid;
  gap: 9px;
  height: 100%;
  padding: 12px;
}

.archive-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #e9ece7;
}

.archive-card span,
.archive-card time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.archive-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.archive-card p {
  margin: 0;
  color: #4c555b;
  font-size: 13px;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.market-row-list {
  display: grid;
  gap: 7px;
  margin-top: 4px;
}

.latest-report .market-row-list {
  margin-top: 14px;
}

.archive-card .market-row-list p,
.latest-report .market-row-list p {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(170, 176, 181, 0.34);
  color: #2c3338;
  font-size: 13px;
  line-height: 1.45;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}

.archive-card .market-row-list p:first-child,
.latest-report .market-row-list p:first-child {
  border-top: 0;
  padding-top: 0;
}

.market-row-list b {
  color: var(--teal);
  font-size: 14px;
  line-height: 1.45;
}

.data-point {
  color: var(--ink);
  font-weight: 900;
}

.article-hero .data-point {
  color: #f5f1e7;
}

.report-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  color: currentColor;
  font-size: 15px;
  line-height: 1;
  speak: never;
}

.article-hero {
  background: var(--ink);
  color: #f5f1e7;
  border-bottom: 3px solid var(--red);
}

.article-hero nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px min(5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-inner {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.article-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
  min-width: 0;
}

.article-title-block {
  min-width: 0;
  max-width: 100%;
}

.article-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 28px;
  line-height: 1.24;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-hero .lead {
  max-width: 820px;
  margin: 12px 0 0;
  color: #ddd8ca;
  font-size: 14px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.hero-actions,
.asset-row,
.decision-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.badge.warn {
  color: var(--red);
}

.badge.source {
  color: var(--gold);
}

.badge.asset {
  color: var(--blue);
}

.badge.trade {
  color: var(--ink);
  background: #f0f1ed;
}

.coin-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 1px 2px rgba(21, 25, 28, 0.16);
}

.coin-mark {
  display: block;
  transform: translateY(-0.5px);
}

.coin-eth-mark {
  width: 12px;
  height: 20px;
}

.eth-facet-1 { fill: #343434; }
.eth-facet-2 { fill: #8c8c8c; }
.eth-facet-3 { fill: #3c3c3b; }
.eth-facet-4 { fill: #8c8c8c; }
.eth-facet-5 { fill: #141414; }
.eth-facet-6 { fill: #393939; }

.coin-logo.mini {
  width: 18px;
  height: 18px;
  font-size: 11px;
  box-shadow: none;
}

.coin-logo.mini .coin-eth-mark {
  width: 8px;
  height: 13px;
}

.coin-logo.btc {
  background: #f7931a;
}

.coin-logo.eth {
  background: #fff;
  border: 1px solid var(--line-strong);
}

.coin-logo.sol {
  background: linear-gradient(145deg, #14f195, #9945ff);
}

.coin-logo.bnb {
  background: #f0b90b;
  color: #15191c;
}

.coin-logo.generic {
  background: var(--ink);
}

.asset-chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #2f3940;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.asset-chip b {
  font-size: 12px;
}

.status-pill.decision {
  border-color: rgba(181, 31, 42, 0.28);
  color: var(--red);
  background: rgba(181, 31, 42, 0.06);
}

.status-pill.confidence {
  border-color: rgba(20, 116, 111, 0.28);
  color: var(--teal);
  background: rgba(20, 116, 111, 0.07);
}

.status-pill.trade {
  color: var(--ink);
  background: #f4f5f2;
}

.confidence-meter {
  display: inline-grid;
  grid-template-columns: max-content 56px;
  gap: 8px;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(20, 116, 111, 0.28);
  border-radius: 999px;
  background: rgba(20, 116, 111, 0.07);
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.confidence-label b {
  color: var(--ink);
}

.confidence-track {
  position: relative;
  display: block;
  width: 56px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 116, 111, 0.18);
}

.confidence-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.direction-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.direction-chip.bearish {
  color: var(--red);
  background: rgba(181, 31, 42, 0.06);
  border-color: rgba(181, 31, 42, 0.26);
}

.direction-chip.bullish {
  color: var(--teal);
  background: rgba(20, 116, 111, 0.07);
  border-color: rgba(20, 116, 111, 0.26);
}

.direction-chip.neutral {
  color: var(--muted);
  background: #f6f7f4;
}

.report-cover {
  margin: 0;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #eef0eb;
}

.report-cover img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.report-cover figcaption {
  padding: 8px 10px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.cover-placeholder {
  display: grid;
  place-items: center;
  min-height: 160px;
  color: #596269;
  font-size: 13px;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(181, 31, 42, 0.08), transparent 35%),
    linear-gradient(315deg, rgba(20, 116, 111, 0.12), transparent 40%),
    #e9ece7;
}

.article-layout {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0 68px;
  min-width: 0;
}

.toc {
  position: sticky;
  top: 16px;
  align-self: start;
  display: grid;
  gap: 2px;
  padding-top: 2px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  max-width: 100%;
  min-width: 0;
}

.toc a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: #465057;
}

.toc a.active {
  color: var(--red);
}

.previous-link {
  margin-top: 12px;
  color: var(--red) !important;
}

.article-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.section-title {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.section-title h2,
.article-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 850;
}

.article-section h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.article-section p {
  margin: 0 0 12px;
  color: #2d3439;
  font-size: 14px;
  line-height: 1.78;
}

.view-grid,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 14px;
  min-width: 0;
}

.frank-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.view-card,
.asset-card,
.observation-card,
.structure-card,
.frank-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  min-width: 0;
}

.view-card h3 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

.view-card .asset-row {
  margin-top: 12px;
}

.card-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.frank-card {
  border-left: 4px solid var(--gold);
  display: block;
  width: 100%;
  margin: 0;
}

.frank-card:first-child {
  grid-column: auto;
  background: #fff;
}

.frank-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.frank-card p {
  margin: 10px 0 0;
  color: #344047;
}

.frank-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #344047;
  line-height: 1.68;
}

.markdown-body p,
.raw-subsection p,
.frank-body p {
  margin: 10px 0 0;
}

.markdown-body p:first-child,
.raw-subsection p:first-of-type,
.frank-body p:first-child {
  margin-top: 0;
}

.markdown-body ul,
.markdown-body ol,
.raw-subsection ul,
.raw-subsection ol,
.frank-body ul,
.frank-body ol {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #344047;
  line-height: 1.74;
}

.markdown-body li + li,
.raw-subsection li + li,
.frank-body li + li {
  margin-top: 6px;
}

.markdown-body h3,
.raw-subsection h3,
.frank-body h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 850;
}

.markdown-body strong,
.raw-subsection strong,
.frank-body strong {
  color: var(--ink);
  font-weight: 900;
}

.markdown-body a,
.raw-subsection a,
.frank-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.markdown-body code,
.raw-subsection code,
.frank-body code {
  padding: 1px 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f0f1ed;
  color: var(--ink);
  font: 12px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.card-body {
  position: relative;
}

.is-collapsible:not(.expanded) .card-body {
  max-height: 420px;
  overflow: hidden;
}

.is-collapsible:not(.expanded) .card-body::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 82%);
  pointer-events: none;
}

.card-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.card-toggle:hover {
  border-color: var(--teal);
  color: var(--teal);
}

dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 7px 12px;
  margin: 14px 0 0;
}

dt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

dd {
  margin: 0;
  color: #2d3439;
  line-height: 1.55;
}

.evidence-list,
.noise-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #344047;
  line-height: 1.68;
}

.asset-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.asset-title {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.symbol {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.asset-name {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.asset-chart {
  width: 100%;
  margin: 14px 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.level-grid span {
  min-height: 54px;
  padding: 9px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.level-grid .level-confidence {
  padding: 8px;
}

.level-grid .level-confidence .confidence-meter {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
}

.level-grid .level-confidence .confidence-track {
  width: 100%;
}

.level-grid b {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 13px;
  word-break: break-word;
}

.observation-card {
  border-left: 4px solid var(--teal);
}

.observation-card > span,
.structure-card > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.observation-card h3 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.36;
  font-weight: 850;
}

.chart-stack {
  display: grid;
  gap: 18px;
}

.chart-figure {
  margin: 0;
  max-width: 100%;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.chart-figure img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: #0e1115;
}

.chart-figure figcaption {
  padding: 14px 16px 16px;
  color: #394247;
  line-height: 1.65;
}

.chart-figure figcaption b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.chart-note {
  margin-bottom: 0;
  color: #4c555b;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 14px;
}

.structure-card {
  border-left: 4px solid var(--blue);
}

.structure-card > span {
  color: var(--blue);
  margin-bottom: 10px;
}

.source-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: 13px;
  table-layout: fixed;
}

.source-table th,
.source-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.source-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 560px), 1fr));
  gap: 14px;
  align-items: start;
}

.verification-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  align-self: start;
}

.verification-card.wide {
  grid-column: 1 / -1;
}

.verification-card span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.verification-card p {
  margin: 0;
}

.verification-card ul {
  margin: 0;
  padding-left: 0;
  line-height: 1.72;
  list-style: none;
}

.verification-card li {
  display: grid;
  grid-template-columns: 16px max-content minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
}

.verification-card.wide li {
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
}

.verification-card li + li {
  margin-top: 8px;
}

.verification-card li b {
  margin-right: 8px;
}

.verification-card li span {
  display: inline;
  margin: 0;
  color: #344047;
  font-size: inherit;
  font-weight: 500;
  min-width: 0;
  overflow-wrap: anywhere;
}

.raw-section {
  max-width: 900px;
}

.raw-subsection {
  padding: 0 0 18px;
  margin: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.raw-subsection:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.raw-subsection h2 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.28;
}

.archive-card[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .latest-report,
  .article-layout,
	  .article-header-grid,
	  .view-grid,
	  .asset-grid,
	  .structure-grid,
	  .frank-grid,
	  .verification-grid {
	    grid-template-columns: 1fr;
  }

  .frank-card:first-child,
  .verification-card.wide {
    grid-column: auto;
  }

  .toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    width: 100%;
  }

  .toc a {
    border-bottom: 0;
    padding: 5px 0;
  }

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 12px;
  }

  .site-header,
  .article-hero nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-main,
  .hero-inner,
  .article-layout {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .article-header-grid,
  .article-title-block,
	  .report-cover,
	  .report-cover img,
	  .view-grid,
	  .asset-grid,
	  .structure-grid,
	  .frank-grid {
	    max-width: 100%;
    min-width: 0;
  }

  .site-header h1,
  .article-hero h1 {
    font-size: 20px;
  }

  .latest-report h2 {
    font-size: 18px;
  }

	  .article-hero .lead,
	  .latest-report p,
	  .article-section p {
    font-size: 13px;
    line-height: 1.72;
  }

  .section-title h2,
  .article-section h2 {
    font-size: 18px;
  }

  .view-card h3,
  .article-section h3 {
    font-size: 15px;
  }

  .toc {
    font-size: 12px;
  }

  .badge {
    min-height: 22px;
    padding: 0 8px;
    font-size: 11px;
  }

  .archive-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .archive-grid,
  .level-grid {
    grid-template-columns: 1fr;
  }

	  .view-card,
	  .asset-card,
	  .observation-card,
	  .structure-card,
	  .frank-card {
	    padding: 14px;
  }

  .article-layout > article,
  .article-layout > aside,
  .article-section,
  .chart-figure,
  .source-table {
    min-width: 0;
    max-width: 100%;
  }
}
