/* ======================================================================
   ZIDLE MACRO STRATEGY GROUP — Ghost Theme Stylesheet
   Navy (#0F1C2E) + Copper (#B87333) + Cream (#FAF8F5)
   Typography: Playfair Display (headlines) + DM Sans (body)
   ====================================================================== */

/* ===== RESET & BASE ===== */
:root {
  --navy: #0F1C2E;
  --navy-mid: #1B2A4A;
  --navy-light: #243654;
  --copper: #B87333;
  --copper-light: #D4956A;
  --copper-dark: #96592A;
  --copper-glow: rgba(184, 115, 51, 0.12);
  --cream: #FAF8F5;
  --cream-dark: #F0ECE6;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #8A8A8A;
  --border: #E2DDD6;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== CREDENTIAL BAR ===== */
.credential-bar {
  background: var(--navy);
  padding: 10px 0;
  text-align: center;
  border-bottom: 2px solid var(--copper);
}
.credential-bar p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 20px;
}
.credential-bar span {
  color: var(--copper-light);
  font-weight: 600;
}

/* ===== NAVIGATION ===== */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.nav-logo {
  display: flex;
  align-items: baseline;
  text-decoration: none;
}
.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-logo-mark em {
  font-style: normal;
  color: var(--copper);
}
.nav-logo-text {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-left: 14px;
  position: relative;
  top: -1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15,28,46,0.2);
}

/* Mobile Nav Toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,115,51,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(36,54,84,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 72px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--copper);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-headline em {
  font-style: italic;
  color: var(--copper-light);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 530px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Buttons */
.btn-primary {
  background: var(--copper);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,115,51,0.3);
}
.btn-secondary {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* Hero Sidebar */
.hero-sidebar {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 28px 28px 20px;
  backdrop-filter: blur(10px);
}
.hero-sidebar-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hero-call-item {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hero-call-item:last-child { border: none; padding-bottom: 0; }
.hero-call-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 5px;
}
.hero-call-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.hero-call-title:hover { color: var(--copper-light); }
.hero-call-date {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* ===== TAG COLORS (hero + cards) ===== */
/* These map to Ghost tag slugs. Create tags named: macro, strategy, alternatives, allocation, thematic */
.tag-macro, .card-tag-macro { background: rgba(184,115,51,0.2); color: var(--copper-light); }
.tag-strategy, .card-tag-strategy { background: rgba(130,150,200,0.2); color: #A0B4E0; }
.tag-alternatives, .card-tag-alternatives { background: rgba(100,180,160,0.2); color: #7EC8B4; }
.tag-allocation, .card-tag-allocation { background: rgba(200,160,100,0.2); color: #D4B87A; }
.tag-thematic, .card-tag-thematic { background: rgba(180,120,200,0.2); color: #C090D8; }

/* Light background tag variants (for content cards on cream) */
.content-card .card-tag-macro { background: #EDE0D0; color: var(--copper-dark); }
.content-card .card-tag-strategy { background: #D6DEF0; color: #3A4E80; }
.content-card .card-tag-alternatives { background: #D6EDE6; color: #2A7B5A; }
.content-card .card-tag-allocation { background: #F0E8D6; color: #8A6A2A; }
.content-card .card-tag-thematic { background: #E8D6F0; color: #6A3A80; }

/* ===== TAGLINE STRIP ===== */
.tagline-strip {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 17px 40px;
  text-align: center;
}
.tagline-strip p {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}
.tagline-strip em {
  color: var(--copper);
  font-style: italic;
}

/* ===== SECTION LAYOUT ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 80px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
}
.section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.section-link:hover { color: var(--copper-dark); }

/* ===== CONTENT GRID ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px 26px 22px;
  transition: all 0.3s;
}
.content-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.content-card-featured {
  grid-column: 1 / -1;
  border-left: 4px solid var(--copper);
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.card-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
}
.card-access {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.access-free { color: #2A7B5A; }
.access-paid { color: var(--copper); }
.card-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}
.card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.content-card-featured .card-title { font-size: 22px; }
.card-excerpt {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.card-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card-read-more:hover { gap: 10px; }
.card-read-more::after { content: '\2192'; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; width: 40%;
  background: radial-gradient(ellipse at center, rgba(184,115,51,0.05), transparent 70%);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.about-headline {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-text {
  font-size: 15.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-creds {
  list-style: none;
  margin-top: 28px;
}
.about-creds li {
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-creds li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PRICING CARDS ===== */
.pricing-preview { display: flex; flex-direction: column; gap: 14px; }
.pricing-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 22px 26px;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: var(--copper);
  background: rgba(255,255,255,0.05);
}
.pricing-card-featured {
  border-color: var(--copper);
  background: rgba(184,115,51,0.07);
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.pricing-price {
  font-size: 13.5px;
  color: var(--copper-light);
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.pricing-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--copper-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.pricing-cta:hover { color: var(--white); }

/* ===== EMAIL CAPTURE ===== */
.email-section {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.email-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 56px 40px;
  text-align: center;
}
.email-headline {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.email-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 26px;
  line-height: 1.6;
}
.email-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.email-input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--copper); }
.email-input::placeholder { color: var(--text-muted); }
.email-btn {
  background: var(--navy);
  color: var(--white);
  padding: 13px 26px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.email-btn:hover { background: var(--navy-light); }
.email-fine { font-size: 12px; color: var(--text-muted); margin-top: 14px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--copper);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.28); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ===== POST TEMPLATE ===== */
.post-header {
  background: var(--navy);
  padding: 60px 40px 56px;
  text-align: center;
}
.post-header-inner {
  max-width: 720px;
  margin: 0 auto;
}
.post-meta-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.post-reading-time {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.post-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.post-excerpt {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.post-meta-bottom {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.post-date { margin-right: 6px; }
.post-feature-image {
  max-width: 900px;
  margin: -20px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.post-feature-image img {
  border-radius: 6px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.post-feature-image figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Post Content */
.post-content {
  max-width: 720px;
  margin: 48px auto 64px;
  padding: 0 40px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
}
.post-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
}
.post-content p {
  margin-bottom: 20px;
}
.post-content a {
  color: var(--copper);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.post-content a:hover { color: var(--copper-dark); }
.post-content blockquote {
  border-left: 3px solid var(--copper);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}
.post-content ul, .post-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.post-content li { margin-bottom: 8px; }
.post-content figure {
  margin: 32px 0;
}
.post-content figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}
.post-content img {
  border-radius: 4px;
}
.post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
.post-content th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
}
.post-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.post-content tr:nth-child(even) td {
  background: var(--cream-dark);
}

/* Ghost content cards (bookmark, gallery, etc.) */
.kg-bookmark-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin: 28px 0;
}
.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}
.kg-bookmark-content {
  flex: 1;
  padding: 20px;
}
.kg-bookmark-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.kg-bookmark-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}
/* Ghost required width classes */
.kg-width-wide {
  max-width: 1040px;
  margin-left: calc(50% - 520px);
  margin-right: calc(50% - 520px);
}
.kg-width-full {
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.kg-width-wide img,
.kg-width-full img {
  width: 100%;
}
.kg-image-card img {
  border-radius: 4px;
}
.kg-gallery-card {
  margin: 28px 0;
}
.kg-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kg-gallery-image img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Post Footer */
.post-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 64px;
}
.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.post-tag-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all 0.2s;
}
.post-tag-link:hover {
  border-color: var(--copper);
  background: var(--copper-glow);
}

/* Author Card */
.author-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: var(--cream-dark);
  border-radius: 8px;
  margin-top: 24px;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.author-name a { text-decoration: none; }
.author-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Related Posts */
.related-posts {
  border-top: 1px solid var(--border);
}

/* ===== PAGE TEMPLATE ===== */
.page-header {
  background: var(--navy);
  padding: 60px 40px 56px;
  text-align: center;
}
.page-header-inner {
  max-width: 720px;
  margin: 0 auto;
}
.page-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-excerpt {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--navy);
  padding: 60px 40px;
}
.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-hero-headline {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.about-hero-role {
  font-size: 16px;
  color: var(--copper-light);
  letter-spacing: 0.5px;
}
.about-bio-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}
.about-bio-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
}
.about-bio-main {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
}
.about-bio-main p { margin-bottom: 20px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--copper);
}
.timeline-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border: none; }
.timeline-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.timeline-org {
  font-size: 13px;
  color: var(--text-secondary);
}
.timeline-period {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.sidebar-media-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== TAG ARCHIVE ===== */
.tag-header {
  background: var(--navy);
  padding: 48px 40px;
  text-align: center;
}
.tag-header-inner {
  max-width: 720px;
  margin: 0 auto;
}
.tag-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 8px;
}
.tag-description {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ===== ERROR PAGE ===== */
.error-page {
  text-align: center;
  padding: 120px 40px;
}
.error-code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.error-message {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 40px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}
.pagination a {
  color: var(--copper);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.pagination a:hover { color: var(--copper-dark); }

/* ===== GHOST PORTAL OVERRIDES ===== */
/* Style the Ghost signup/signin portal to match ZMSG brand */
.gh-portal-powered { display: none !important; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeInUp 0.6s ease both 0.1s; }
.hero-headline { animation: fadeInUp 0.6s ease both 0.2s; }
.hero-sub { animation: fadeInUp 0.6s ease both 0.3s; }
.hero-actions { animation: fadeInUp 0.6s ease both 0.4s; }
.hero-sidebar { animation: fadeInUp 0.6s ease both 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px 56px;
  }
  .hero-sidebar { display: none; }
  .hero-headline { font-size: 34px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-card-featured { grid-column: 1; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }
  .about-bio-inner { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .site-nav { padding: 0 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    gap: 16px;
  }
  .nav-links.nav-open { display: flex; }
  .nav-mobile-toggle { display: flex; }
  .nav-logo-text { display: none; }
  .section { padding: 56px 24px 64px; }
  .credential-bar p { font-size: 10px; padding: 0 16px; }
  .email-form { flex-direction: column; }
  .post-title { font-size: 32px; }
  .post-content { padding: 0 24px; }
  .post-footer { padding: 0 24px 48px; }
  .post-feature-image { padding: 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .post-title { font-size: 28px; }
  .about-hero-headline { font-size: 36px; }
  .footer-inner { grid-template-columns: 1fr; }
}
