/*
 * ============================================================
 *  PUMPER GHOST THEME — Matches pumper.run design system
 * ============================================================
 *  Fonts: Inter (body), Satoshi/Plus Jakarta Sans (headings)
 *  Canvas: #FDFCFC warm white
 *  Scale: Fibonacci spacing
 * ============================================================
 */

/* ========== FIBONACCI DESIGN SCALE ========== */
:root {
  --sp-1: 1px;   --sp-2: 2px;   --sp-3: 3px;   --sp-5: 5px;
  --sp-8: 8px;   --sp-13: 13px; --sp-21: 21px;  --sp-34: 34px;
  --sp-55: 55px;  --sp-89: 89px; --sp-144: 144px;
  --fs-xs: 13px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 21px;
  --fs-lg: 34px;
  --fs-xl: 55px;
  --max-w-content: 987px;
  --max-w-wide: 1280px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
:focus-visible { outline: 2px solid #303030; outline-offset: 2px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FDFCFC;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.6;
  font-size: var(--fs-base);
}
h1, h2, h3, h4, h5, h6 { font-family: 'Satoshi', 'Plus Jakarta Sans', sans-serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ========== HIDE GHOST DEFAULT ELEMENTS ========== */
.gh-head, .gh-foot, .gh-navigation, .gh-header,
.site-header, #gh-head, [data-gh-head] { display: none !important; }
#ghost-portal-root .gh-portal-triggerbtn-container { bottom: 20px !important; }
body::before { display: none !important; }
/* Ghost admin/announcement bar — hide for logged-in users */
iframe[title="portal-trigger"], .gh-post-upgrade-cta,
[class*="gh-bar"], [class*="announcement"],
body > div:first-child:not(.nav):not(.mobile-menu):not(.blog-main):not(.footer) {
  display: none !important;
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-13);
  z-index: 200;
  padding: var(--sp-13) var(--sp-21);
  background: #303030;
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--sp-5);
}
.skip-link:focus { top: var(--sp-13); }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--sp-89);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-inner {
  width: 100%;
  height: var(--sp-89);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-13) clamp(var(--sp-34), -240px + 29.17vw, 320px);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid #eee;
  transition: border-color 0.25s ease;
}
.dropdown-open .nav-inner { border-bottom-color: transparent; background: #fff; backdrop-filter: none; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-13);
  width: 270px;
}
.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: var(--sp-5);
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand-name {
  font-weight: 600;
  font-size: var(--fs-md);
  color: #0f172a;
  letter-spacing: -0.5px;
  font-family: 'Satoshi', 'Plus Jakarta Sans', sans-serif;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-34);
}
.nav-link {
  font-weight: 300;
  font-size: var(--fs-base);
  color: #4a4b4d;
  line-height: var(--fs-md);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.nav-link:hover { color: #111; }
.nav-link-active { color: #111; font-weight: 500; }
.dropdown-arrow {
  width: 11px;
  height: 9px;
  transition: transform 0.2s ease;
}
.dropdown-open .dropdown-arrow { transform: rotate(180deg); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-13);
  width: 270px;
  justify-content: flex-end;
}
.btn-login {
  height: 44px;
  padding: 10px 20px;
  border: 1px solid #bbb;
  background: #fff;
  font-family: 'Satoshi', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.btn-login:hover { border-color: #888; transform: scale(1.04); }
.btn-try-free {
  height: 44px;
  padding: 10px 24px;
  background: #000;
  font-family: 'Satoshi', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: #fff;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: transform 0.15s ease;
}
.btn-try-free:hover { transform: scale(1.04); color: #fff; }

/* Nav right mobile */
.nav-right-mobile { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger-line {
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

/* Features dropdown */
.features-dropdown {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr;
  padding: var(--sp-21) clamp(var(--sp-34), -240px + 29.17vw, 320px) var(--sp-34);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  border: 1px solid #eee;
  border-top: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dropdown-open .features-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.features-dropdown-grid {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}
.fd-item {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-13);
  border-radius: var(--sp-8);
  transition: background 0.15s ease;
}
.fd-item:hover { background: #f2f2f2; }
.fd-icon { width: 20px; height: 20px; flex-shrink: 0; }
.fd-label {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 500;
  color: #666;
  transition: color 0.15s ease;
}
.fd-item:hover .fd-label { color: #1e1e1e; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--sp-89);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  display: none;
  overflow-y: auto;
}
.menu-open .mobile-menu { display: block; }
.mobile-menu-body { padding: var(--sp-21) var(--sp-34); }
.mobile-menu-links { display: flex; flex-direction: column; gap: var(--sp-5); }
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-13) 0;
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.mobile-chevron { transition: transform 0.2s ease; }
.mobile-features-panel {
  display: none;
  flex-direction: column;
  gap: var(--sp-5);
  padding: 0 0 var(--sp-13) var(--sp-21);
}
.mobile-features-panel.open { display: flex; }
.mobile-feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-8) 0;
  font-size: var(--fs-base);
  color: #555;
}
.mobile-feature-icon { width: 18px; height: 18px; }

/* ========== BLOG HERO ========== */
.blog-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px clamp(40px, 5vw, 80px) 60px;
  text-align: center;
  gap: 16px;
  background: #FDFCFC;
}
.blog-hero-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}
.blog-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgb(121, 113, 107);
  font-weight: 400;
  max-width: 560px;
}
.blog-hero-trust {
  font-size: var(--fs-base);
  color: #6b6b6b;
  margin-top: 4px;
}

/* ========== BLOG CONTAINER ========== */
.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) 80px;
}
.blog-main { background: #FDFCFC; }

/* ========== POST GRID ========== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  border-radius: 16px;
  background: #F5F3F1;
  overflow: hidden;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.075);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.post-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08), inset 0 0 0 0.5px rgba(0,0,0,0.075);
  transform: translateY(-2px);
}
.post-card-link { display: block; color: inherit; }
.post-card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #e8e6e3;
}
.post-card-image-default {
  background: linear-gradient(135deg, #ff8a00 0%, #ff2e00 100%);
  opacity: 0.15;
}
.post-card-content { padding: 24px; }
.post-card-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgb(121, 113, 107);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.post-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.post-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin-bottom: 16px;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  color: #999;
}
.post-card-author { font-weight: 500; color: #888; }
.post-card-date::before { content: '\00b7'; margin-right: 8px; }

/* ========== PAGINATION ========== */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 0 0;
}
.pagination-btn {
  padding: 10px 24px;
  background: #000;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: transform 0.15s ease;
}
.pagination-btn:hover { transform: scale(1.04); color: #fff; }
.pagination-info {
  font-size: var(--fs-sm);
  color: #999;
}

/* ========== SINGLE POST ========== */
.post-full { background: #FDFCFC; }
.post-header {
  padding: 60px clamp(24px, 5vw, 80px) 40px;
  text-align: center;
}
.post-header-inner {
  max-width: 720px;
  margin: 0 auto;
}
.post-header-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgb(121, 113, 107);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.post-header-tag:hover { color: #111; }
.post-header-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 16px;
}
.post-header-excerpt {
  font-size: 19px;
  line-height: 1.6;
  color: rgb(121, 113, 107);
  margin-bottom: 24px;
}
.post-header-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.post-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.post-meta-text { display: flex; flex-direction: column; text-align: left; }
.post-author-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #1a1a1a;
}
.post-meta-date {
  font-size: var(--fs-xs);
  color: #999;
}

/* Feature image */
.post-feature-image {
  max-width: 960px;
  margin: 0 auto 48px;
  padding: 0 clamp(24px, 5vw, 80px);
}
.post-feature-image img {
  width: 100%;
  border-radius: 12px;
}
.post-feature-image figcaption {
  text-align: center;
  font-size: var(--fs-xs);
  color: #999;
  margin-top: 12px;
}

/* ========== POST BODY ========== */
.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 40px) 60px;
  font-size: 17px;
  line-height: 1.75;
  color: #333;
}
.post-body h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 48px 0 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.post-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 40px 0 12px;
  line-height: 1.3;
}
.post-body p { margin-bottom: 24px; }
.post-body a {
  color: #111;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease;
}
.post-body a:hover { text-decoration-color: #111; }
.post-body ul, .post-body ol {
  margin: 0 0 24px 24px;
}
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 3px solid #e0ddd8;
  padding: 2px 0 2px 24px;
  margin: 32px 0;
  font-style: italic;
  color: #555;
}
.post-body pre {
  background: #f5f3f1;
  border-radius: 8px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.6;
}
.post-body code {
  font-family: 'JetBrains Mono', Menlo, Consolas, monospace;
  font-size: 0.9em;
}
.post-body p code {
  background: #f5f3f1;
  padding: 2px 6px;
  border-radius: 4px;
}
.post-body img {
  border-radius: 8px;
  margin: 32px 0;
}
.post-body figure {
  margin: 32px 0;
}
.post-body figcaption {
  text-align: center;
  font-size: var(--fs-xs);
  color: #999;
  margin-top: 12px;
}
.post-body hr {
  border: none;
  border-top: 1px solid #e8e6e3;
  margin: 48px 0;
}
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.post-body th, .post-body td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8e6e3;
  text-align: left;
  font-size: 15px;
}
.post-body th {
  font-weight: 700;
  color: #111;
  font-family: 'Satoshi', 'Plus Jakarta Sans', sans-serif;
}

/* Ghost content cards */
.kg-card { margin: 32px 0; }
.kg-image-card img { border-radius: 8px; }
.kg-width-wide { max-width: 960px; margin-left: auto; margin-right: auto; }
.kg-width-full {
  max-width: none;
  width: calc(100vw - 48px);
  margin-left: calc(50% - 50vw + 24px);
  margin-right: calc(50% - 50vw + 24px);
}
.kg-bookmark-card {
  background: #f5f3f1;
  border-radius: 12px;
  overflow: hidden;
}
.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}
.kg-bookmark-content {
  padding: 20px;
  flex: 1;
}
.kg-bookmark-title {
  font-weight: 600;
  font-size: var(--fs-base);
  color: #111;
  margin-bottom: 8px;
}
.kg-bookmark-description {
  font-size: var(--fs-sm);
  color: #666;
  line-height: 1.5;
}
.kg-bookmark-thumbnail {
  width: 200px;
  flex-shrink: 0;
}
.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kg-callout-card {
  background: #f5f3f1;
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.kg-callout-emoji { font-size: 20px; flex-shrink: 0; }
.kg-callout-text { flex: 1; }

/* ========== POST CTA BANNER ========== */
.post-cta-banner {
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 48px;
  background: #F5F3F1;
  border-radius: 20px;
  text-align: center;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.075);
}
.post-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.2;
}
.post-cta-sub {
  font-size: 17px;
  color: rgb(121, 113, 107);
  margin-bottom: 24px;
}
.post-cta-btn {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 16px 40px;
  background: #000;
  color: #fff;
  font-family: 'Satoshi', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.post-cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  color: #fff;
}

/* ========== RELATED POSTS ========== */
.related-posts {
  background: #FDFCFC;
  padding: 0 0 80px;
  border-top: 1px solid #e8e6e3;
}
.related-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 32px;
  padding-top: 60px;
}

/* ========== AUTHOR HEADER ========== */
.author-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.author-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* ========== ERROR PAGE ========== */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 80px 40px;
  text-align: center;
  gap: 16px;
}
.error-code {
  font-size: 120px;
  font-weight: 800;
  color: #e8e6e3;
  line-height: 1;
}
.error-message {
  font-size: 19px;
  color: rgb(121, 113, 107);
  margin-bottom: 16px;
}

/* ========== FOOTER ========== */
.footer {
  display: flex;
  flex-direction: column;
  background: #FDFCFC;
  z-index: 0;
}
.footer-features {
  background: #FDFCFC;
  padding: 120px clamp(40px, 5vw, 80px);
  border-top: 1px solid #eee;
}
.footer-features-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.footer-features-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #000;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
}
.footer-features-sub {
  font-size: 17px;
  color: rgb(121, 113, 107);
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  margin: 0 0 16px;
}
.footer-features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.footer-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 16px;
  border-radius: 16px;
  background: #F5F3F1;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.075);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  width: calc((100% - 48px) / 5);
  min-width: 140px;
}
.footer-feature-item:hover {
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.075), 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1), 0 0 0 4px #F5F3F1;
}
.footer-feature-icon { width: 28px; height: 28px; }
.footer-feature-icon img {
  filter: brightness(0) opacity(0.45);
  transition: filter 0.15s ease;
}
.footer-feature-item:hover .footer-feature-icon img { filter: brightness(0) opacity(0.65); }
.footer-feature-label {
  font-size: var(--fs-sm);
  color: #6b6b6b;
  text-align: center;
  transition: color 0.15s ease;
}
.footer-feature-item:hover .footer-feature-label { color: #1a1a1a; }

/* Footer info — exact match from pumper-base.css */
.footer-info {
  padding: 48px clamp(40px, -240px + 29.17vw, 320px) 40px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-info-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
.footer-info-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name {
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  line-height: 1.2;
}
.footer-info-cols {
  display: flex;
  gap: 56px;
}
.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 130px;
}
.footer-info-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.footer-info-link {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: color 0.15s ease;
  line-height: 1.6;
}
.footer-info-link:hover { color: #1a1a1a; }
.footer-info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.footer-info-copy {
  font-size: 13px;
  color: #bbb;
}
.footer-info-address {
  font-size: 13px;
  color: #bbb;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .nav-links, .nav-actions { display: none; }
  .nav-right-mobile { display: flex; align-items: center; gap: var(--sp-13); }
  .features-dropdown { display: none; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-features { padding: 80px 20px; }
  .footer-features-title { font-size: 36px; }
  .footer-feature-item { padding: 20px 12px; min-width: 120px; width: calc((100% - 24px) / 3); }
  .footer-feature-label { font-size: 13px; }
  .footer-info { padding: 32px 20px 28px; }
  .footer-info-top { flex-direction: column; gap: 28px; }
  .footer-info-cols { gap: 28px; }
  .footer-info-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .blog-hero-title { font-size: 40px; }
}
@media (max-width: 768px) {
  .post-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .post-card-image { height: 160px; }
  .post-header-title { font-size: 32px; }
  .post-body { font-size: 16px; }
  .post-cta-banner { padding: 32px 24px; margin-left: 24px; margin-right: 24px; }
  .footer-info-cols { gap: 32px; }
  .footer-features { padding: 48px 16px; }
  .footer-features-title { font-size: 28px; }
  .footer-features-sub { font-size: 15px; margin: 0 0 12px; }
  .footer-features-grid { gap: 8px; }
  .footer-feature-item { padding: 16px 10px; gap: 8px; min-width: 0; width: calc((100% - 16px) / 3); border-radius: 12px; }
  .footer-feature-icon { width: 22px; height: 22px; }
  .footer-feature-label { font-size: 11.5px; }
}
@media (max-width: 480px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-card-image { height: 200px; }
  .blog-hero { padding: 48px 24px 40px; }
  .blog-hero-title { font-size: 32px; }
  .blog-container { padding: 0 16px 48px; }
  .footer-features { padding: 36px 12px; }
  .footer-features-title { font-size: 24px; }
  .footer-features-sub { font-size: 14px; }
  .footer-features-grid { gap: 6px; }
  .footer-feature-item { width: calc((100% - 6px) / 2); padding: 14px 8px; gap: 6px; border-radius: 10px; }
  .footer-feature-icon { width: 20px; height: 20px; }
  .footer-feature-label { font-size: 11px; }
  .footer-info { padding: 24px 16px 20px; }
  .footer-info-top { align-items: center; }
  .footer-info-brand { justify-content: center; }
  .footer-info-cols { gap: 20px; }
  .footer-info-col { min-width: auto; align-items: center; text-align: center; }
  .footer-info-bottom { align-items: center; text-align: center; }
  .footer-info-cols { flex-direction: column; gap: 20px; }
  .footer-info-col { min-width: 0; }
  .footer-info-copy, .footer-info-address { font-size: 11px; }
}
