/* ═══════════════════════════════════════════════════
   SRP International — Insights (blog) styles
   Magazine layout built on the global design tokens.
   ═══════════════════════════════════════════════════ */

/* ─── Hero ─── */
.blog-hero { padding-bottom: 64px; }
.kicker--light {
  display: inline-block;
  color: var(--gold-light);
  background: rgba(206,175,113,.12);
  border: 1px solid rgba(206,175,113,.22);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: var(--fs-kicker);
  font-weight: var(--fw-bold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ─── Category filter (scrolls with the page — not sticky) ───
   This is a <nav>, so it must override the global fixed-header nav
   styles (position / height / background / shadow). */
.blog-filter {
  position: static;
  height: auto;
  z-index: auto;
  background: var(--white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: none;
}
/* Carousel rail — three decoupled parts in one flex row:
     [ ‹ arrow endcap ] [ scrollable chip viewport (flex) ] [ › arrow endcap ]
   Arrows are fixed-width endcaps pinned to the far ends; the track scrolls
   between them. Adding categories only lengthens the track — the arrows
   never move or overlap the chips. */
.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px var(--gutter);
}

/* Middle column: flexes to fill the space between the endcaps and clips
   its overflowing track. min-width:0 lets it shrink so the track scrolls
   instead of pushing the arrows out of position. */
.blog-filter-viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
.blog-filter-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 4px 1px;            /* room for chip focus rings */
}
.blog-filter-track::-webkit-scrollbar { display: none; }

/* Soft edge fades at the track boundaries (inside the viewport, never over
   the arrows) — signal there's more to scroll in that direction. */
.blog-filter-viewport::before,
.blog-filter-viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 26px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.blog-filter-viewport::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,.96), rgba(255,255,255,0));
}
.blog-filter-viewport::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,.96), rgba(255,255,255,0));
}
.blog-filter-viewport.has-fade-left::before  { opacity: 1; }
.blog-filter-viewport.has-fade-right::after { opacity: 1; }

/* Arrow endcaps — always present at both ends; disabled (dimmed) when
   there's nothing further to scroll in that direction. */
.blog-filter-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-default);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(6,30,117,.10);
  transition: background var(--dur-fast), color var(--dur-fast),
              border-color var(--dur-fast), opacity var(--dur-fast),
              box-shadow var(--dur-fast);
}
.blog-filter-arrow svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.blog-filter-arrow:hover:not(:disabled) {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(6,30,117,.20);
}
.blog-filter-arrow:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.blog-filter-arrow:disabled {
  opacity: .3;
  cursor: default;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .blog-filter-track { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════
   INSIGHTS HERO — photographic hero (matches Home hero)
   ═══════════════════════════════════════════════════ */
.blog-hero2 {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  color: #fff;
  padding-top: calc(var(--nav-height) + 76px);
  padding-bottom: 88px;
}
/* Layer 0 — provided skyscraper photo (blurred for depth, matching the
   Home hero: oversized by 24px so the blur feathering is clipped by the
   hero's overflow:hidden — no pale halo at the edges). */
.blog-hero2::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: url('/images/insights-hero.jpg') center / cover no-repeat;
  filter: blur(12px);
  z-index: 0;
}
/* Layers 1+2 — the exact same blue overlay used on the Home hero:
   a dark navy tint plus subtle blue & gold radial accents. */
.blog-hero2::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(4, 10, 35, 0.42);
  background-image:
    radial-gradient(ellipse 60% 55% at 70% 40%, rgba(74,144,217,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 12% 80%, rgba(206,175,113,.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.blog-hero2-inner {
  position: relative;
  z-index: 2;
}
.blog-hero2-text { max-width: 760px; }
.blog-hero2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-family);
  font-size: var(--fs-kicker);
  font-weight: var(--fw-bold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: 22px;
}
.blog-hero2-kicker::before { content: ''; width: 34px; height: 2px; background: var(--gold); }
.blog-hero2-title {
  font-family: var(--font-family);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: var(--fw-extrabold);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 22px;
  text-wrap: balance;
}
.blog-hero2-title em { font-style: normal; color: var(--gold); }
.blog-hero2-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 30px;
}
.blog-hero2-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 10px 6px 20px;
  box-shadow: 0 14px 34px rgba(6,30,117,.10);
  transition: box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.blog-hero2-search:focus-within {
  border-color: rgba(6,30,117,.35);
  box-shadow: 0 16px 40px rgba(6,30,117,.16);
}
.blog-hero2-search svg {
  width: 19px; height: 19px;
  stroke: var(--text-muted); stroke-width: 2; fill: none;
  flex-shrink: 0;
}
.blog-hero2-search input {
  flex: 1;
  border: none; outline: none; background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  padding: 12px 0;
}
.blog-hero2-search input::placeholder { color: var(--text-muted); }
.blog-hero2-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 38px;
}
.blog-stat { display: flex; flex-direction: column; gap: 3px; }
.blog-stat-num {
  font-family: var(--font-family);
  font-size: 27px;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  color: #fff;
}
.blog-stat-label { font-family: var(--font-body); font-size: 12.5px; color: rgba(255,255,255,.62); }

/* Hero media — rounded "magazine" card */
.blog-hero2-media { position: relative; }
.blog-hero2-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 34px 70px rgba(6,30,117,.20);
}
.blog-hero2-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-hero2-badge {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-family);
  font-size: 12px; font-weight: var(--fw-bold); letter-spacing: .02em;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
}
.blog-hero2-badge svg { width: 14px; height: 14px; stroke: var(--navy); stroke-width: 2; fill: none; }
.blog-hero2-cap {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(2,6,27,.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-body); font-size: 12px;
  padding: 7px 13px;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════
   SHOWCASE CARD — Editor's Pick + Monthly Analysis
   ═══════════════════════════════════════════════════ */
/* Uniform vertical rhythm: each Insights content section adds spacing only at
   the top (the last one also at the bottom), so stacked sections share a single
   consistent gap instead of doubling the default .section top + bottom padding. */
.blog-showcase-section { padding: var(--space-3xl) var(--gutter) 0; }
.blog-main { padding: var(--space-3xl) var(--gutter); }

.blog-showcase-head { margin-bottom: 28px; }
.blog-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-family);
  font-size: var(--fs-kicker); font-weight: var(--fw-bold);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.blog-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--gold); }
.blog-showcase-h2 {
  font-family: var(--font-family);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: var(--fw-extrabold);
  letter-spacing: -.02em;
  color: var(--navy);
  line-height: 1.1;
}
.blog-showcase-sub {
  font-family: var(--font-body);
  font-size: 15.5px; line-height: 1.65;
  color: var(--text-mid);
  max-width: 660px;
  margin-top: 14px;
}
.blog-showcase {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.blog-showcase:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.blog-showcase-media { position: relative; overflow: hidden; min-height: 340px; }
.blog-showcase-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.blog-showcase:hover .blog-showcase-media img { transform: scale(1.04); }
.blog-showcase-tag { position: absolute; top: 18px; left: 18px; }
.blog-showcase-cap {
  position: absolute; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(2,6,27,.6);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; font-family: var(--font-body); font-size: 12px;
  padding: 7px 13px; border-radius: var(--radius-full);
}
.blog-showcase-body {
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
}
.blog-showcase-title {
  font-family: var(--font-family);
  font-size: clamp(23px, 2.5vw, 33px);
  font-weight: var(--fw-bold);
  line-height: 1.18; letter-spacing: -.015em;
  color: var(--text-dark);
  margin: 16px 0 14px;
}
.blog-showcase-summary {
  font-family: var(--font-body);
  font-size: 15.5px; line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.blog-showcase-body .blog-meta { margin-bottom: 22px; }
.blog-showcase-cta {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 4px;
  padding: 13px 24px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-family);
  font-weight: var(--fw-semibold); font-size: 14px;
  border-radius: var(--radius-full);
  transition: background var(--dur-fast);
}
.blog-showcase:hover .blog-showcase-cta { background: var(--navy-light, #0D2B9E); }
.blog-showcase-cta svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.2; fill: none; transition: transform var(--dur-fast); }
.blog-showcase:hover .blog-showcase-cta svg { transform: translateX(3px); }

/* Placeholder cue for the "supply your own content" module */
.blog-placeholder { color: var(--gold-dark); }

/* Search: empty-results note */
.blog-search-empty { display: none; text-align: center; padding: 44px 20px; color: var(--text-muted); }

/* Responsive — magazine layout collapses */
@media (max-width: 920px) {
  .blog-hero2-inner { grid-template-columns: 1fr; gap: 36px; }
  .blog-hero2-figure { aspect-ratio: 16 / 10; }
  .blog-showcase { grid-template-columns: 1fr; }
  .blog-showcase-media { min-height: 0; aspect-ratio: 16 / 9; }
}
.blog-chip {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-default);
  background: var(--white);
  color: var(--text-mid);
  font-family: var(--font-family);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.blog-chip:hover { border-color: var(--navy); color: var(--navy); }
.blog-chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  font-weight: var(--fw-semibold);
}

/* ─── Category pills (on cards) ─── */
.blog-pill {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  background: rgba(2,6,27,.62);
  color: #fff;
  backdrop-filter: blur(4px);
}
.blog-pill--gold { background: var(--gold); color: var(--navy-dark); }
.blog-pill--plain {
  background: rgba(206,175,113,.14);
  color: var(--gold-dark);
  backdrop-filter: none;
}

/* ─── Featured lead block ─── */
.blog-featured {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 28px;
  margin-bottom: 64px;
}
.blog-lead {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.blog-lead:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.blog-lead-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-lead-media img,
.blog-card-media img,
.blog-side-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.blog-lead:hover .blog-lead-media img,
.blog-card-link:hover .blog-card-media img,
.blog-side-card:hover .blog-side-media img { transform: scale(1.04); }
.blog-lead-media .blog-pill { position: absolute; top: 16px; left: 16px; }
.blog-lead-body { padding: 28px 32px 32px; }
.blog-lead-eyebrow {
  display: inline-block;
  font-family: var(--font-family);
  font-size: var(--fs-kicker);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.blog-lead-title {
  font-family: var(--font-family);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: var(--fw-bold);
  line-height: 1.18;
  letter-spacing: -.015em;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.blog-lead-summary {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.blog-lead-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-family);
  font-weight: var(--fw-semibold);
  color: var(--navy);
}
.blog-lead-cta svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform var(--dur-fast); }
.blog-lead:hover .blog-lead-cta svg { transform: translateX(3px); }

/* Secondary stacked stories */
.blog-lead-side { display: flex; flex-direction: column; gap: 28px; }
.blog-side-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  flex: 1;
}
.blog-side-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.blog-side-media { overflow: hidden; }
.blog-side-body { padding: 16px 16px 16px 0; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.blog-side-title {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  color: var(--text-dark);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-side-date { font-size: var(--fs-caption); color: var(--text-muted); font-family: var(--font-body); }

/* ─── Main layout: grid + sidebar ─── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-section-title {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  letter-spacing: -.01em;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-default);
}

/* ─── Article grid ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.blog-card-link { text-decoration: none; display: block; }
.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-card-media .blog-pill { position: absolute; top: 14px; left: 14px; }
.blog-card-body { padding: 22px 22px 24px; }
.blog-card-title {
  font-family: var(--font-family);
  font-size: 19px;
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-excerpt {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* ─── Meta row (author · date · read) ─── */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-muted);
}
.blog-meta-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  border: 1px solid var(--border-subtle);
}
.blog-meta-author { font-weight: var(--fw-semibold); color: var(--text-mid); }
.blog-meta-dot { color: var(--border-default); }

/* ─── Sidebar ─── */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: calc(var(--nav-height) + 70px); }
.blog-widget {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.blog-widget-title {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.blog-popular { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.blog-popular-item { display: flex; gap: 14px; text-decoration: none; align-items: flex-start; }
.blog-popular-num {
  flex: 0 0 auto;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: var(--fw-extrabold);
  color: rgba(6,30,117,.18);
  line-height: 1.1;
}
.blog-popular-item:hover .blog-popular-num { color: var(--gold); }
.blog-popular-headline {
  display: block;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  color: var(--text-dark);
  transition: color var(--dur-fast);
}
.blog-popular-item:hover .blog-popular-headline { color: var(--navy); }
.blog-popular-date { display: block; font-size: var(--fs-caption); color: var(--text-muted); margin-top: 4px; font-family: var(--font-body); }

.blog-topics { list-style: none; margin: 0; padding: 0; }
.blog-topics li + li { border-top: 1px solid var(--border-subtle); }
.blog-topics a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-mid);
  transition: color var(--dur-fast);
}
.blog-topics a:hover, .blog-topics a.is-active { color: var(--navy); font-weight: var(--fw-semibold); }
.blog-topic-count {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface-muted);
  border-radius: var(--radius-full);
  padding: 2px 9px;
}

.blog-advisor {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 60%, #0E2A9F 100%);
  border-radius: var(--radius-xl);
  padding: 26px 24px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.blog-advisor h3 { font-family: var(--font-family); font-size: 18px; font-weight: var(--fw-bold); margin-bottom: 10px; }
.blog-advisor p { font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.6; margin-bottom: 18px; font-family: var(--font-body); }

/* ─── Empty state ─── */
.blog-empty { text-align: center; padding: 56px 20px; color: var(--text-muted); }
.blog-empty p { margin-bottom: 18px; }

/* ─── Newsletter band ─── */
.blog-newsletter .blog-subscribe {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 24px auto 14px;
}
.blog-subscribe input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
}
.blog-subscribe input::placeholder { color: rgba(255,255,255,.6); }
.blog-subscribe input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.blog-subscribe-note { font-size: 12.5px; color: rgba(255,255,255,.6); }

/* ═══ ARTICLE PAGE ═══════════════════════════════════ */
.post-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 40px;
  background: linear-gradient(150deg, #020D3A 0%, var(--navy) 55%, #0E2A9F 100%);
  color: #fff;
}
.post-hero-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.post-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px;
  font-size: var(--fs-caption); font-weight: var(--fw-medium);
  color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.post-hero .breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.post-hero .breadcrumb a:hover { color: #fff; }
.post-hero .breadcrumb span { color: rgba(255,255,255,.7); }
.post-hero .breadcrumb svg { width: 12px; height: 12px; stroke: rgba(255,255,255,.3); stroke-width: 2; fill: none; }
.post-category-pill {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 11px; font-weight: var(--fw-bold);
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--gold); color: var(--navy-dark);
  text-decoration: none; margin-bottom: 18px;
}
.post-title {
  font-family: var(--font-family);
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.post-byline { display: inline-flex; align-items: center; gap: 12px; text-align: left; }
.post-byline-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.25); }
.post-byline-author { display: block; font-family: var(--font-family); font-weight: var(--fw-semibold); font-size: 15px; }
.post-byline-meta { display: block; font-size: 13px; color: rgba(255,255,255,.65); margin-top: 2px; }

.post-cover { margin-top: -56px; margin-bottom: 8px; }
.post-cover img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px var(--gutter) 8px;
}
.post-body p {
  font-family: var(--font-body);
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.post-body h2 {
  font-family: var(--font-family);
  font-size: 25px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  letter-spacing: -.015em;
  margin: 40px 0 16px;
}
.post-body ul { margin: 0 0 24px; padding-left: 4px; list-style: none; }
.post-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
}
.post-body ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--gold);
}

.post-author-card {
  display: flex; align-items: center; gap: 16px;
  margin-top: 44px; padding: 22px 24px;
  background: var(--surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}
.post-author-card img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; filter: grayscale(1); }
.post-author-name { display: block; font-family: var(--font-family); font-weight: var(--fw-bold); color: var(--text-dark); }
.post-author-role { display: block; font-size: 13.5px; color: var(--text-muted); margin-top: 2px; }

.post-foot { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.post-back { font-family: var(--font-family); font-weight: var(--fw-semibold); color: var(--navy); text-decoration: none; }
.post-back:hover { text-decoration: underline; }
.post-related .section-head { margin-bottom: 40px; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-lead-side { flex-direction: row; }
  .blog-side-card { flex-direction: column; grid-template-columns: 1fr; }
  .blog-side-media { aspect-ratio: 16 / 9; }
  .blog-side-body { padding: 14px 16px 16px; }
  .blog-layout { grid-template-columns: 1fr; gap: 56px; }
  .blog-sidebar { position: static; }
  .blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .blog-grid, .blog-grid--3 { grid-template-columns: 1fr; }
  .blog-lead-side { flex-direction: column; }
  .blog-lead-body { padding: 24px 22px 26px; }
  .post-cover { margin-top: 0; }
  .post-cover img { border-radius: var(--radius-lg); max-height: 280px; }
  .blog-subscribe { flex-direction: column; }
  .blog-subscribe button { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   ANALYSIS REPORT PAGE — exec summary + data tables
   ═══════════════════════════════════════════════════ */
/* Dual-column: report content + sticky archive sidebar */
.report-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px var(--gutter) 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}
.report-main { min-width: 0; }   /* let wide tables scroll, not stretch the grid */

/* ── Archive sidebar ── */
.report-archive { position: relative; }
.report-archive-inner {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  padding: 22px 22px 24px;
}
.report-archive-title {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.report-archive-year {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
  color: var(--text-muted);
  margin: 14px 0 6px;
}
.report-archive-list { list-style: none; margin: 0; padding: 0; }
.report-archive-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-mid);
  border-left: 2px solid transparent;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.report-archive-link:hover { background: var(--surface-subtle); color: var(--navy); }
.report-archive-link.is-current {
  background: var(--surface-subtle);
  color: var(--navy);
  font-weight: var(--fw-semibold);
  border-left-color: var(--gold);
}
.report-archive-month { white-space: nowrap; }
.report-archive-badge {
  font-family: var(--font-family);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: var(--gold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.report-archive-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.report-archive-all {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-family);
  font-weight: var(--fw-semibold);
  font-size: 13.5px;
  color: var(--navy);
  text-decoration: none;
}
.report-archive-all:hover { color: var(--gold-dark); }

@media (max-width: 900px) {
  .report-layout { grid-template-columns: 1fr; gap: 28px; }
  .report-archive-inner { position: static; }
}
.report-meta-card {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 12px 34px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  margin-bottom: 26px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
}
.report-credit { display: inline-flex; align-items: baseline; gap: 8px; }
/* Editor is the longest credit — drop it to its own line beneath the short ones. */
.report-credit--editor { order: 1; flex-basis: 100%; }
.report-credit-label {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--gold-dark);
  white-space: nowrap;
}
.report-credit-dot { color: var(--gold); font-weight: var(--fw-bold); }
.report-credit-value { color: var(--text-dark); font-weight: var(--fw-medium); }
.report-credit-role { color: var(--text-mid); font-weight: var(--fw-regular); }
.report-lede {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
}
.report-section { margin-top: 44px; }
.report-section > h2 {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  letter-spacing: -.015em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-default);
}
.report-section h3 {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--navy);
  margin: 22px 0 8px;
}
.report-section p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

/* Data tables */
.report-table-wrap { overflow-x: auto; margin: 6px 0; -webkit-overflow-scrolling: touch; }
.report-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14.5px;
  min-width: 480px;
}
.report-table th,
.report-table td {
  padding: 11px 14px;
  text-align: right;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}
.report-table th:first-child,
.report-table td:first-child { text-align: left; white-space: normal; }
.report-table thead th {
  background: var(--navy-dark);
  color: #fff;
  font-family: var(--font-family);
  font-weight: var(--fw-semibold);
  font-size: 13px;
  letter-spacing: .02em;
  border-bottom: none;
}
.report-table tbody tr:nth-child(even) { background: var(--surface-subtle); }
.report-table tbody tr:hover { background: rgba(6,30,117,.04); }
.report-table tr.sub td {
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  background: rgba(6,30,117,.05);
}
.report-table .up   { color: #15803D; font-weight: var(--fw-semibold); }
.report-table .down { color: #B91C1C; font-weight: var(--fw-semibold); }
.report-note { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* Chart panels */
.report-chart-wrap {
  position: relative;
  height: 340px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 18px 14px;
  margin: 6px 0 14px;
  box-shadow: var(--shadow-card);
}
.report-chart-wrap canvas { width: 100% !important; }
@media (max-width: 680px) { .report-chart-wrap { height: 280px; } }

.report-foot { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border-subtle); }
.report-disclaimer { font-family: var(--font-body); font-size: 12.5px; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 680px) {
  .report-body { padding-top: 32px; }
  .report-lede { font-size: 16.5px; }
}
