/* ============================================================
   ASKTRO THEME — BUNDLED CSS
   shared.css + blog.css — no external localhost dependency
   ============================================================ */

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

:root {
  --navy: #0A1F44;
  --navy-deep: #060F22;
  --navy-mid: #122952;
  --orange: #E8500A;
  --orange-glow: #FF6B2B;
  --gold: #C47B00;
  --gold-light: #F5B800;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --text-muted: rgba(255,255,255,0.6);
  --text-dim: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

#stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ─── NAV ─── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  padding: 0 60px;
  background: rgba(6,15,34,0.95);
  transition: background 0.3s;
  padding-top: env(safe-area-inset-top);
  min-height: var(--nav-h);
}
nav#navbar.scrolled { background: rgba(6,15,34,0.98); }

.nav-logo {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--orange); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 14px;
  font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange); color: var(--white); border: none;
  padding: 10px 24px; border-radius: 100px; font-family: var(--sans);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,80,10,0.4); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(6,15,34,0.98); z-index: 101;
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 20px 40px;
}
@media (min-width: 901px) { .mobile-menu { display: none !important; } }
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; color: var(--white); text-decoration: none;
  font-size: 22px; font-weight: 500; padding: 12px 0; width: 100%; text-align: center;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange-glow); }
.mobile-menu .mobile-wa-btn {
  margin-top: 16px; background: #25D366; color: white !important;
  border-radius: 12px; padding: 14px 32px; font-size: 16px; font-weight: 600;
  border: none !important;
}
.mobile-menu .mobile-phone, .mobile-menu .mobile-email {
  font-size: 15px !important; color: var(--text-muted) !important;
  border: none !important; padding: 6px 0 !important;
}

/* ─── MAIN ─── */
main { position: relative; z-index: 1; min-height: 100vh; }

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px; display: block;
}

.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 16px 36px; border-radius: 100px; font-size: 16px;
  font-weight: 600; text-decoration: none; display: inline-flex;
  align-items: center; gap: 10px; transition: all 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,80,10,0.5); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deep); border-top: 1px solid var(--border);
  padding: 64px 60px 46px; position: relative; z-index: 1;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
}
.footer-brand .logo, .footer-brand .logo:visited { color: var(--white); text-decoration: none; }
.footer-brand .logo {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  letter-spacing: 0.02em; margin-bottom: 16px; display: inline-block; line-height: 1;
}
.footer-brand .logo span { color: var(--orange); }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 26px auto 0;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 12px;
}
.footer-contact {
  max-width: 1200px; margin: 40px auto 0; padding: 24px 32px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 16px; display: flex; flex-direction: row;
  align-items: center; gap: 40px; flex-wrap: wrap;
}
.fc-item { display: flex; flex-direction: row; align-items: center; gap: 12px; flex-shrink: 0; }
.fc-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(232,80,10,0.12); border: 1px solid rgba(232,80,10,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-glow); flex-shrink: 0;
}
.fc-text { display: flex; flex-direction: column; gap: 3px; }
.fc-label { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }
.fc-value { font-size: 14px; font-weight: 600; color: var(--orange-glow); text-decoration: none; transition: color 0.2s; }
.fc-value:hover { color: var(--white); }
.right-note { margin-left: auto; font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ─── WA FLOAT ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-bounce 2s 3s ease infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.7); }
@keyframes wa-bounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

/* ─── SCROLL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s cubic-bezier(0.2,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── PARTICLES ─── */
.particle { position: fixed; pointer-events: none; z-index: 0; border-radius: 50%; animation: float-particle linear infinite; opacity: 0; }
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* ============================================================
   BLOG INDEX STYLES
   ============================================================ */

/* HERO */
.blog-hero {
  background: linear-gradient(160deg, rgba(18,41,82,0.9) 0%, rgba(6,15,34,0.95) 100%);
  border-bottom: 1px solid var(--border);
  padding: 72px 60px 56px;
  position: relative; z-index: 1;
}
.blog-hero-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.blog-hero-title {
  font-family: var(--serif); font-size: clamp(40px, 6vw, 64px);
  font-weight: 700; line-height: 1.15; margin-bottom: 18px; color: var(--white);
}
.blog-hero-title em { color: var(--gold-light); font-style: italic; }
.blog-hero-sub { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }

/* CATEGORY BAR */
.blog-cats-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.blog-cat-btn {
  padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-muted);
  text-decoration: none; transition: all 0.2s; background: var(--card-bg);
}
.blog-cat-btn:hover, .blog-cat-btn.active {
  background: var(--orange); border-color: var(--orange); color: var(--white);
}

/* BLOG WRAP */
.blog-wrap { max-width: 1200px; margin: 0 auto; padding: 60px 60px 80px; }

/* FEATURED POST */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; margin-bottom: 48px;
  transition: border-color 0.3s;
}
.blog-featured:hover { border-color: rgba(232,80,10,0.3); }
.blog-featured-thumb {
  display: block; overflow: hidden; position: relative;
  aspect-ratio: 4/3;
}
.blog-featured-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.blog-featured:hover .blog-featured-thumb img { transform: scale(1.04); }
.blog-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(6,15,34,0.4) 100%);
}
.blog-featured-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-title {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 34px);
  font-weight: 700; line-height: 1.25; margin-bottom: 16px;
}
.blog-featured-title a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.blog-featured-title a:hover { color: var(--gold-light); }
.blog-featured-excerpt { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; flex: 1; }
.blog-read-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 12px 28px; border-radius: 100px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.25s; width: fit-content;
}
.blog-read-more-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,80,10,0.45); }

/* CARD FOOTER */
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.blog-read-time { font-size: 12px; color: var(--text-dim); }

/* PLACEHOLDER THUMB */
.blog-thumb-placeholder {
  background: rgba(255,255,255,0.03); display: flex;
  align-items: center; justify-content: center; font-size: 32px;
}

/* EMPTY STATE */
.blog-empty { text-align: center; padding: 80px 24px; }
.blog-empty-icon { font-size: 48px; display: block; margin-bottom: 20px; }
.blog-empty h3 { font-family: var(--serif); font-size: 28px; margin-bottom: 12px; }
.blog-empty p { color: var(--text-muted); margin-bottom: 28px; }

/* CTA BAND */
.blog-cta-band {
  margin-top: 64px; background: linear-gradient(135deg, rgba(232,80,10,0.12) 0%, rgba(196,123,0,0.08) 100%);
  border: 1px solid rgba(232,80,10,0.2); border-radius: 24px; padding: 40px 48px;
}
.blog-cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.blog-cta-title { font-family: var(--serif); font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.blog-cta-title em { color: var(--gold-light); font-style: italic; }
.blog-cta-sub { font-size: 15px; color: var(--text-muted); }

/* ============================================================
   BLOG-SPECIFIC STYLES
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: rgba(232,80,10,0.3); transform: translateY(-4px); }
.blog-thumb { display: block; overflow: hidden; aspect-ratio: 16/9; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.blog-cat { background: rgba(232,80,10,0.12); color: var(--orange-glow); border: 1px solid rgba(232,80,10,0.2); border-radius: 100px; padding: 2px 10px; font-size: 11px; font-weight: 600; }
.blog-title { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.3; margin-bottom: 10px; }
.blog-title a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.blog-title a:hover { color: var(--orange-glow); }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--orange-glow); text-decoration: none; transition: gap 0.2s; margin-top: auto; }
.blog-read-more:hover { gap: 10px; }

.blog-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; list-style: none; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: var(--card-bg); border: 1px solid var(--border); color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s; }
.blog-pagination .page-numbers.current, .blog-pagination .page-numbers:hover { background: var(--orange); border-color: var(--orange); color: white; }
.blog-pagination .prev, .blog-pagination .next { width: auto; padding: 0 16px; }

.blog-content { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.82); }
.blog-content h2 { font-family: var(--serif); font-size: 28px; font-weight: 600; margin: 36px 0 14px; color: var(--white); }
.blog-content h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin: 28px 0 10px; color: var(--white); }
.blog-content p { margin-bottom: 20px; }
.blog-content a { color: var(--orange-glow); text-decoration: none; }
.blog-content a:hover { text-decoration: underline; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 20px; }
.blog-content li { margin-bottom: 8px; }
.blog-content blockquote { border-left: 3px solid var(--orange); padding: 16px 24px; margin: 28px 0; background: rgba(232,80,10,0.06); border-radius: 0 12px 12px 0; font-style: italic; color: rgba(255,255,255,0.75); }
.blog-content img { max-width: 100%; border-radius: 12px; margin: 20px 0; border: 1px solid var(--border); }
.blog-content code { background: rgba(255,255,255,0.06); padding: 2px 8px; border-radius: 6px; font-size: 14px; }

/* ============================================================
   SINGLE POST STYLES
   ============================================================ */

/* POST HERO */
.post-hero {
  background: linear-gradient(160deg, rgba(18,41,82,0.95) 0%, rgba(6,15,34,0.98) 100%);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px 44px;
  position: relative; z-index: 1;
}
.post-hero-inner { max-width: 760px; margin: 0 auto; }
.post-cat-badge {
  display: inline-block; background: rgba(232,80,10,0.12); color: var(--orange-glow);
  border: 1px solid rgba(232,80,10,0.2); border-radius: 100px;
  padding: 4px 14px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}

/* BREADCRUMB */
.post-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap;
}
.post-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--orange-glow); }
.post-breadcrumb span { color: var(--text-dim); }

/* POST TITLE */
.post-title {
  font-family: var(--serif); font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; line-height: 1.2; margin-bottom: 28px; color: var(--white);
}

/* META ROW */
.post-meta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.post-author-chip {
  display: flex; align-items: center; gap: 12px;
}
.post-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.post-author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.post-author-role { font-size: 12px; color: var(--text-muted); }
.post-meta-divider { width: 1px; height: 32px; background: var(--border); }
.post-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
}

/* FEATURED IMAGE */
.post-featured-img {
  max-width: 900px; margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 1;
}
.post-featured-img img {
  border-radius: 16px; border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

/* POST CONTENT WRAP — single column */
.post-content-wrap {
  max-width: 760px; margin: 0 auto;
  padding: 52px 24px 80px;
  position: relative; z-index: 1;
}

/* SHARE BAR */
.post-share-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-radius: 14px;
  background: var(--card-bg); border: 1px solid var(--border);
  margin-top: 36px;
}
.post-share-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.post-share-btns { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; cursor: pointer;
  border: 1px solid var(--border); background: var(--card-bg); color: var(--white);
}
.share-btn:hover { transform: translateY(-1px); }
.share-wa { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.25); color: #25D366; }
.share-wa:hover { background: rgba(37,211,102,0.18); }
.share-tw { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: var(--white); }
.share-tw:hover { background: rgba(255,255,255,0.1); }
.share-copy { background: rgba(255,255,255,0.04); border-color: var(--border); color: var(--text-muted); font-family: var(--sans); }
.share-copy:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* TAGS */
.post-tags {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border);
}
.post-tags-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.post-tag {
  padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); text-decoration: none; transition: all 0.2s;
}
.post-tag:hover { background: rgba(232,80,10,0.1); border-color: rgba(232,80,10,0.25); color: var(--orange-glow); }

/* AUTHOR BOX */
.post-author-box {
  display: flex; gap: 24px; align-items: flex-start;
  margin-top: 48px; padding: 32px;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px;
}
.post-author-avatar-lg {
  width: 64px; height: 64px; font-size: 28px; flex-shrink: 0;
}
.post-author-info { flex: 1; min-width: 0; }
.post-author-written { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 4px; }
.post-author-name-lg { font-family: var(--serif); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.post-author-bio { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.post-consult-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: white; padding: 10px 22px;
  border-radius: 100px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.post-consult-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* POST NAV */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border);
}
.post-nav-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px 24px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border);
  text-decoration: none; transition: all 0.25s;
}
.post-nav-item:hover { border-color: rgba(232,80,10,0.3); transform: translateY(-2px); }
.post-nav-next { text-align: right; }
.post-nav-dir { font-size: 12px; font-weight: 600; color: var(--orange-glow); text-transform: uppercase; letter-spacing: 0.08em; }
.post-nav-ttl { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }



/* RELATED POSTS */
.related-posts-section {
  background: rgba(255,255,255,0.02); border-top: 1px solid var(--border);
  padding: 64px 60px 80px; position: relative; z-index: 1;
}
.related-posts-inner { max-width: 1200px; margin: 0 auto; }
.related-posts-title {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; margin-bottom: 36px;
}
.related-posts-title em { color: var(--gold-light); font-style: italic; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .post-content-wrap { padding: 44px 24px 60px; }
}
@media (max-width: 900px) {
  nav#navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  footer { padding: 44px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 24px; padding: 24px; }
  .right-note { margin-left: 0; margin-top: 8px; width: 100%; padding-top: 16px; border-top: 1px solid var(--border); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  /* Blog index */
  .blog-hero { padding: 52px 24px 44px; }
  .blog-wrap { padding: 40px 24px 60px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-thumb { aspect-ratio: 16/9; }
  .blog-featured-body { padding: 28px 28px 32px; }
  .blog-cta-band { padding: 32px 28px; }
  .blog-cta-band-inner { flex-direction: column; align-items: flex-start; }
  /* Single post */
  .post-hero { padding: 40px 20px 36px; }
  .post-featured-img { padding: 0 16px; }
  .post-content-wrap { padding: 36px 20px 60px; }
  .related-posts-section { padding: 48px 20px 60px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-author-box { flex-direction: column; }
  .post-share-bar { flex-direction: column; align-items: flex-start; }
  .post-meta-row { gap: 12px; }
}
