/* ============================================================
   NowYouKnowFinance — Blog Styles
   Dark theme. Gold accents. Oswald + Inter + JetBrains Mono.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:   #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary:  #1a1a1a;
  --bg-raised:    #1f1f1f;

  /* Text */
  --text-primary:   #f5f0e8;
  --text-secondary: #d4cfc5;
  --text-muted:     #8a8580;

  /* Accent */
  --gold:         #e8b84a;
  --gold-dim:     rgba(232, 184, 74, 0.15);
  --gold-mid:     rgba(232, 184, 74, 0.4);
  --cream:        #f5e6d3;

  /* Status */
  --green:  #4ade80;
  --red:    #f87171;

  /* Borders */
  --border-subtle:   1px solid rgba(232, 184, 74, 0.15);
  --border-glow:     1px solid rgba(232, 184, 74, 0.4);
  --border-standard: 1px solid rgba(255, 255, 255, 0.08);

  /* Shadows */
  --shadow-card:  0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 60px rgba(232, 184, 74, 0.12), 0 8px 25px rgba(0, 0, 0, 0.5);
  --shadow-glow:  0 0 30px rgba(232, 184, 74, 0.3);

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Layout */
  --max-width: 1400px;
  --sidebar-width: 260px;
  --sidebar-right-width: 280px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Nav ───────────────────────────────────────────────────── */
.blog-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: var(--border-subtle);
  height: 64px;
  display: flex;
  align-items: center;
}

.blog-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--cream) 100%);
  color: var(--bg-primary) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
  box-shadow: 0 6px 24px rgba(232, 184, 74, 0.35);
  transform: translateY(-1px);
}

/* ── Featured Article ──────────────────────────────────────── */
.featured-section {
  padding: 48px 0 0;
}

.featured-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  min-height: 380px;
}

.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,184,74,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.featured-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.featured-card:hover {
  border-color: var(--gold-mid);
  box-shadow: var(--shadow-hover);
}

.featured-body {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.featured-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.featured-category {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.featured-title a { transition: color 0.2s; }
.featured-title a:hover { color: var(--gold); }

.featured-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 540px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.featured-meta .dot { opacity: 0.4; }

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.2s var(--ease);
  width: fit-content;
}

.featured-link:hover { gap: 14px; }

.featured-image {
  overflow: hidden;
  background: var(--bg-raised);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.4s, transform 0.6s var(--ease);
}

.featured-card:hover .featured-image img {
  opacity: 0.9;
  transform: scale(1.03);
}

.featured-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.15;
}

/* ── Blog Layout (3-column) ────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr var(--sidebar-right-width);
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

/* ── Left Sidebar ──────────────────────────────────────────── */
.sidebar-left {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Right Sidebar ─────────────────────────────────────────── */
.sidebar-right {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Shared widget style */
.widget {
  background: var(--bg-secondary);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: var(--border-standard);
}

/* Search */
.search-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.2s var(--ease);
}

.search-input::placeholder { color: var(--text-muted); }

.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,184,74,0.1);
}

/* Category list */
.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.category-item:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.category-item.active {
  background: var(--gold-dim);
  color: var(--gold);
  font-weight: 600;
}

.category-item .count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 2px 6px;
  border-radius: 4px;
}

.category-item.active .count {
  background: rgba(232,184,74,0.15);
  color: var(--gold);
}

/* Tags cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.tag:hover, .tag.active {
  border-color: var(--gold-mid);
  color: var(--gold);
  background: var(--gold-dim);
}

/* Subscribe widget */
.subscribe-widget {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.subscribe-widget::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.subscribe-widget h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.subscribe-widget p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}

.btn-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--cream) 100%);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  box-shadow: 0 6px 24px rgba(232,184,74,0.35);
  transform: translateY(-2px);
}

/* Recent posts sidebar list */
.recent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recent-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: var(--border-standard);
  transition: all 0.2s var(--ease);
}

.recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-item:first-child { padding-top: 0; }

.recent-item a { display: block; }

.recent-item-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.45;
  transition: color 0.2s;
}

.recent-item:hover .recent-item-title { color: var(--gold); }

.recent-item-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Article Grid (center column) ──────────────────────────── */
.articles-main {}

.articles-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.articles-header h2 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.article-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
  font-size: 15px;
}

/* Article Card */
.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.article-card:hover {
  border-color: var(--gold-mid);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.article-card:hover::before { opacity: 0.7; }

.card-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-raised);
  flex-shrink: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.4s, transform 0.6s var(--ease);
}

.article-card:hover .card-img-wrap img {
  opacity: 0.85;
  transform: scale(1.04);
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, #1c1c1c 0%, #141414 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.12;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.card-category {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  transition: color 0.2s;
}

.article-card:hover .card-title { color: var(--gold); }

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: var(--border-standard);
}

.card-meta .dot { opacity: 0.4; }

/* ── Post Page ─────────────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 2rem 80px;
  align-items: start;
}

/* Post Header */
.post-header {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: var(--border-standard);
}

.post-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.post-category-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-mid);
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.post-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 20px;
  border-left: 2px solid var(--gold-mid);
}

.post-hero {
  margin-bottom: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-standard);
}

.post-hero img {
  width: 100%;
  opacity: 0.85;
}

/* Post Body Typography */
.post-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 48px 0 18px;
  padding-bottom: 12px;
  border-bottom: var(--border-standard);
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 32px 0 12px;
}

.post-body p { margin-bottom: 24px; }

.post-body ul, .post-body ol {
  margin: 0 0 24px 24px;
}

.post-body li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.post-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.post-body em { color: var(--cream); font-style: italic; }

.post-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:hover { color: var(--cream); }

.post-body code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-tertiary);
  border: var(--border-standard);
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--gold);
}

.post-body pre {
  background: var(--bg-secondary);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  overflow-x: auto;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.6;
}

.post-body pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--cream);
  font-size: inherit;
}

.post-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 0 0 28px;
  padding: 16px 20px;
  background: var(--bg-tertiary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
}

.post-body hr {
  border: none;
  border-top: var(--border-standard);
  margin: 48px 0;
}

/* Post sidebar */
.post-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Post CTA */
.post-cta {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.post-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.post-cta h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.post-cta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.cta-disclaimer {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 0 !important;
}

/* Related posts */
.related-section {
  border-top: var(--border-standard);
  padding: 48px 0 80px;
  margin-top: 0;
}

.related-section .container {}

.related-section h2 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Blog Index Header ─────────────────────────────────────── */
.blog-hero {
  padding: 48px 0 0;
  border-bottom: var(--border-standard);
  margin-bottom: 0;
}

.blog-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 20px;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-hero h1 span { color: var(--gold); }

.blog-hero p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin-top: 8px;
}

/* ── Footer ────────────────────────────────────────────────── */
.blog-footer {
  border-top: var(--border-subtle);
  padding: 32px 0;
  background: var(--bg-secondary);
}

.blog-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-footer p {
  font-size: 13px;
  color: var(--text-muted);
}

.blog-footer a { color: var(--text-muted); transition: color 0.2s; }
.blog-footer a:hover { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root {
    --sidebar-width: 220px;
    --sidebar-right-width: 240px;
  }

  .blog-layout { gap: 28px; }
  .featured-card { grid-template-columns: 1fr 320px; }
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-left, .sidebar-right {
    position: static;
  }

  .sidebar-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-image { min-height: 220px; }
  .featured-placeholder { min-height: 220px; }

  .article-grid { grid-template-columns: repeat(2, 1fr); }

  .related-grid { grid-template-columns: repeat(2, 1fr); }

  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  .blog-layout { padding-top: 32px; padding-bottom: 48px; }

  .featured-body { padding: 24px; }
  .featured-title { font-size: 22px; }

  .article-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }

  .sidebar-left { grid-template-columns: 1fr; }

  .blog-footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nav-links a:not(.nav-cta) { display: none; }

  .post-layout { padding: 32px 1rem 48px; }
  .blog-hero h1 { font-size: 26px; }
}
