/* ═══════════════════════════════════════════════════════════════
   Skaha Newsroom — post-2026.css
   Round 4 Polish · 2026-05-02
   Pure vanilla CSS, no frameworks.
   ALL selectors scoped under .post-2026 for defense-in-depth.
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Reset (newsroom-only) ───────────────────────────────── */
.post-2026, .post-2026 *,
.post-2026 *::before, .post-2026 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.post-2026 {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.post-2026 img, .post-2026 picture, .post-2026 video,
.post-2026 canvas, .post-2026 svg {
  display: block;
  max-width: 100%;
}
.post-2026 input, .post-2026 button,
.post-2026 textarea, .post-2026 select {
  font: inherit;
}
.post-2026 p, .post-2026 h1, .post-2026 h2,
.post-2026 h3, .post-2026 h4, .post-2026 h5, .post-2026 h6 {
  overflow-wrap: break-word;
}
.post-2026 a { color: inherit; text-decoration: none; }
.post-2026 ul, .post-2026 ol { list-style: none; }
.post-2026 button { cursor: pointer; background: none; border: none; }

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --accent: #003478;
  --accent-light: rgba(0, 52, 120, 0.08);
  --progress: #e63737;
  --radius: 14px;
  --bg: #fafaf7;
  --bg-elevated: #ffffff;
  --fg: #0c0c0d;
  --fg-muted: rgba(0, 0, 0, 0.65);
  --fg-faint: rgba(0, 0, 0, 0.45);
  --border: rgba(0, 0, 0, 0.08);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --max-w: 1320px;
  --body-w: 720px;
}

/* ── Base body styles ──────────────────────────────────────────── */
.post-2026 {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════
   FIX 1 — Branded newsroom masthead
   ═══════════════════════════════════════════════════════════════ */
.post-2026 .newsroom-masthead {
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 247, 0.92);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.post-2026 .newsroom-masthead-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.post-2026 .masthead-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--fg);
  flex-shrink: 0;
}
.post-2026 .masthead-logo {
  height: 36px;
  width: auto;
  border-radius: 8px;
}
.post-2026 .masthead-dealer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.post-2026 .masthead-separator {
  color: var(--fg-faint);
  font-weight: 400;
  margin: 0 4px;
}
.post-2026 .masthead-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--fg-muted);
}
.post-2026 .masthead-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.post-2026 .masthead-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s ease;
}
.post-2026 .masthead-nav a:hover {
  color: var(--accent);
}
.post-2026 .masthead-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: var(--accent);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.post-2026 .masthead-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ── Newsroom footer ───────────────────────────────────────────── */
.post-2026 .newsroom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-top: 1px solid var(--border);
}
.post-2026 .newsroom-back-link {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.post-2026 .newsroom-back-link:hover {
  color: var(--accent);
}
.post-2026 .newsroom-footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   FIX 2 — Wider content container
   ═══════════════════════════════════════════════════════════════ */
.post-2026 .newsroom-main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 56px 96px;
}

/* ── Article grid (two-column, full article height) ────────────── */
.post-2026 .article-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.post-2026 .article-column {
  min-width: 0;
}
.post-2026 .article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Reading progress bar ──────────────────────────────────────── */
.post-2026 .nr-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--progress);
  z-index: 10000;
  transition: width 80ms linear;
}

/* ── Sticky compact header ─────────────────────────────────────── */
.post-2026 .nr-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 49;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.post-2026 .nr-sticky-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.post-2026 .nr-sticky-header__logo img {
  height: 28px;
  width: auto;
}
.post-2026 .nr-sticky-header__logo span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
}
.post-2026 .nr-sticky-header__title {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-2026 .nr-sticky-header__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Article wrapper ───────────────────────────────────────────── */
.post-2026 .nr {
  font-family: var(--font-body);
  color: var(--fg);
  line-height: 1.6;
}

/* ── Breadcrumb ────────────────────────────────────────────────── */
.post-2026 .nr-breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.post-2026 .nr-breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
}
.post-2026 .nr-breadcrumb a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.post-2026 .nr-breadcrumb__sep {
  margin: 0 6px;
  color: var(--fg-faint);
}

/* ═══════════════════════════════════════════════════════════════
   FIX 4 — Bold category pill
   ═══════════════════════════════════════════════════════════════ */
.post-2026 .category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 24px;
}
.post-2026 .category-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

/* ═══════════════════════════════════════════════════════════════
   FIX 6 — Larger, bolder title
   ═══════════════════════════════════════════════════════════════ */
.post-2026 .article-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 16px 0 32px;
  color: var(--fg);
  text-wrap: balance;
  max-width: 18ch;
}
.post-2026 .article-title .accent {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   FIX 7 — Refined byline
   ═══════════════════════════════════════════════════════════════ */
.post-2026 .article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.post-2026 .byline-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.post-2026 .byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--bg-elevated));
  flex-shrink: 0;
  overflow: hidden;
}
.post-2026 .byline-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-2026 .byline-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.post-2026 .byline-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.post-2026 .byline-role {
  font-weight: 400;
  color: var(--fg-muted);
  font-size: 14px;
}
.post-2026 .byline-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
}
.post-2026 .byline-actions {
  display: flex;
  gap: 8px;
}
.post-2026 .byline-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.post-2026 .byline-action:hover {
  background: var(--bg);
  border-color: var(--fg-muted);
}
.post-2026 .byline-action svg {
  display: inline;
}

/* ── Spec strip ────────────────────────────────────────────────── */
.post-2026 .nr-spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 32px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}
.post-2026 .nr-spec-strip__cell {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-top: 3px solid transparent;
  transition: border-top-color 0.2s;
}
.post-2026 .nr-spec-strip__cell:last-child { border-right: none; }
.post-2026 .nr-spec-strip__cell:hover { border-top-color: var(--accent); }
.post-2026 .nr-spec-strip__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 36px);
  color: var(--fg);
  line-height: 1.2;
}
.post-2026 .nr-spec-strip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── (Legacy grid class — kept for compatibility) ──────────────── */
.post-2026 .nr-layout {
  display: contents;
}

/* ═══════════════════════════════════════════════════════════════
   FIX 3 — Full-width hero image
   ═══════════════════════════════════════════════════════════════ */
.post-2026 .article-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin: 32px 0 40px;
}
.post-2026 .article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-2026 .article-hero-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Body ───────────────────────────────────────────────────────── */
.post-2026 .nr-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  margin-bottom: 40px;
}
.post-2026 .nr-body p { margin: 0 0 1.25em; }
.post-2026 .nr-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(0, 52, 120, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s;
}
.post-2026 .nr-body a:hover { text-decoration-color: var(--accent); }
.post-2026 .nr-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 16px 0;
}
.post-2026 .nr-body h2,
.post-2026 .nr-body h3,
.post-2026 .nr-body h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 1.5em 0 0.5em;
  line-height: 1.25;
}
.post-2026 .nr-body h2 { font-size: 28px; }
.post-2026 .nr-body h3 { font-size: 22px; }
.post-2026 .nr-body h4 { font-size: 18px; }
.post-2026 .nr-body ul,
.post-2026 .nr-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
  list-style: revert;
}
.post-2026 .nr-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5em 0;
  padding: 0.5em 0 0.5em 1.25em;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── Lede (opening H2 or .lede class) ──────────────────────────── */
.post-2026 .nr-body > h2:first-child,
.post-2026 .nr-body h2.lede {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 28px;
  text-wrap: balance;
}

/* ── Tags (labeled section) ─────────────────────────────────────── */
.post-2026 .article-tags {
  margin: 48px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.post-2026 .article-tags-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.post-2026 .article-tags-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.post-2026 .article-tags-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.post-2026 .article-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.post-2026 .tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}
.post-2026 .tag-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Newsletter strip (compact, end-of-article) ────────────────── */
.post-2026 .newsletter-strip {
  margin: 80px 0 40px;
  padding: 32px 40px;
  background: #0c0c0d;
  color: white;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.post-2026 .newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.post-2026 .newsletter-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.post-2026 .newsletter-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: white;
  margin: 0;
}
.post-2026 .newsletter-description {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.post-2026 .newsletter-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.post-2026 .newsletter-input {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  min-width: 220px;
  outline: none;
}
.post-2026 .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.post-2026 .newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}
.post-2026 .newsletter-button {
  padding: 12px 20px;
  background: white;
  color: #0c0c0d;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.post-2026 .newsletter-button:hover { opacity: 0.88; }

/* ═══════════════════════════════════════════════════════════════
   FIX 5 — Larger, cleaner related cards
   ═══════════════════════════════════════════════════════════════ */
/* ── Related stories (full-width section) ───────────────────────── */
.post-2026 .related-stories {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.post-2026 .related-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.post-2026 .related-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg);
}
.post-2026 .related-view-all {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
}
.post-2026 .related-view-all:hover {
  color: var(--accent);
}
.post-2026 .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.post-2026 .related-card {
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: var(--fg);
  display: block;
}
.post-2026 .related-card:hover {
  transform: translateY(-4px);
}
.post-2026 .related-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  margin-bottom: 18px;
  position: relative;
}
.post-2026 .related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
}
.post-2026 .related-card-image::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 52, 120, 0.13);
}
.post-2026 .related-card-category {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.post-2026 .related-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--fg);
}
.post-2026 .related-card-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-2026 .related-card-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: block;
}

/* ── Share button (reused in sticky header) ────────────────────── */
.post-2026 .nr-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--fg-muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.post-2026 .nr-share-btn:hover {
  background: var(--accent-light);
  color: var(--accent);
}

/* ── Sidebar ───────────────────────────────────────────────────── */
.post-2026 .nr-sidebar,
.post-2026 .article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-2026 .nr-sidebar__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.post-2026 .nr-sidebar__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 12px;
}

/* Sidebar: search */
.post-2026 .nr-sidebar-search__form { position: relative; }
.post-2026 .nr-sidebar-search__input {
  width: 100%;
  padding: 10px 14px;
  padding-right: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.post-2026 .nr-sidebar-search__input:focus { border-color: var(--accent); }
.post-2026 .nr-sidebar-search__hint {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  pointer-events: none;
}

/* Sidebar: categories */
.post-2026 .nr-sidebar-cats__list { list-style: none; margin: 0; padding: 0; }
.post-2026 .nr-sidebar-cats__list li { border-bottom: 1px solid var(--border); }
.post-2026 .nr-sidebar-cats__list li:last-child { border-bottom: none; }
.post-2026 .nr-sidebar-cats__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  text-decoration: none;
  color: var(--fg);
  font-size: 13px;
  transition: color 0.15s;
}
.post-2026 .nr-sidebar-cats__list a:hover { color: var(--accent); }
.post-2026 .nr-sidebar-cats__count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  background: var(--bg);
  border-radius: 10px;
  padding: 2px 8px;
}

/* Sidebar: legacy widget wrapper */
.post-2026 .nr-sidebar-widget {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 20px;
}
.post-2026 .nr-sidebar-widget .sidebar-title h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 12px;
  color: var(--fg);
  text-transform: none;
  letter-spacing: 0;
}
.post-2026 .nr-sidebar-widget .post { margin: 0; padding: 0; }
.post-2026 .nr-sidebar-widget .pcontent { padding: 0; }
.post-2026 .nr-sidebar-widget a {
  color: var(--fg);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  transition: color 0.15s;
}
.post-2026 .nr-sidebar-widget a:hover { color: var(--accent); }
.post-2026 .nr-sidebar-widget .tag {
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.post-2026 .nr-sidebar-widget .tag:last-child { border-bottom: none; }
.post-2026 .nr-sidebar-widget .recent-posts .post {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.post-2026 .nr-sidebar-widget .recent-posts .post:last-child { border-bottom: none; }
.post-2026 .nr-sidebar-widget .post-thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
.post-2026 .nr-sidebar-widget .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
}

/* Sidebar: newsletter */
.post-2026 .nr-sidebar-nl__desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 0 0 12px;
}
.post-2026 .nr-sidebar-nl__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post-2026 .nr-sidebar-nl__input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  outline: none;
  box-sizing: border-box;
}
.post-2026 .nr-sidebar-nl__input:focus { border-color: var(--accent); }
.post-2026 .nr-sidebar-nl__btn {
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.post-2026 .nr-sidebar-nl__btn:hover { opacity: 0.88; }

/* ── Admin bar ─────────────────────────────────────────────────── */
.post-2026 .nr-admin-bar {
  display: flex;
  gap: 12px;
  padding: 12px 40px;
  border-top: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
}
.post-2026 .nr-admin-bar a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 6px;
}
.post-2026 .nr-admin-bar a:hover {
  background: var(--accent);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   LISTING VIEW — Card components + grid layouts
   Values from blog.jsx + app.jsx inline styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Article card (blog.jsx ArticleCard) ───────────────────────── */
.post-2026 .nr-card {
  display: flex;
  flex-direction: column;
  gap: 15.4px; /* pad(22) * 0.7 */
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: var(--fg);
}
.post-2026 .nr-card:hover {
  transform: translateY(-4px);
}
.post-2026 .nr-card__image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-elevated);
}
.post-2026 .nr-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-2026 .nr-card__dot {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 52, 120, 0.13);
}
.post-2026 .nr-card__body {
  display: flex;
  flex-direction: column;
  gap: 11px; /* pad(22) * 0.5 */
}
.post-2026 .nr-card__meta-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.post-2026 .nr-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: #fff;
  background: var(--accent);
}
.post-2026 .nr-card__date-read {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}
.post-2026 .nr-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
/* Title sizes per variant (blog.jsx line 104-108, default density) */
.post-2026 .nr-card--hero .nr-card__title { font-size: 44px; }
.post-2026 .nr-card--large .nr-card__title { font-size: 30px; }
.post-2026 .nr-card--wide .nr-card__title { font-size: 25px; }
.post-2026 .nr-card--default .nr-card__title { font-size: 21px; }
.post-2026 .nr-card--compact .nr-card__title { font-size: 17px; }

.post-2026 .nr-card__excerpt {
  font-family: var(--font-body);
  line-height: 1.55;
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  text-wrap: pretty;
  max-width: 60ch;
}
/* Excerpt size per variant (blog.jsx line 169) */
.post-2026 .nr-card--hero .nr-card__excerpt { font-size: 17px; }
.post-2026 .nr-card--large .nr-card__excerpt,
.post-2026 .nr-card--wide .nr-card__excerpt { font-size: 15px; }

.post-2026 .nr-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
}
.post-2026 .nr-card__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #999);
  flex-shrink: 0;
}
.post-2026 .nr-card__author-name {
  font-weight: 500;
}

/* ── Featured card (blog.jsx FeaturedCard) ─────────────────────── */
.post-2026 .nr-fcard--large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  cursor: pointer;
}
.post-2026 .nr-fcard--small {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  cursor: pointer;
  align-items: center;
}
.post-2026 .nr-fcard__image-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}
.post-2026 .nr-fcard__image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-elevated);
  transition: transform 0.4s ease;
}
.post-2026 .nr-fcard:hover .nr-fcard__image {
  transform: scale(1.03);
}
.post-2026 .nr-fcard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-2026 .nr-fcard__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-2026 .nr-fcard--large .nr-fcard__body { padding: 6px 0 0; }
.post-2026 .nr-fcard__title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
.post-2026 .nr-fcard--large .nr-fcard__title { font-size: 32px; }
.post-2026 .nr-fcard--small .nr-fcard__title { font-size: 17px; }
.post-2026 .nr-fcard__excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  text-wrap: pretty;
  max-width: 55ch;
}
.post-2026 .nr-fcard__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

/* ── Listing eyebrow ───────────────────────────────────────────── */
.post-2026 .listing-eyebrow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.post-2026 .listing-eyebrow__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: block;
  text-wrap: balance;
}
.post-2026 .listing-eyebrow__count {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  display: block;
  margin-top: 16px;
}

/* ── Listing hero (app.jsx line 126) ───────────────────────────── */
.post-2026 .listing-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px; /* gridGap(32) * 1.5 */
  align-items: center;
  margin-bottom: 84px; /* sectionGap */
}
.post-2026 .listing-hero__image {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-elevated);
}
.post-2026 .listing-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-2026 .listing-hero__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-2026 .listing-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.post-2026 .listing-hero__title a {
  color: inherit;
  text-decoration: none;
}
.post-2026 .listing-hero__excerpt {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
  max-width: 50ch;
  text-wrap: pretty;
}
.post-2026 .listing-hero__cta {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* ── Featured section (app.jsx line 227-272) ───────────────────── */
.post-2026 .listing-featured {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 71px 0; /* sectionGap(84) * 0.85 */
  margin: 0 -56px; /* break out of main padding */
  padding-left: 56px;
  padding-right: 56px;
}
.post-2026 .listing-featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.post-2026 .listing-featured__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.post-2026 .listing-featured__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1;
  text-wrap: balance;
  max-width: 14ch;
}
.post-2026 .listing-featured__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 45px; /* gridGap(32) * 1.4 */
  align-items: start;
}
.post-2026 .listing-featured__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.post-2026 .listing-featured__stack-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.post-2026 .listing-featured__stack-item:first-child {
  border-top: 1px solid var(--border);
}
.post-2026 .listing-featured__stack-item:last-child {
  border-bottom: none;
}

/* ── Grid section header (app.jsx line 186-193) ────────────────── */
.post-2026 .listing-grid-section {
  margin-top: 84px;
}
.post-2026 .listing-grid-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.post-2026 .listing-grid-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
}
.post-2026 .listing-grid-count {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

/* ── Mosaic grid (app.jsx line 195-223: 12-column) ─────────────── */
.post-2026 .listing-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

/* ── Pagination ────────────────────────────────────────────────── */
.post-2026 .listing-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.post-2026 .listing-pagination__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.post-2026 .listing-pagination__link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.post-2026 .listing-pagination__info {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

/* ═══════════════════════════════════════════════════════════════
   HUB VIEW — Issue header + engine tabs (from app.jsx)
   ═══════════════════════════════════════════════════════════════ */

/* ── Issue header (app.jsx line 70-92) ─────────────────────────── */
.post-2026 .hub-issue-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.post-2026 .hub-issue-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.post-2026 .hub-issue-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
  max-width: 12ch;
}
.post-2026 .hub-issue-tagline {
  max-width: 380px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
  text-wrap: pretty;
}

/* ── Engine tabs (app.jsx line 95-120) ─────────────────────────── */
.post-2026 .hub-category-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  overflow-x: auto;
}
.post-2026 .hub-cat-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
}
.post-2026 .hub-cat-tab:hover {
  border-color: var(--fg);
}
.post-2026 .hub-cat-tab--active {
  background: var(--fg);
  color: var(--bg);
  border-color: transparent;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .post-2026 .masthead-nav { display: none; }
  .post-2026 .masthead-section { display: none; }
  .post-2026 .masthead-separator { display: none; }
  .post-2026 .newsroom-masthead-inner { padding: 14px 20px; }
  .post-2026 .newsroom-main { padding: 32px 20px 64px; }
  .post-2026 .newsroom-footer { padding: 20px 16px; }
  .post-2026 .article-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .post-2026 .article-sidebar,
  .post-2026 .nr-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .post-2026 .nr-sidebar__card { flex: 1 1 280px; }
  .post-2026 .related-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .post-2026 .nr-spec-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-2026 .nr-spec-strip__cell:nth-child(2) { border-right: none; }
  .post-2026 .nr-spec-strip__cell:nth-child(1),
  .post-2026 .nr-spec-strip__cell:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .post-2026 .newsletter-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
    text-align: center;
  }
  .post-2026 .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .post-2026 .newsletter-input {
    min-width: 0;
    width: 100%;
  }
  .post-2026 .byline-actions { display: none; }
  /* Listing responsive */
  .post-2026 .listing-hero { grid-template-columns: 1fr; gap: 32px; }
  .post-2026 .listing-featured { margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
  .post-2026 .listing-featured__grid { grid-template-columns: 1fr; gap: 32px; }
  .post-2026 .listing-mosaic { grid-template-columns: 1fr; }
  .post-2026 .listing-mosaic__cell { grid-column: span 1 !important; }
  .post-2026 .nr-fcard--small { grid-template-columns: 120px 1fr; gap: 14px; }
  .post-2026 .hub-issue-title { font-size: clamp(36px, 10vw, 56px); max-width: none; }
  .post-2026 .hub-issue-header { padding-bottom: 24px; }
  .post-2026 .hub-category-bar { margin-bottom: 32px; gap: 8px; }
  .post-2026 .hub-cat-tab { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  .post-2026 .article-title { font-size: 32px; }
  .post-2026 .article-byline { flex-wrap: wrap; }
  .post-2026 .nr-newsletter-strip { padding: 32px 20px; }
  .post-2026 .nr-sticky-header__title { font-size: 12px; }
  .post-2026 .masthead-cta {
    padding: 10px 16px;
    font-size: 13px;
  }
}
