/* =========================================================================
   VibeMyWay blog
   ──────────────
   Editorial layer on top of tokens.css / site.css. Light, warm, generously
   spaced. Fauna One serves as the editorial display face on the blog
   (it's the body face elsewhere); Geologica handles meta, eyebrows, tags.
   ========================================================================= */

.blog-body {
  background: var(--surface);
}

.blog-main {
  padding-bottom: clamp(var(--sp-3xl), 8vw, var(--sp-4xl));
}

/* ─── Page header (index + tag pages) ────────────────────────────────── */

.blog-header {
  padding: clamp(var(--sp-3xl), 9vw, calc(var(--sp-4xl) + var(--sp-xl)))
           clamp(var(--sp-lg), 5vw, var(--sp-4xl))
           clamp(var(--sp-2xl), 5vw, var(--sp-3xl));
  background: var(--surface);
}

.blog-header-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-tag-back,
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-tertiary);
  text-decoration: none;
  margin-bottom: var(--sp-lg);
  transition: color var(--dur-fast) var(--ease-out);
}
.blog-tag-back:hover,
.post-back:hover {
  color: var(--brand);
}

.blog-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-md);
}

.blog-h1 {
  font-family: var(--font-display);  /* Fauna One serif — editorial accent */
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw + 0.5rem, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 var(--sp-md);
  max-width: 18ch;
}

.blog-h1--tag {
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
  flex-wrap: wrap;
}

.blog-h1-count {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.25rem);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-tertiary);
  vertical-align: super;
  line-height: 1;
  margin-left: 0.05em;
  margin-top: 0.4em;
}

.blog-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.0625rem);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 56ch;
  margin: 0;
}

/* ─── Card grid ───────────────────────────────────────────────────────── */

.blog-grid-wrap {
  padding: var(--sp-2xl) clamp(var(--sp-lg), 5vw, var(--sp-4xl)) clamp(var(--sp-2xl), 6vw, var(--sp-4xl));
  background: var(--surface);
}

.blog-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(var(--sp-xl), 3vw, var(--sp-2xl)) clamp(var(--sp-md), 2vw, var(--sp-xl));
  align-items: start;
}

/* Featured-first variant (index only) — the first card spans 2 columns
   when there's room. Uses :first-child + grid-column-end span. */
.blog-grid--featured-first {
  /* 3-col baseline on desktop so the featured card has room to span 2 */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (min-width: 880px) {
  .blog-grid--featured-first {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid--featured-first .bcard--featured {
    grid-column: span 2;
  }
}
@media (min-width: 1280px) {
  .blog-grid--featured-first {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── Card ─────────────────────────────────────────────────────────────── */

.bcard {
  position: relative;
  background: transparent;
}

.bcard-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
}
.bcard-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 6px;
  border-radius: 18px;
}

.bcard-figure {
  margin: 0 0 var(--sp-md);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-container);
  aspect-ratio: 16 / 10;
}
.bcard--featured .bcard-figure {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
}

.bcard-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 200ms var(--ease-out);
}
.bcard-link:hover .bcard-figure img,
.bcard-link:focus-visible .bcard-figure img {
  transform: scale(1.025);
  filter: saturate(1.04) brightness(1.02);
}

/* Typographic fallback when no image */
.bcard-typo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background:
    radial-gradient(circle at 30% 25%, var(--brand-light), transparent 55%),
    var(--surface-alt);
  color: var(--brand);
}
.bcard-typo-mark {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.85;
}

.bcard-body {
  padding: 0 2px;
}

.bcard-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1vw + 1.0625rem, 1.625rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 var(--sp-sm);
  /* allow line breaks; cap at ~3 lines for non-featured cards */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bcard--featured .bcard-title {
  font-size: clamp(1.625rem, 2vw + 1rem, 2.375rem);
  -webkit-line-clamp: 3;
}

.bcard-link:hover .bcard-title,
.bcard-link:focus-visible .bcard-title {
  color: var(--brand);
}

.bcard-excerpt {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 var(--sp-md);
  max-width: 52ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bcard-foot {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-display);
}

.bcard-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand);
  background: var(--brand-light);
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out);
}

.bcard-date {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}

/* ─── "Browse by tag" strip on the index ───────────────────────────────── */

.blog-tagstrip {
  border-top: 1px solid var(--border-subtle);
  margin-top: var(--sp-xl);
  padding: clamp(var(--sp-2xl), 5vw, var(--sp-3xl)) clamp(var(--sp-lg), 5vw, var(--sp-4xl));
  background: var(--surface-alt);
}

.blog-tagstrip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: var(--sp-xl);
  align-items: baseline;
}
@media (max-width: 720px) {
  .blog-tagstrip-inner { grid-template-columns: 1fr; gap: var(--sp-md); }
}

.blog-tagstrip-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0;
}

.blog-tagstrip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.blog-tagstrip-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition:
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}
.blog-tagstrip-pill:hover,
.blog-tagstrip-pill:focus-visible {
  background: var(--brand-light);
  border-color: var(--brand-light);
  color: var(--brand);
}

/* ─── Empty state ──────────────────────────────────────────────────────── */

.blog-empty {
  padding: var(--sp-3xl) clamp(var(--sp-lg), 5vw, var(--sp-4xl)) var(--sp-4xl);
}
.blog-empty-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-xl);
  background: var(--surface-alt);
  border-radius: 18px;
  text-align: center;
}
.blog-empty-msg {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.5vw + 1rem, 1.625rem);
  color: var(--text-secondary);
  margin: 0;
}

/* =========================================================================
   POST PAGE
   Editorial anatomy: back link · centered hero band · wide hero ·
   byline + share · centered prose · end-of-post tag row · recirc · CTA.
   ========================================================================= */

/* Outer container — wider than the prose column so the hero and recirc/CTA
   bands can breathe. Inner sections set their own max-widths. */
.post {
  --post-content-w: 1080px;     /* hero, byline row, tag row, recirc, CTA */
  --post-prose-w: 720px;        /* centered prose body */
  max-width: var(--post-content-w);
  margin: 0 auto;
  padding: clamp(var(--sp-xl), 4vw, var(--sp-3xl)) clamp(var(--sp-lg), 5vw, var(--sp-2xl)) var(--sp-3xl);
}

/* Back link sticks to the top-left, above the centered anatomy. */
.post-back-wrap {
  margin-bottom: clamp(var(--sp-xl), 4vw, var(--sp-3xl));
}

/* ── Header (centered) ───────────────────────────────────────────────── */

.post-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto clamp(var(--sp-2xl), 4vw, var(--sp-3xl));
}

.post-eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: var(--sp-lg);
}
.post-eyebrow-sep {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: var(--text-tertiary);
  opacity: 0.5;
}
.post-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand);
  background: var(--brand-light);
  padding: 3px 10px;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out);
}
.post-eyebrow-tag:hover { background: var(--surface-container); }
.post-eyebrow-date,
.post-eyebrow-read {
  font-variant-numeric: tabular-nums;
}

.post-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 3.5vw + 1rem, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--text-primary);
  margin: 0 0 var(--sp-lg);
  text-wrap: balance;
}

.post-lede {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.1875rem);
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 56ch;
  text-wrap: pretty;
}

/* ── Hero image (wider than prose) ───────────────────────────────────── */

.post-hero {
  margin: 0 auto clamp(var(--sp-2xl), 4vw, var(--sp-3xl));
  max-width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface-container);
  aspect-ratio: 16 / 9;
}
.post-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Byline + share row ──────────────────────────────────────────────── */

.post-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  margin: 0 auto clamp(var(--sp-2xl), 4vw, var(--sp-3xl));
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.post-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  min-width: 0;
}
.post-author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: var(--surface-alt);
  flex-shrink: 0;
}
.post-author-avatar svg {
  width: 20px;
  height: auto;
}
.post-author-meta { line-height: 1.25; min-width: 0; }
.post-author-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.post-author-role {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-tertiary);
}

.post-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.post-share-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}
.post-share-btn:hover,
.post-share-btn:focus-visible {
  background: var(--brand-light);
  border-color: var(--brand-light);
  color: var(--brand);
  outline: none;
}
.post-share-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Copy-link icon swap: default → checkmark on .is-copied (200ms cross-fade) */
.post-share-copy { position: relative; }
.post-share-copy-default,
.post-share-copy-done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 180ms var(--ease-out);
}
.post-share-copy-done {
  position: absolute;
  inset: 0;
  opacity: 0;
  color: var(--brand);
}
.post-share-copy.is-copied .post-share-copy-default { opacity: 0; }
.post-share-copy.is-copied .post-share-copy-done    { opacity: 1; }
.post-share-copy.is-copied {
  background: var(--brand-light);
  border-color: var(--brand-light);
}

/* Visually-hidden but available to assistive tech. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Prose ─── (centered, slightly tighter measure than before) ──────── */
.post-prose {
  font-family: var(--font-body);
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--text-primary);
  max-width: var(--post-prose-w);
  margin: 0 auto;
}

.post-prose > * + * { margin-top: 1.1em; }
.post-prose h2,
.post-prose h3 {
  font-family: var(--font-display);
  letter-spacing: -0.012em;
  color: var(--text-primary);
  line-height: 1.2;
}
.post-prose h2 {
  font-size: clamp(1.5rem, 1.5vw + 1rem, 1.875rem);
  font-weight: 700;
  margin-top: 1.8em;
  margin-bottom: 0.3em;
}
.post-prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.3em;
}
.post-prose p {
  margin: 0.3em 0 0 0;
}
.post-prose a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.post-prose a:hover { color: var(--brand-hover); }
.post-prose strong { color: var(--text-primary); font-weight: 600; }
.post-prose em { font-style: italic; }
.post-prose blockquote {
  /* No side-stripe border (brand ban). Quotation lives in the indent
     and the lighter color weight. */
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--text-secondary);
  padding: var(--sp-md) 0 var(--sp-md) clamp(var(--sp-lg), 4vw, var(--sp-2xl));
  margin: 1.6em 0;
  position: relative;
}
.post-prose blockquote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-body);
  font-size: 3rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.6;
}
.post-prose ul,
.post-prose ol {
  padding-left: 1.25em;
}
.post-prose li + li { margin-top: 0.4em; }
.post-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--surface-alt);
  padding: 2px 6px;
  border-radius: 4px;
}
.post-prose pre {
  background: var(--surface-alt);
  padding: var(--sp-lg);
  border-radius: 10px;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.6;
}
.post-prose pre code {
  background: none;
  padding: 0;
}
.post-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.6em auto;
  border-radius: 12px;
}
.post-prose hr {
  border: 0;
  border-top: 1px solid var(--border-subtle);
  margin: 2.4em 0;
}
.post-prose figure {
  margin: 1.6em 0;
}
.post-prose figcaption {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: var(--sp-sm);
}

/* ── End-of-post tag row ─────────────────────────────────────────────── */
.post-tagrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--post-prose-w);
  margin: clamp(var(--sp-2xl), 4vw, var(--sp-3xl)) auto 0;
  padding: var(--sp-lg) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.post-tagrow-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-light);
  padding: 5px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.post-tagrow-pill:hover { opacity: 0.85; }

/* ── Read next ───────────────────────────────────────────────────────── */
.post-recirc {
  margin: clamp(var(--sp-3xl), 6vw, var(--sp-4xl)) auto 0;
}
.post-recirc-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.625rem);
  letter-spacing: -0.012em;
  color: var(--text-primary);
  margin: 0 0 var(--sp-xl);
}
.post-recirc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(var(--sp-lg), 2vw, var(--sp-xl));
}

.rcard { position: relative; background: transparent; }
.rcard-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
}
.rcard-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}
.rcard-figure {
  margin: 0 0 var(--sp-sm);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-container);
  aspect-ratio: 4 / 3;
}
.rcard-figure img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rcard-link:hover .rcard-figure img,
.rcard-link:focus-visible .rcard-figure img {
  transform: scale(1.025);
}
.rcard-typo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 25%, var(--brand-light), transparent 55%),
    var(--surface-alt);
  color: var(--brand);
}
.rcard-typo-mark {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.85;
}
.rcard-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0 0 var(--sp-xs);
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rcard-link:hover .rcard-title,
.rcard-link:focus-visible .rcard-title { color: var(--brand); }
.rcard-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-tertiary);
}
.rcard-tag {
  font-weight: 600;
  color: var(--brand);
}

/* ── Newsletter CTA band ─────────────────────────────────────────────── */
.post-cta {
  margin: clamp(var(--sp-3xl), 6vw, var(--sp-4xl)) auto 0;
}
.post-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-xl) var(--sp-2xl);
  padding: clamp(var(--sp-xl), 3vw, var(--sp-2xl)) clamp(var(--sp-xl), 4vw, var(--sp-3xl));
  background: var(--surface-alt);
  border-radius: 18px;
}
.post-cta-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 1vw + 0.875rem, 1.5rem);
  letter-spacing: -0.012em;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.post-cta-sub {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin: 0;
}
.post-cta-btn { white-space: nowrap; }

@media (max-width: 600px) {
  .post-cta-inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .post-cta-btn { justify-self: start; }
}

/* ── Prev / next (centered to prose width) ───────────────────────────── */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  max-width: var(--post-prose-w);
  margin: clamp(var(--sp-3xl), 6vw, var(--sp-4xl)) auto 0;
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border-subtle);
}
@media (max-width: 560px) {
  .post-nav { grid-template-columns: 1fr; }
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--text-primary);
  padding: var(--sp-md);
  border-radius: 10px;
  transition: background var(--dur-fast) var(--ease-out);
}
.post-nav-link:hover { background: var(--surface-alt); }
.post-nav-next { text-align: right; }
.post-nav--next-only .post-nav-next { grid-column: 2; }
.post-nav-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.post-nav-title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.3;
  color: var(--text-primary);
}

/* ── Footer link button (utility, not post-specific) ─────────────────── */
.footer-link-button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-link-button:hover { color: var(--text-primary); }
.footer-link-button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Mobile byline row stacks ────────────────────────────────────────── */
@media (max-width: 600px) {
  .post-byline {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
  }
  .post-share { align-self: stretch; justify-content: flex-end; }
}

/* ─── Reduced motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .bcard-figure img,
  .bcard-link:hover .bcard-figure img,
  .bcard-link:focus-visible .bcard-figure img,
  .rcard-figure img,
  .rcard-link:hover .rcard-figure img,
  .rcard-link:focus-visible .rcard-figure img,
  .post-share-copy-default,
  .post-share-copy-done {
    transform: none;
    filter: none;
    transition: none;
  }
}
