/* blog.css — scoped to .post-content (single-post body) and .blog-grid
   (index). Distilled from chempirical's blog system; recoloured to use
   hexenwerkzeug's existing tokens (--bg, --surface, --text, --dim,
   --faint, --accent, --border) so nothing in base.css has to change. */

/* ─── Article wrapper ─────────────────────────────────────────── */
/* The shell is the layout container. When a TOC is present it forms
   a two-column grid (sticky vertical TOC | article body). Without a
   TOC, it collapses to a single centered article column with the
   normal article max-width. */
.post-shell {
  display: grid;
  grid-template-columns: minmax(0, 64rem);
  justify-content: center;
  max-inline-size: 64rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
.post-shell.has-toc {
  grid-template-columns: 14rem minmax(0, 64rem);
  column-gap: 3rem;
  max-inline-size: 81rem;
  padding-inline: 1.5rem;
}
@media (max-width: 980px) {
  .post-shell.has-toc {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1.25rem;
  }
}

.post-article {
  /* Width + horizontal centering live on .post-shell now. */
  max-inline-size: none;
  margin-inline: 0;
  padding: 0 0 6rem;
  min-inline-size: 0;
}

.post-article > header {
  margin-block: 2rem 4rem;
}
.post-article > header .post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-block-end: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dim);
}
.post-article > header .post-meta .sep { color: var(--border); }
.post-article > header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  text-wrap: balance;
}
.post-article > header .description {
  margin-block-start: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dim);
  max-inline-size: 60ch;
}

/* ─── Post content rhythm ─────────────────────────────────────── */
.post-content {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}
.post-content > * + * { margin-block-start: 1.5rem; }
.post-content > h2 + * { margin-block-start: 1rem; }

.post-content a {
  color: var(--text);
  text-decoration: none;
  border-block-end: 1px solid color-mix(in oklab, var(--dim) 50%, transparent);
  transition: border-color 120ms, color 120ms;
}
.post-content a:hover {
  color: var(--accent);
  border-block-end-color: var(--accent);
}

.post-content .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--dim);
  margin-block: 0 2rem;
}

.post-content h2 {
  margin-block: 3rem 0;
  padding-block-end: 0.5rem;
  border-block-end: 1px solid var(--border);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  scroll-margin-block-start: 5rem;
}
.post-content > h2:first-child { margin-block-start: 0; }

.post-content h3 {
  margin-block: 2rem 0;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  scroll-margin-block-start: 5rem;
}

.post-content ul, .post-content ol {
  padding-inline-start: 1.5rem;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li + li { margin-block-start: 0.4rem; }
.post-content li::marker { color: var(--faint); }

/* ─── Code blocks ─────────────────────────────────────────────── */
.post-content :not(pre) > code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.05em 0.4em;
  border-radius: 4px;
}
.post-content pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  overflow-x: auto;
  font: 0.85rem/1.65 var(--mono);
}
.post-content pre code { background: transparent; border: 0; padding: 0; color: var(--text); font-size: inherit; }

.code-figure { margin: 0; }
.code-figure figcaption {
  margin-block-start: 0.5rem;
  font-size: 0.78rem;
  color: var(--faint);
  text-align: center;
}

/* ─── Figure ──────────────────────────────────────────────────── */
.post-content figure:not(.code-figure):not(.table-figure) {
  margin: 0;
}
.post-content figure img {
  inline-size: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.post-content figure figcaption {
  margin-block-start: 0.75rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--faint);
}

/* ─── Table (compare) ─────────────────────────────────────────── */
.table-figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.table-figure table {
  inline-size: 100%;
  font-size: 0.88rem;
  border-collapse: collapse;
}
.table-figure thead { background: var(--surface); }
.table-figure th {
  text-align: start;
  padding: 0.65rem 1rem;
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dim);
}
.table-figure td {
  padding: 0.75rem 1rem;
  vertical-align: top;
  border-block-start: 1px solid var(--border);
}
/* When the first column is a short value (year, key), make it
   mono + narrow so the eye locks onto the chronology axis. */
.table-figure td:first-child {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--accent);
}
/* Row hover — handy for long tables (e.g. the emulator chronology)
   where the eye has to track across columns. */
.table-figure tbody tr {
  transition: background-color 120ms;
}
.table-figure tbody tr:hover {
  background: color-mix(in oklab, var(--surface) 60%, transparent);
}
.table-figure figcaption {
  background: var(--surface);
  border-block-start: 1px solid var(--border);
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  color: var(--faint);
}

/* ─── Blockquote ──────────────────────────────────────────────── */
.post-content blockquote {
  border-inline-start: 2px solid color-mix(in oklab, var(--text) 25%, transparent);
  padding-inline-start: 1.25rem;
  font-style: italic;
  color: color-mix(in oklab, var(--text) 85%, transparent);
}
.post-content blockquote footer {
  margin-block-start: 0.5rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--dim);
}

/* ─── Callout ─────────────────────────────────────────────────── */
.callout {
  border-inline-start: 4px solid var(--callout-bar, var(--border));
  background: var(--callout-bg, var(--surface));
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout .callout-title {
  font: 600 0.72rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--callout-fg, var(--dim));
  margin-block-end: 0.4rem;
}
.callout p { margin: 0; }
.callout-note    { --callout-bar: #60a5fa; --callout-bg: rgba(96,165,250,0.06);  --callout-fg: #93c5fd; }
.callout-warning { --callout-bar: #f59e0b; --callout-bg: rgba(245,158,11,0.06);  --callout-fg: #fbbf24; }
.callout-tip     { --callout-bar: #10b981; --callout-bg: rgba(16,185,129,0.06);  --callout-fg: #34d399; }
.callout-history { --callout-bar: #c084fc; --callout-bg: rgba(192,132,252,0.06); --callout-fg: #d8b4fe; }

/* ─── Floating TOC sidebar ─────────────────────────────────────
   Sticks to the left of the article body, scrolling along with the
   page. On narrow viewports the shell collapses to a single column
   and this aside renders inline above the article (natural source
   order). The list uses a vertical rail of items with a thin
   border-inline-start line so each entry reads as a step along the
   article's outline. */
.post-toc {
  position: sticky;
  inset-block-start: 5rem;
  align-self: start;
  max-block-size: calc(100vh - 6rem);
  overflow-y: auto;
  font-size: 0.875rem;
  min-inline-size: 0;
}
.post-toc-title {
  margin: 0 0 0.75rem;
  padding: 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
}
.post-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-inline-start: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.post-toc-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  margin-inline-start: -1px;
  border-inline-start: 2px solid transparent;
  color: var(--dim);
  text-decoration: none;
  transition: color 150ms, border-color 150ms;
  border-block: 0;
  border-inline-end: 0;
}
.post-toc-list a:hover,
.post-toc-list a:focus-visible {
  color: var(--text);
  border-inline-start-color: var(--border-strong);
}
.post-toc-list a[aria-current="true"] {
  color: var(--accent);
  border-inline-start-color: var(--accent);
}
.post-toc-name { font-weight: 500; min-inline-size: 0; }
.post-toc-year { font: 0.72rem var(--mono); color: var(--faint); font-variant-numeric: tabular-nums; }

@media (max-width: 980px) {
  .post-toc {
    position: static;
    max-block-size: none;
    padding-block: 0 0.5rem;
    border-block-end: 1px solid var(--border);
  }
}

/* Inline-TOC styles preserved for any legacy `{"type": "toc"}` that's
   still emitted into article flow (e.g. via a third-party render).
   Newly authored posts use the sidebar layout above. */
.toc {
  margin: 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.toc > h2 {
  margin-block: 0 1rem;
  padding-block-end: 0;
  border-block-end: 0;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dim);
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  column-gap: 1.5rem;
  row-gap: 0.4rem;
}
.toc-item a {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 0.5rem;
  align-items: baseline;
  padding-block: 0.3rem;
  border: 0;
  color: var(--text);
}
.toc-item a:hover { color: var(--accent); border: 0; }
.toc-name { font-weight: 500; }
.toc-year { font: 0.72rem var(--mono); color: var(--faint); font-variant-numeric: tabular-nums; }

/* ─── Hero timeline (article opener) ──────────────────────────── */
.post-content .timeline-hero {
  margin: 1rem 0 2.5rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--surface) 60%, transparent);
}
.post-content .timeline-hero svg {
  display: block;
  inline-size: 100%;
  block-size: auto;
}
.post-content .timeline-axis  { stroke: var(--border-strong); stroke-width: 1; }
.post-content .timeline-tick  { stroke: var(--border-strong); stroke-width: 1; }
.post-content .timeline-stem  { stroke: color-mix(in oklab, var(--text) 30%, transparent);
                                stroke-width: 1; stroke-dasharray: 2 3; }
.post-content .timeline-year  { font: 500 10px var(--mono); fill: var(--faint);
                                font-variant-numeric: tabular-nums; }
.post-content .timeline-node  { fill: var(--surface); stroke: color-mix(in oklab, var(--text) 55%, transparent);
                                stroke-width: 1.25; transition: fill 160ms, stroke 160ms; }
.post-content .timeline-pill  { fill: var(--surface); stroke: var(--border-strong); stroke-width: 1;
                                transition: stroke 160ms, fill 160ms; }
.post-content .timeline-label { font: 500 11px var(--sans); fill: var(--text); }

/* Kind colour tints — stroke on the node + pill so the type is
   readable at a glance. The label fill stays neutral. */
.post-content .timeline-kind-desktop  .timeline-node,
.post-content .timeline-kind-desktop  .timeline-pill { stroke: var(--cyan); }
.post-content .timeline-kind-hw       .timeline-node,
.post-content .timeline-kind-hw       .timeline-pill { stroke: var(--amber); }
.post-content .timeline-kind-browser  .timeline-node,
.post-content .timeline-kind-browser  .timeline-pill { stroke: var(--purple); }
.post-content .timeline-kind-us       .timeline-node { fill: color-mix(in oklab, var(--accent) 35%, var(--surface));
                                                       stroke: var(--accent); }
.post-content .timeline-kind-us       .timeline-pill { fill: color-mix(in oklab, var(--accent) 14%, var(--surface));
                                                       stroke: var(--accent); }
.post-content .timeline-kind-us       .timeline-label{ fill: var(--accent); }

/* Hover & focus — slight lift on the node + brighten pill. */
.post-content .timeline-hero a { border: 0; cursor: pointer; }
.post-content .timeline-hero a:hover .timeline-node,
.post-content .timeline-hero a:focus-visible .timeline-node {
  fill: color-mix(in oklab, var(--accent) 25%, var(--surface));
}
.post-content .timeline-hero a:hover .timeline-pill,
.post-content .timeline-hero a:focus-visible .timeline-pill {
  fill: var(--elevated);
}

/* Enter animation — stems wipe in (dashoffset), nodes pop, pills fade.
   Avoid animating `transform` on the label <g> — that element already
   carries an SVG transform attribute for positioning, which a CSS
   transform animation would clobber. Opacity-only there. */
@keyframes tl-stem-in { from { stroke-dashoffset: 60; opacity: 0; } to { stroke-dashoffset: 0; opacity: 1; } }
@keyframes tl-pop     { from { r: 0; opacity: 0; }                    to { r: 5; opacity: 1; } }
@keyframes tl-fade    { from { opacity: 0; }                          to { opacity: 1; } }
.post-content .timeline-hero .timeline-stem  { animation: tl-stem-in 600ms cubic-bezier(0.34, 1.1, 0.6, 1) both; }
.post-content .timeline-hero .timeline-node  { animation: tl-pop 520ms cubic-bezier(0.34, 1.56, 0.64, 1) both 80ms; }
.post-content .timeline-hero .timeline-pill,
.post-content .timeline-hero .timeline-label { animation: tl-fade 480ms ease-out both 240ms; }
@media (prefers-reduced-motion: reduce) {
  .post-content .timeline-hero .timeline-stem,
  .post-content .timeline-hero .timeline-node,
  .post-content .timeline-hero .timeline-pill,
  .post-content .timeline-hero .timeline-label { animation: none; }
}

/* ─── Footnotes ───────────────────────────────────────────────── */
.paragraph-footnotes {
  margin: 0;
  padding: 0.625rem 1rem;
  border-inline-start: 2px solid var(--border);
  background: color-mix(in oklab, var(--surface) 60%, transparent);
  border-radius: 0 4px 4px 0;
  font-size: 0.84rem;
  line-height: 1.55;
}
.paragraph-footnotes .footnote {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  column-gap: 0.5rem;
  margin: 0;
}
.paragraph-footnotes .footnote + .footnote { margin-block-start: 0.35rem; }
.paragraph-footnotes .fn-num {
  color: var(--faint);
  font-family: var(--mono);          /* dynamic numeric */
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: end;
}

/* ─── Blog index — chempirical's linear /now-style card grid ───
   Page max-width matches the article body (64rem). The timeline
   rail is intentionally compact (56px column + 1rem gap) so the
   cards keep almost all of the page's inline space — they end up
   only marginally narrower than the same content read inside an
   article. */
.blog-list-page {
  max-inline-size: 64rem;
  margin-inline: auto;
  padding: 4rem 1.5rem 6rem;
}
.blog-list-head { margin-block-end: 3rem; }
.blog-list-head h1 {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}
.blog-list-head p {
  margin-block-start: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--dim);
  max-inline-size: 60ch;
}

/* ─── Vertical-timeline list ─────────────────────────────────────
   Layout: a 1-px rail down the left with month/year labels and
   bullets aligned to each post's published_at, then full-row cards
   stacked on the right. The rail is a single ::before on the <ol>
   so it stays continuous regardless of how many entries there are.
   Each entry fades in with a staggered delay (CSS custom prop --idx
   set per row). */
.blog-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.blog-timeline::before {
  content: '';
  position: absolute;
  inset-block-start: 1.5rem;
  inset-block-end:   1.5rem;
  inset-inline-start: 62px;          /* rail x — matches rail col width + half-gap */
  inline-size: 2px;
  border-radius: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    color-mix(in oklab, var(--text) 18%, transparent) 24px,
    color-mix(in oklab, var(--text) 18%, transparent) calc(100% - 24px),
    transparent 100%);
}

.blog-tl-entry {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 1rem;
  position: relative;
  padding-block: 1.75rem;
  opacity: 0;
  transform: translateY(8px);
  animation: blog-tl-in 520ms cubic-bezier(0.34, 1.1, 0.6, 1) both;
  animation-delay: calc(var(--idx, 0) * 90ms + 120ms);
}
@keyframes blog-tl-in {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .blog-tl-entry { animation: none; opacity: 1; transform: none; }
}

.blog-tl-rail {
  position: relative;
  text-align: end;
  padding-block-start: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  user-select: none;
}
.blog-tl-month {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-transform: lowercase;
}
.blog-tl-year {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}
/* Bullet — sits on the rail line, gently breathes via box-shadow.
   On entry hover, the bullet fills + the shadow halo intensifies. */
.blog-tl-bullet {
  position: absolute;
  inset-inline-end: -13px;
  inset-block-start: 0.55rem;
  inline-size: 12px;
  block-size: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 35%, transparent);
  transition: background 200ms, box-shadow 220ms ease-out;
}
.blog-tl-entry:hover .blog-tl-bullet,
.blog-tl-entry:focus-within .blog-tl-bullet {
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 22%, transparent);
}
@keyframes blog-tl-pulse {
  0%, 100% { box-shadow: 0 0 0 0   color-mix(in oklab, var(--accent) 30%, transparent); }
  50%      { box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 10%, transparent); }
}
.blog-tl-entry:first-child .blog-tl-bullet {
  animation: blog-tl-pulse 2.8s ease-in-out infinite 1s;
}
@media (prefers-reduced-motion: reduce) {
  .blog-tl-entry:first-child .blog-tl-bullet { animation: none; }
}

/* Card row — image left (compact), text right. Stacks on narrow. */
.blog-card-row {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  column-gap: 1.75rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--surface) 50%, transparent);
  text-decoration: none;
  color: var(--text);
  transition: border-color 200ms, transform 220ms cubic-bezier(0.34, 1.2, 0.6, 1),
              background-color 200ms, box-shadow 200ms;
}
.blog-card-row:hover,
.blog-card-row:focus-visible {
  border-color: color-mix(in oklab, var(--accent) 55%, var(--border));
  background: color-mix(in oklab, var(--surface) 80%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px color-mix(in oklab, var(--accent) 35%, transparent);
}
@media (max-width: 720px) {
  .blog-card-row { grid-template-columns: 1fr; row-gap: 1rem; }
}

/* Card: transparent, no border, no shadow — vertical rhythm is the
   only layout. 23px image → title → 7px desc → 23px meta. */
.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--text);
}

.blog-card-image {
  aspect-ratio: 400 / 225;
  inline-size: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: color-mix(in oklab, var(--surface) 80%, transparent);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 200ms, background-color 200ms;
}
/* When stacked inside a flex .blog-card (legacy), the image still
   wants spacing under it. The new row card uses grid gap instead. */
.blog-card .blog-card-image { margin-block-end: 1.4375rem; }

.blog-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-inline-size: 0;
  justify-content: center;
}
.blog-card:hover .blog-card-image {
  border-color: color-mix(in oklab, var(--text) 30%, transparent);
  background: color-mix(in oklab, var(--surface) 60%, transparent);
}
.blog-card-image-inner { inline-size: 100%; block-size: 100%; }

/* Card "sparkline" — reuses the SVG primitives for visual unity.   */
.bc-axis  { stroke: var(--border);    stroke-width: 1; }
.bc-stem  { stroke: color-mix(in oklab, var(--text) 35%, transparent);
            stroke-width: 1; stroke-dasharray: 2 2; }
.bc-node  { fill: var(--surface); stroke: color-mix(in oklab, var(--text) 55%, transparent);
            stroke-width: 1.25; }
.bc-node[data-highlight="true"] {
            fill: color-mix(in oklab, var(--accent) 35%, var(--surface));
            stroke: var(--accent); }
.bc-pill  { fill: var(--surface); stroke: var(--border); stroke-width: 1; }
.bc-label { font: 500 12px var(--sans); fill: var(--text); }
.bc-label-sm { font: 500 10px var(--sans); fill: var(--dim); }
.bc-tick  { font: 11px var(--mono); fill: var(--faint); font-variant-numeric: tabular-nums; }
.blog-card:hover .bc-node { fill: var(--elevated); }
.blog-card:hover .bc-node[data-highlight="true"] {
            fill: color-mix(in oklab, var(--accent) 50%, var(--elevated)); }

.blog-card-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.015em;
  color: var(--text);
  transition: color 200ms;
}
.blog-card:hover .blog-card-title { color: color-mix(in oklab, var(--text) 80%, transparent); }

.blog-card-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--dim);
}
.blog-card-row .blog-card-title { margin: 0; }
.blog-card-row .blog-card-meta  { margin-block-start: 0.25rem; }
.blog-card-meta time { font-variant-numeric: tabular-nums; }
.blog-card-meta-tag  { text-transform: capitalize; }
.blog-card-meta-sep  { color: var(--faint); }
.blog-card-meta-arrow {
  inline-size: 11px;
  block-size: 11px;
  margin-inline-start: 0.25rem;
  opacity: 0.7;
  transition: transform 200ms, opacity 200ms;
}
.blog-card:hover .blog-card-meta-arrow { transform: translateX(2px); opacity: 1; }
