/* BSI Insights — Ghost Theme Stylesheet
   Brand: Cormorant Garamond (display) + DM Mono (body)
   Palette: ink/paper/accent — see variables below
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:         #0e0e0c;
  --ink-mid:     #3a3a36;
  --ink-light:   #7a7a72;
  --paper:       #f5f2ea;
  --white:       #ffffff;
  --rule:        #d4d0c4;
  --rule-light:  #e8e5da;
  --accent:      #b8460a;
  --accent-dark: #7a2e06;
  --accent-mid:  #d4622a;
  --accent-tint: #f0ece0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ──────────────────────────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  display: block;
  height: 32px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 8px 18px;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--ink-mid) !important; }

/* ─── SITE HEADER (index) ───────────────────────────────────────────────────── */

.site-header {
  background: var(--ink);
  padding: 120px 48px 64px;
  margin-top: 60px;
  border-bottom: 3px solid var(--accent);
}

.site-header-inner {
  max-width: 760px;
  margin: 0 auto;
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}

.site-header-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
}

.site-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--paper);
  margin-bottom: 16px;
}

.site-header-desc {
  font-size: 10px;
  font-weight: 300;
  color: #8a8a82;
  line-height: 1.7;
  max-width: 520px;
}

/* ─── POST LIST ─────────────────────────────────────────────────────────────── */

.post-feed {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px 100px;
}

.post-card {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}

.post-card:first-child { padding-top: 0; }
.post-card:last-child { border-bottom: none; }

.post-card-tag {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.post-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.post-card-title a:hover { color: var(--ink-mid); }

.post-card-excerpt {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 580px;
}

.post-card-meta {
  font-size: 9px;
  font-weight: 300;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-card-read {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.post-card-read:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─── PAGINATION ────────────────────────────────────────────────────────────── */

.pagination {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.pagination a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--rule);
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
}

.pagination a:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.pagination-info {
  font-size: 9px;
  font-weight: 300;
  color: var(--ink-light);
}

/* ─── POST HEADER ───────────────────────────────────────────────────────────── */

.post-header {
  background: var(--ink);
  padding: 120px 48px 64px;
  margin-top: 60px;
}

.post-header-inner {
  max-width: 760px;
  margin: 0 auto;
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}

.post-header-tag {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
}

.post-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 16px;
}

.post-header-meta {
  font-size: 9px;
  font-weight: 300;
  color: #8a8a82;
  line-height: 1.6;
}

/* ─── POST BODY ─────────────────────────────────────────────────────────────── */

.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 48px 0;
}

.post-content p {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.post-content p:last-child { margin-bottom: 0; }

.post-content strong {
  font-weight: 400;
  color: var(--ink);
}

.post-content em {
  font-style: italic;
}

.post-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 48px 0 16px;
}

.post-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin: 36px 0 12px;
}

.post-content hr {
  border: none;
  border-top: 1px solid var(--rule-light);
  margin: 48px 0;
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  background: var(--white);
  margin: 32px 0;
}

.post-content blockquote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.4;
  margin-bottom: 0;
}

.post-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.post-content a:hover { color: var(--ink-mid); }

.post-content ul, .post-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.post-content li {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* ─── GAP BLOCKS (why-ai-projects-fail article) ────────────────────────────── */

.gap-block {
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  background: var(--white);
  margin: 32px 0;
}

.gap-number {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.gap-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.gap-body {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ─── PILLAR BLOCKS (five-pillars article) ──────────────────────────────────── */

.pillar-block {
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  background: var(--white);
  margin: 32px 0;
}

.pillar-number {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.pillar-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.pillar-body {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.pillar-body:last-child { margin-bottom: 0; }

.pillar-signal {
  background: var(--accent-tint);
  padding: 16px 20px;
  margin-top: 16px;
}

.pillar-signal-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}

/* ─── RELATED READING ───────────────────────────────────────────────────────── */

.article-related {
  background: var(--accent-tint);
  border-left: 3px solid var(--rule);
  padding: 24px 28px;
  margin: 48px 0 0;
}

.article-related-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.article-related-link {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}

.article-related-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* Ghost card types */
.kg-card { margin: 32px 0; }
.kg-image { max-width: 100%; height: auto; display: block; }
.kg-width-wide { margin-left: -80px; margin-right: -80px; }
.kg-width-full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }

/* ─── POST INTRO (first paragraph as pull quote) ────────────────────────────── */

.post-content > p:first-child,
.post-intro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.4;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

/* ─── POST CTA ──────────────────────────────────────────────────────────────── */

.post-cta {
  max-width: 760px;
  margin: 64px auto 0;
  padding: 0 48px 100px;
}

.post-cta-inner {
  background: var(--ink);
  padding: 40px;
  border-left: 3px solid var(--accent);
}

.post-cta-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a4a46;
  margin-bottom: 12px;
}

.post-cta-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.post-cta-body {
  font-size: 11px;
  font-weight: 300;
  color: #8a8a82;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ─── SUBSCRIBE ─────────────────────────────────────────────────────────────── */

.subscribe-strip {
  background: var(--ink);
  border-top: 3px solid var(--accent);
  padding: 72px 48px;
}

.subscribe-strip-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.subscribe-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 16px;
}

.subscribe-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 16px;
}

.subscribe-desc {
  font-size: 10px;
  font-weight: 300;
  color: #8a8a82;
  line-height: 1.65;
}

.subscribe-form { width: 100%; }

.subscribe-field-row {
  display: flex;
  border-bottom: 1px solid #3a3a36;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.subscribe-field-row:focus-within { border-bottom-color: var(--paper); }

.subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 300;
  color: var(--paper);
  outline: none;
}

.subscribe-input::placeholder { color: #4a4a46; }

.subscribe-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-mid);
  padding: 12px 0 12px 16px;
  transition: color 0.2s;
  white-space: nowrap;
}

.subscribe-btn:hover { color: var(--paper); }

/* Ghost portal adds .success / .error to the form on submit */
.subscribe-success,
.subscribe-error {
  display: none;
  font-size: 9px;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 8px;
}

.subscribe-form.success .subscribe-field-row,
.subscribe-form.error   .subscribe-field-row { display: none; }

.subscribe-form.success .subscribe-success { display: block; color: #8a8a82; }
.subscribe-form.error   .subscribe-error   { display: block; color: var(--accent-mid); }

/* Post inline subscribe */

.post-subscribe {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 48px;
}

.post-subscribe-inner {
  max-width: 560px;
  margin: 0 auto;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.post-subscribe-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.post-subscribe-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.post-subscribe-form .subscribe-field-row {
  border-bottom-color: var(--rule);
}

.post-subscribe-form .subscribe-field-row:focus-within {
  border-bottom-color: var(--ink);
}

.post-subscribe-form .subscribe-input { color: var(--ink); }
.post-subscribe-form .subscribe-input::placeholder { color: var(--ink-light); }
.post-subscribe-form .subscribe-btn { color: var(--accent); }
.post-subscribe-form .subscribe-btn:hover { color: var(--accent-dark); }
.post-subscribe-form.success .subscribe-success { color: var(--ink-light); }

/* ─── BUTTONS ────────────────────────────────────────────────────────────────── */

.btn-primary {
  background: var(--accent);
  color: var(--paper);
  padding: 12px 24px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--accent-dark); }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--ink);
  padding: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  border-top: 3px solid var(--accent);
}

.footer-logo-img {
  display: block;
  height: 32px;
  width: auto;
  margin-bottom: 24px;
}

.footer-statement {
  font-size: 10px;
  font-weight: 300;
  color: #8a8a82;
  line-height: 1.7;
}

.footer-statement strong { font-weight: 400; color: #aeaea8; }

.footer-col-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a4a46;
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 9px;
  font-weight: 300;
  color: #8a8a82;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--paper); }

.footer-bottom {
  background: var(--ink);
  border-top: 1px solid #1e1e1a;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-size: 9px;
  font-weight: 300;
  color: #8a8a82;
}

.footer-legal a {
  color: #8a8a82;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--paper); }

.footer-domain {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #4a4a46;
}

/* ─── MOBILE NAV ────────────────────────────────────────────────────────────── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 24px;
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer-links li {
  border-bottom: 1px solid var(--rule-light);
}

.nav-drawer-links a {
  display: block;
  padding: 16px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-drawer-links a:hover { color: var(--ink-mid); }

.nav-drawer-cta {
  color: var(--accent) !important;
  font-weight: 400;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */

/* ─── CONTACT MODAL ─────────────────────────────────────────────────────────── */

.footer-contact-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px;
  font-weight: 300;
  color: #8a8a82;
  text-align: left;
  transition: color 0.2s;
}

.footer-contact-btn:hover { color: var(--paper); }

.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal.open { display: flex; }

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 12, 0.8);
}

.contact-modal-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
}

.contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--rule);
}

.contact-modal-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.contact-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.contact-modal-close:hover { color: var(--ink); }

.contact-modal-body { padding: 28px; }

.contact-modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-modal-desc {
  font-size: 10px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-field { margin-bottom: 20px; }

.contact-label {
  display: block;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.contact-optional {
  font-size: 7.5px;
  letter-spacing: 0.12em;
  color: var(--rule);
}

.contact-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.contact-input:focus { border-bottom-color: var(--ink); }

.contact-textarea { min-height: 64px; }

.contact-error {
  font-size: 9px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-modal-success {
  padding: 48px 28px;
  text-align: center;
}

.contact-success-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.contact-success-body {
  font-size: 10px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .site-header { padding: 100px 24px 48px; }
  .site-header-title { font-size: 36px; }
  .post-feed { padding: 48px 24px 72px; }
  .post-header { padding: 100px 24px 48px; }
  .post-header-title { font-size: 32px; }
  .post-content { padding: 60px 24px 0; }
  .post-cta { padding: 0 24px 72px; }
  .site-footer { grid-template-columns: 1fr; padding: 36px 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .subscribe-strip { padding: 48px 24px; }
  .subscribe-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .subscribe-heading { font-size: 28px; }
  .post-subscribe { padding: 36px 24px; }
}
