/* ─────────────────────────────────────────────
   analyst.lab — main.css
   ───────────────────────────────────────────── */

:root {
  --bg:          #0a0c0f;
  --bg2:         #0f1318;
  --bg3:         #141a21;
  --border:      #1e2730;
  --border2:     #243040;
  --text:        #c8d6e5;
  --text-dim:    #5a7a9a;
  --text-dimmer: #2e4a60;
  --accent:      #00e5a0;
  --accent2:     #00b87a;
  --accent-glow: rgba(0, 229, 160, 0.12);
  --amber:       #ffaa00;
  --red:         #ff4455;
  --mono:        'JetBrains Mono', monospace;
  --sans:        'Syne', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Scanlines */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 9999;
}

/* Noise */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 9998;
}

/* ─── TOPBAR ──────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.topbar-logo {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.topbar-logo .prompt { color: var(--text-dim); }

.cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--accent);
  animation: blink 1.1s step-end infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.topbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
}

.topbar-nav a {
  display: block;
  padding: 0 16px;
  height: 52px;
  line-height: 52px;
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  border-left: 1px solid var(--border);
}

.topbar-nav a:hover { color: var(--accent); background: var(--accent-glow); }
.topbar-nav a.active { color: var(--accent); }

/* ─── SECTION WRAPPER ────────────────────── */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 2rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.section-title::before { content: '# '; color: var(--accent); }

.section-link {
  font-size: 11px;
  color: var(--text-dimmer);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.section-link:hover { color: var(--accent); }

/* ─── HERO ───────────────────────────────── */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 2rem 60px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--text-dimmer);
}

.hero-title {
  font-family: var(--sans);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff;
}

.hero-title .accent  { color: var(--accent); }
.hero-title .line2   { color: var(--text-dimmer); font-weight: 400; }

.hero-bio {
  max-width: 540px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-bio strong { color: var(--text); font-weight: 500; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: 1px solid var(--border2);
  color: var(--text-dim);
  border-radius: 2px;
  text-transform: uppercase;
}

.tag.green { border-color: var(--accent2); color: var(--accent); }
.tag.amber { border-color: #664400; color: var(--amber); }
.tag.red   { border-color: #662233; color: var(--red); }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary { background: var(--accent); color: #000; font-weight: 700; }
.btn-primary:hover { background: #fff; box-shadow: 0 0 24px rgba(0,229,160,0.3); }
.btn-ghost { background: transparent; color: var(--text-dim); border: 1px solid var(--border2); }
.btn-ghost:hover { color: var(--text); border-color: var(--text-dim); }

/* Stat strip */
.stat-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  margin: 60px 0 0;
}

.stat {
  flex: 1;
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

/* ─── REPORT CARDS ───────────────────────── */
.reports-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.report-card {
  background: var(--bg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 0 20px;
  align-items: start;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.report-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.2s;
}

.report-card:hover { background: var(--bg2); }
.report-card:hover::before { background: var(--accent); }
.report-card.severity-critical::before { background: var(--red); }
.report-card.severity-high::before    { background: var(--amber); }
.report-card.severity-medium::before  { background: #4488ff; }

.report-index { font-size: 11px; color: var(--text-dimmer); margin-top: 3px; }

.report-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.2s;
}

.report-card:hover .report-title { color: #fff; }

.report-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.report-date   { font-size: 11px; color: var(--text-dimmer); }
.report-family { font-size: 11px; color: var(--text-dim); }

.report-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.report-tag {
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

.report-tag.stealer    { background: rgba(255,68,85,0.12);  color: #ff6677; border: 1px solid rgba(255,68,85,0.2); }
.report-tag.rat        { background: rgba(255,170,0,0.1);   color: #ffaa00; border: 1px solid rgba(255,170,0,0.2); }
.report-tag.ransomware { background: rgba(68,85,255,0.12);  color: #8899ff; border: 1px solid rgba(68,85,255,0.2); }
.report-tag.loader     { background: rgba(0,229,160,0.08);  color: #00e5a0; border: 1px solid rgba(0,229,160,0.15); }
.report-tag.dropper    { background: rgba(180,100,255,0.1); color: #cc88ff; border: 1px solid rgba(180,100,255,0.2); }
.report-tag.rootkit    { background: rgba(255,68,85,0.15);  color: #ff4455; border: 1px solid rgba(255,68,85,0.25); }
.report-tag.backdoor   { background: rgba(255,170,0,0.12);  color: #ffcc44; border: 1px solid rgba(255,170,0,0.25); }
.report-tag.worm       { background: rgba(68,200,255,0.1);  color: #44ccff; border: 1px solid rgba(68,200,255,0.2); }

.report-severity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 3px;
}

.sev-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sev-critical { color: var(--red); }
.sev-critical .sev-dot { background: var(--red);   box-shadow: 0 0 6px var(--red); }
.sev-high     { color: var(--amber); }
.sev-high .sev-dot     { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.sev-medium   { color: #4488ff; }
.sev-medium .sev-dot   { background: #4488ff; }
.sev-low      { color: var(--text-dim); }
.sev-low .sev-dot      { background: var(--text-dim); }

/* ─── TOOLS GRID ─────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
}

.tool-card {
  background: var(--bg);
  padding: 20px 24px;
  transition: background 0.2s;
}

.tool-card:hover { background: var(--bg2); }
.tool-category { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.tool-name     { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.tool-desc     { font-size: 11px; color: var(--text-dimmer); line-height: 1.6; }

/* ─── TERMINAL ───────────────────────────── */
.terminal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.terminal-bar {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot:nth-child(1) { background: #ff5f56; }
.t-dot:nth-child(2) { background: #ffbd2e; }
.t-dot:nth-child(3) { background: #27c93f; }

.terminal-title { font-size: 11px; color: var(--text-dimmer); margin-left: 8px; }

.terminal-body { padding: 24px 28px; font-size: 12.5px; line-height: 1.9; }

.t-prompt  { color: var(--accent); }
.t-cmd     { color: var(--text); }
.t-comment { color: var(--text-dimmer); }
.t-output  { color: var(--text-dim); padding-left: 16px; }
.t-key     { color: var(--amber); }
.t-val     { color: #88ddff; }
.t-blank   { height: 12px; }

/* ─── ABOUT GRID ─────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.about-block { background: var(--bg); padding: 28px 32px; }

.about-block-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-block p { font-size: 12.5px; color: var(--text-dim); line-height: 1.85; }
.about-block p + p { margin-top: 12px; }
.about-block strong { color: var(--text); font-weight: 500; }
.about-block a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.about-block a:hover { color: var(--accent); }

.cert-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
}

.cert-list li::before { content: '→'; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

.wip {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--amber);
  border: 1px solid rgba(255,170,0,0.25);
  padding: 1px 6px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ─── EMPTY STATE ────────────────────────── */
.empty-state {
  padding: 40px 0;
  font-size: 13px;
  color: var(--text-dimmer);
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dimmer);
}

footer a { color: var(--text-dimmer); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 20px; }

/* ────────────────────────────────────────────
   SINGLE REPORT PAGE
   ──────────────────────────────────────────── */

.report-page { padding-top: 48px; }

.back-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}

.back-link:hover { color: var(--accent); }

.report-page-title {
  font-family: var(--sans);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.report-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.info-item {
  padding: 12px 20px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.info-item:last-child { border-right: none; }

.info-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 4px;
}

.info-val {
  font-size: 12px;
  color: var(--text);
}

.info-val.hash {
  font-size: 10px;
  color: var(--text-dim);
  word-break: break-all;
}

/* IOC Box */
.ioc-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 20px 24px;
  margin: 32px 0;
}

.ioc-box-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.ioc-grid { display: flex; flex-direction: column; gap: 8px; }

.ioc-row { display: flex; align-items: baseline; gap: 16px; }

.ioc-type {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  min-width: 60px;
  flex-shrink: 0;
}

.ioc-val {
  font-size: 12px;
  color: #88ddff;
  font-family: var(--mono);
  word-break: break-all;
}

/* MITRE Box */
.mitre-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 20px 24px;
  margin: 24px 0 32px;
}

.mitre-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.mitre-grid { display: flex; flex-wrap: wrap; gap: 8px; }

.mitre-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,170,0,0.07);
  border: 1px solid rgba(255,170,0,0.2);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}

.mitre-tag:hover { background: rgba(255,170,0,0.14); }
.mitre-id   { font-size: 11px; color: var(--amber); font-weight: 700; }
.mitre-name { font-size: 11px; color: var(--text-dim); }

/* Report Markdown Content */
.report-content {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 720px;
  overflow-x: hidden;
}

.report-content h2 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.report-content h2::before { content: '## '; color: var(--accent); font-family: var(--mono); font-size: 14px; }

.report-content h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
}

.report-content p { margin-bottom: 18px; }

.report-content strong { color: var(--text); font-weight: 600; }

.report-content a { color: var(--accent); text-decoration: none; }
.report-content a:hover { text-decoration: underline; }

.report-content code {
  font-family: var(--mono);
  font-size: 12px;
  background: var(--bg3);
  color: #88ddff;
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.report-content pre {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 24px 0;
  max-width: 100%;
}

.report-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.8;
}

.report-content ul, .report-content ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

.report-content li { margin-bottom: 6px; }

.report-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  background: var(--bg2);
  margin: 24px 0;
  color: var(--text-dim);
  font-style: italic;
}

.report-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
  overflow-x: auto;
  display: block;
}

.report-content th {
  background: var(--bg3);
  color: var(--text);
  font-weight: 600;
  padding: 10px 16px;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-content td {
  padding: 10px 16px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.report-content tr:hover td { background: var(--bg2); }

/* Report navigation */
.report-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  max-width: 48%;
}

.nav-next { align-items: flex-end; margin-left: auto; }

.nav-dir  { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dimmer); }

.nav-title {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
  line-height: 1.4;
}

.nav-link:hover .nav-title { color: var(--accent); }

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label   { animation: fadeUp 0.5s ease both; }
.hero-title   { animation: fadeUp 0.5s ease 0.1s both; }
.hero-bio     { animation: fadeUp 0.5s ease 0.2s both; }
.hero-tags    { animation: fadeUp 0.5s ease 0.25s both; }
.hero-actions { animation: fadeUp 0.5s ease 0.3s both; }
.stat-strip   { animation: fadeUp 0.5s ease 0.4s both; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 640px) {
  .topbar-nav a    { padding: 0 10px; font-size: 11px; }
  .about-grid      { grid-template-columns: 1fr; }
  .stat-strip      { flex-wrap: wrap; }
  .stat            { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
  .report-card     { grid-template-columns: 1fr; gap: 8px; }
  .report-index    { display: none; }
  .report-info-strip { flex-direction: column; }
  .info-item       { border-right: none; border-bottom: 1px solid var(--border); }
  .report-nav      { flex-direction: column; }
  .nav-link        { max-width: 100%; }
}

/* ────────────────────────────────────────────
   BLOG
   ──────────────────────────────────────────── */

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.blog-card {
  background: var(--bg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.2s;
}

.blog-card:hover { background: var(--bg2); }
.blog-card:hover::before { background: var(--accent); }

.blog-card-left { flex: 1; min-width: 0; }

.blog-date {
  font-size: 11px;
  color: var(--text-dimmer);
  display: block;
  margin-bottom: 6px;
}

.blog-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.2s;
}

.blog-card:hover .blog-title { color: #fff; }

.blog-desc {
  font-size: 12px;
  color: var(--text-dimmer);
  line-height: 1.6;
  margin-bottom: 10px;
}

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

.blog-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid var(--border2);
  color: var(--text-dimmer);
  border-radius: 2px;
}

.blog-arrow {
  font-size: 18px;
  color: var(--text-dimmer);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.blog-card:hover .blog-arrow { color: var(--accent); transform: translateX(4px); }

/* Blog single post */
.blog-page { padding-top: 48px; }

.blog-post-header {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-read-time {
  font-size: 11px;
  color: var(--text-dimmer);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.blog-post-title {
  font-family: var(--sans);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.blog-post-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 600px;
}

.blog-content { margin-top: 0; padding-top: 0; border-top: none; overflow-x: hidden; }
.blog-content img { max-width: 100%; height: auto; display: block; }
.blog-content > * { max-width: 100%; overflow-x: auto; }

table td {
    word-break: break-all;
}