/* ── RESET & VARIABLES ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #0f172a;
  --slate:        #334155;
  --muted:        #64748b;
  --border:       #e2e8f0;
  --bg:           #f8fafc;
  --white:        #ffffff;
  --teal:         #0d9488;
  --teal-light:   #ccfbf1;
  --accent:       #6366f1;
  --accent-light: #eef2ff;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── NAV ────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 800; font-size: 1.2rem; color: var(--navy);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.logo-img { height: 32px; width: auto; }
.logo-badge {
  background: var(--teal); color: white;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 2px 7px; border-radius: 4px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--slate);
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--navy) !important; color: white !important;
  padding: 8px 18px; border-radius: 8px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal) !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all 0.3s;
}

/* ── HERO ───────────────────────────────────────── */
.hero-section { max-width: 1200px; margin: 48px auto 0; padding: 0 24px; }
.hero {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-light); color: var(--teal);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; }
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 800; line-height: 1.2;
  color: var(--navy); margin-bottom: 20px;
}
.hero-summary {
  font-size: 1.05rem; color: var(--slate); line-height: 1.75;
  margin-bottom: 28px; max-width: 540px;
}
.hero-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; color: var(--muted); margin-bottom: 28px;
}
.hero-avatar, .hero-avatar-img {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover;
}
.hero-avatar {
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.8rem;
}
.hero-read-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 12px 24px; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
}
.hero-read-btn:hover { background: var(--teal); transform: translateY(-1px); }
.hero-read-btn svg { transition: transform 0.2s; }
.hero-read-btn:hover svg { transform: translateX(3px); }
.hero-image {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #0d9488 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-image-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-inner { text-align: center; padding: 32px; color: white; }
.hero-image-icon { font-size: 4rem; margin-bottom: 16px; display: block; }
.hero-image-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--teal); color: white;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
.hero-image-label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.7; margin-bottom: 8px;
}
.hero-image-title {
  font-family: var(--font-serif); font-size: 1.3rem;
  font-weight: 700; line-height: 1.3;
}

/* ── SEARCH ─────────────────────────────────────── */
.search-bar-section {
  max-width: 1200px; margin: 40px auto 0; padding: 0 24px;
  position: relative;
}
.search-bar {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--border); border-radius: 14px;
  padding: 14px 20px; background: var(--bg);
  transition: border-color 0.2s; cursor: text;
}
.search-bar:focus-within { border-color: var(--teal); background: white; }
.search-bar svg { color: var(--muted); flex-shrink: 0; }
.search-bar input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 1rem; color: var(--navy); font-family: var(--font-sans);
}
.search-bar input::placeholder { color: var(--muted); }
.search-hint {
  font-size: 0.78rem; color: var(--muted); white-space: nowrap;
  background: white; border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 6px;
}
.search-results {
  position: absolute; top: calc(100% + 8px); left: 24px; right: 24px;
  background: white; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1); z-index: 50;
  max-height: 400px; overflow-y: auto;
}
.search-result-item {
  display: block; padding: 14px 20px; text-decoration: none;
  border-bottom: 1px solid var(--border); transition: background 0.15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--bg); }
.search-result-title { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.search-result-meta { font-size: 0.8rem; color: var(--muted); }
.search-no-results { padding: 20px; text-align: center; color: var(--muted); }

/* ── SECTION ────────────────────────────────────── */
.section { max-width: 1200px; margin: 72px auto 0; padding: 0 24px; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.section-title {
  font-size: 1.4rem; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; gap: 12px;
}
.section-title-accent {
  width: 4px; height: 24px; background: var(--teal); border-radius: 2px;
}
.section-link {
  font-size: 0.85rem; font-weight: 600; color: var(--teal);
  text-decoration: none;
}
.section-link:hover { text-decoration: underline; }

/* ── CARDS ──────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: white;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.card-thumb-link { display: block; }
.card-thumb {
  aspect-ratio: 16/9; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.card-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.card-thumb-gradient {
  background: linear-gradient(135deg, #1e3a5f, #0d9488);
}
.card-thumb-emoji { font-size: 2.5rem; }
.card-cat {
  position: absolute; top: 12px; left: 12px;
  background: white; color: var(--navy);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
}
.card-body { padding: 20px; }
.card-title {
  font-size: 1rem; font-weight: 700; line-height: 1.4;
  color: var(--navy); margin-bottom: 10px;
}
.card-title a { text-decoration: none; color: inherit; }
.card-title a:hover { color: var(--teal); }
.card-excerpt {
  font-size: 0.85rem; color: var(--muted); line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--muted);
  padding-top: 12px; border-top: 1px solid var(--border);
}
.card-author { display: flex; align-items: center; gap: 8px; }
.card-avatar-img, .card-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.card-avatar {
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.6rem; font-weight: 700;
  overflow: hidden;
}

/* ── CATEGORIES ─────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 20px; text-align: center;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  display: block;
}
.cat-card:hover {
  border-color: var(--teal); background: var(--teal-light);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.1);
}
.cat-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.cat-icon img { width: 32px; height: 32px; margin: 0 auto; }
.cat-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cat-count { font-size: 0.78rem; color: var(--muted); }

/* ── PODCAST ────────────────────────────────────── */
.podcast-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.podcast-card {
  display: flex; gap: 16px; align-items: center;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 20px; background: white;
  transition: box-shadow 0.2s, transform 0.2s;
}
.podcast-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.podcast-thumb {
  width: 80px; height: 80px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  overflow: hidden;
}
.podcast-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.pt-1 { background: linear-gradient(135deg, #0f172a, #0d9488); }
.pt-2 { background: linear-gradient(135deg, #1e1b4b, #6366f1); }
.pt-3 { background: linear-gradient(135deg, #064e3b, #10b981); }
.pt-4 { background: linear-gradient(135deg, #4c1d95, #8b5cf6); }
.podcast-info { flex: 1; min-width: 0; }
.podcast-ep {
  font-size: 0.7rem; font-weight: 700; color: var(--teal);
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 4px;
}
.podcast-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.podcast-meta { font-size: 0.78rem; color: var(--muted); }
.podcast-play {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: white; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; font-size: 0.8rem; text-decoration: none;
}
.podcast-card:hover .podcast-play { background: var(--teal); }

/* ── NEWSLETTER ─────────────────────────────────── */
.newsletter-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 50%, #0f3460 100%);
  margin: 72px 0 0; padding: 72px 24px; position: relative; overflow: hidden;
}
.newsletter-band::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.25) 0%, transparent 70%);
}
.newsletter-band::after {
  content: ''; position: absolute; bottom: -80px; left: 10%;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
}
.newsletter-inner {
  max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.newsletter-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.newsletter-inner h2 {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 800;
  color: white; line-height: 1.25; margin-bottom: 14px;
}
.newsletter-inner p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.newsletter-form {
  display: flex; gap: 12px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 8px 8px 8px 20px;
}
.newsletter-form input {
  flex: 1; background: transparent; border: none; outline: none;
  color: white; font-size: 0.95rem; font-family: var(--font-sans);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  background: var(--teal); color: white; border: none; border-radius: 10px;
  padding: 12px 24px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
  font-family: var(--font-sans);
}
.newsletter-form button:hover { background: #0f766e; }
.newsletter-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 14px; }
.newsletter-success {
  color: var(--teal); font-weight: 600; font-size: 1rem;
  padding: 16px; background: rgba(13,148,136,0.1); border-radius: 10px;
  margin-top: 16px;
}

/* ── AUTHORS ────────────────────────────────────── */
.authors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.author-card {
  border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 28px; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.author-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.08); transform: translateY(-3px); }
.author-photo-wrap { margin: 0 auto 16px; width: 80px; height: 80px; }
.author-photo-img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
}
.author-photo {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800; color: white;
}
.ap-1 { background: linear-gradient(135deg, var(--teal), #34d399); }
.ap-2 { background: linear-gradient(135deg, var(--accent), #818cf8); }
.ap-3 { background: linear-gradient(135deg, #dc2626, #f87171); }
.author-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.author-role {
  font-size: 0.8rem; font-weight: 600; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.author-bio { font-size: 0.88rem; color: var(--slate); line-height: 1.65; margin-bottom: 20px; }
.author-articles {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  background: var(--bg); padding: 6px 14px; border-radius: 20px;
}

/* ── POST ARTICLE ───────────────────────────────── */
.post-header {
  background: var(--bg); padding: 64px 24px 48px; border-bottom: 1px solid var(--border);
}
.post-header-inner { max-width: 740px; margin: 0 auto; }
.post-title {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 800;
  line-height: 1.2; color: var(--navy); margin: 16px 0 24px;
}
.post-excerpt { font-size: 1.15rem; color: var(--slate); line-height: 1.7; margin-bottom: 28px; }
.post-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--muted);
}
.post-author-avatar, .post-author-avatar-fallback {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover;
}
.post-author-avatar-fallback {
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700;
}
.post-author-name { font-weight: 600; color: var(--navy); text-decoration: none; }
.post-author-name:hover { color: var(--teal); }
.post-meta-sub { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.post-tag-badge {
  display: inline-flex; align-items: center;
  background: var(--teal-light); color: var(--teal);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  text-decoration: none; transition: background 0.2s;
}
.post-tag-badge:hover { background: var(--teal); color: white; }
.post-feature-image { margin: 0 auto; max-width: 1200px; padding: 0 24px; margin-top: 48px; }
.post-feature-image img { width: 100%; border-radius: 16px; }
.post-feature-image figcaption {
  text-align: center; font-size: 0.82rem; color: var(--muted);
  margin-top: 10px; font-style: italic;
}

/* ── POST CONTENT ───────────────────────────────── */
.post-content {
  max-width: 740px; margin: 48px auto 64px; padding: 0 24px;
  font-size: 1.05rem; line-height: 1.8; color: var(--slate);
}
.post-content h2, .post-content h3, .post-content h4 {
  font-family: var(--font-serif); color: var(--navy);
  margin: 48px 0 16px; line-height: 1.3;
}
.post-content h2 { font-size: 1.8rem; }
.post-content h3 { font-size: 1.4rem; }
.post-content h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 700; }
.post-content p { margin-bottom: 24px; }
.post-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: #0f766e; }
.post-content ul, .post-content ol { margin: 0 0 24px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 4px solid var(--teal); margin: 32px 0;
  padding: 16px 24px; background: var(--teal-light); border-radius: 0 8px 8px 0;
  font-style: italic; font-size: 1.1rem;
}
.post-content img { border-radius: 12px; margin: 32px auto; }
.post-content pre {
  background: var(--navy); color: #e2e8f0; border-radius: 10px;
  padding: 24px; overflow-x: auto; margin: 32px 0; font-size: 0.9rem;
}
.post-content code {
  background: var(--bg); color: var(--teal);
  padding: 2px 6px; border-radius: 4px; font-size: 0.9em;
}
.post-content pre code { background: none; color: inherit; padding: 0; }
.post-content hr { border: none; border-top: 2px solid var(--border); margin: 48px 0; }
.post-content figure { margin: 32px 0; }
.post-content figcaption { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 8px; }

/* Ghost card styles */
.gh-content .kg-card { margin: 32px 0; }
.gh-content .kg-image-card img { border-radius: 12px; }
.gh-content .kg-embed-card { display: flex; flex-direction: column; align-items: center; }
.gh-content .kg-toggle-card { border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.gh-content .kg-callout-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--teal-light); border-radius: 10px; padding: 20px;
}

/* Required Ghost card width classes */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 32px auto;
  transform: translateX(calc(50% - 50vw + 80px));
}
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.kg-width-full img, .kg-width-wide img { width: 100%; }

.post-footer { max-width: 740px; margin: 0 auto; padding: 0 24px 48px; }
.post-tags-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.post-share {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--muted); padding-top: 24px;
  border-top: 1px solid var(--border);
}
.share-btn {
  background: var(--bg); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 8px; text-decoration: none;
  font-weight: 600; font-size: 0.82rem; color: var(--navy);
  transition: all 0.2s;
}
.share-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ── COMMENTS ───────────────────────────────────── */
.post-comments-section {
  max-width: 740px; margin: 0 auto 64px; padding: 0 24px;
}
.post-comments-inner h3 {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 2px solid var(--border);
}

/* ── ARCHIVE HEADER ─────────────────────────────── */
.archive-header {
  background: var(--bg); padding: 64px 24px 48px; border-bottom: 1px solid var(--border);
}
.archive-header-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.archive-tag-icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px;
}
.archive-title {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 800;
  color: var(--navy); margin-bottom: 12px;
}
.archive-description {
  font-size: 1.05rem; color: var(--slate); line-height: 1.7;
  max-width: 560px; margin: 0 auto 16px;
}
.archive-meta { font-size: 0.85rem; color: var(--muted); }

/* Author header */
.author-header-photo {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 20px; display: block;
}
.author-header-photo-fallback {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 2rem; font-weight: 700;
  margin: 0 auto 20px;
}
.author-header-role {
  font-size: 0.85rem; font-weight: 600; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.author-header-links { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.author-link {
  background: white; border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 8px; text-decoration: none;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  transition: all 0.2s;
}
.author-link:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ── PAGINATION ─────────────────────────────────── */
.pagination-wrap { margin-top: 48px; }
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; font-size: 0.9rem;
}
.pagination a {
  background: white; border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 8px; text-decoration: none;
  font-weight: 600; color: var(--navy); transition: all 0.2s;
}
.pagination a:hover { background: var(--navy); color: white; border-color: var(--navy); }
.pagination .page-number { color: var(--muted); }

/* ── PAGE ARTICLE ───────────────────────────────── */
.page-article .post-header { background: var(--bg); }

/* ── FOOTER ─────────────────────────────────────── */
.site-footer {
  margin-top: 80px;
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo { color: white; margin-bottom: 12px; }
.footer-tagline { font-size: 0.875rem; line-height: 1.65; }
.footer-col h4 {
  color: white; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.875rem; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1200px; margin: 36px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .podcast-grid { grid-template-columns: 1fr; }
  .authors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-content h1 { font-size: 2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: white; padding: 32px 24px;
    border-top: 1px solid var(--border); gap: 20px; z-index: 99;
  }
  .nav-burger { display: flex; }
  .newsletter-inner h2 { font-size: 1.7rem; }
  .newsletter-form { flex-direction: column; border-radius: 12px; padding: 16px; }
  .newsletter-form input { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .post-title { font-size: 1.9rem; }
  .authors-grid { grid-template-columns: 1fr; }
}
