/* Blog-specific styles */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 56px 5% 64px;
  text-align: center;
}

.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.blog-hero p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto; }

.blog-container { max-width: 860px; margin: 0 auto; padding: 0 5%; }

/* Post page */
.post-hero {
  background: var(--navy);
  padding: 64px 5% 80px;
  position: relative;
  overflow: hidden;
}

.post-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,168,75,0.1) 0%, transparent 70%);
  bottom: -200px; left: -100px;
}

.post-breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.post-breadcrumb a { color: var(--gold); text-decoration: none; }

.post-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.3;
  max-width: 760px;
  margin-bottom: 20px;
}

.post-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.post-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.post-meta-item strong { color: rgba(255,255,255,0.9); }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 5%;
}

@media (max-width: 820px) { .post-layout { grid-template-columns: 1fr; } }

.post-content { font-size: 0.97rem; line-height: 1.8; color: var(--text); }

.post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 28px 0 10px;
}

.post-content p { margin-bottom: 18px; }

.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 18px; }
.post-content li { margin-bottom: 8px; }

.post-content a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.callout {
  background: rgba(200,168,75,0.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.92rem;
}

.callout strong { color: var(--navy); }

.callout-info {
  background: rgba(13,31,60,0.05);
  border-left-color: var(--navy);
}

.placeholder-block {
  background: var(--cream);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 32px 0;
  color: var(--text-muted);
  font-style: italic;
}

.placeholder-block strong { display: block; color: var(--navy); font-style: normal; margin-bottom: 8px; }

/* Sidebar */
.post-sidebar { position: sticky; top: 88px; height: fit-content; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 28px 20px;
}

.sidebar-cta h4 { color: var(--gold-light); border-bottom-color: rgba(255,255,255,0.15); }
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.sidebar-cta .btn-primary { background: var(--gold); color: var(--navy); width: 100%; }
.sidebar-cta .btn-primary:hover { background: var(--gold-light); }

.toc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.toc-list a { font-size: 0.84rem; color: var(--text-muted); text-decoration: none; padding: 4px 0; display: block; transition: color 0.2s; }
.toc-list a:hover { color: var(--navy); }

.related-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.related-list li a { font-size: 0.84rem; color: var(--navy); text-decoration: none; font-weight: 500; line-height: 1.4; }
.related-list li a:hover { color: var(--gold); }
.related-list li span { display: block; font-size: 0.76rem; color: var(--text-muted); }

.post-footer-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin-top: 48px;
}

.post-footer-cta h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.post-footer-cta p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 20px; }
.post-footer-cta .btn-primary { background: var(--gold); color: var(--navy); display: inline-block; text-decoration: none; padding: 13px 28px; }

/* Blog listing */
.blog-section-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}

.view-all { color: var(--navy); text-decoration: none; font-size: 0.88rem; font-weight: 600; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
