/* ===========================
   BLOG POST STYLES
   =========================== */

.post-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 0 4rem;
}
.post-hero__breadcrumb {
  margin-bottom: 1.5rem;
}
.post-hero__breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.post-hero__breadcrumb a:hover { color: var(--color-gold); }
.post-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--color-white);
  line-height: 1.25;
  margin: 0.75rem 0 1.5rem;
  max-width: 800px;
}
.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.post-hero__author {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.post-hero__author-avatar {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.post-hero__author-avatar svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.7); }
.post-hero__author strong { display: block; font-size: 0.9rem; color: var(--color-white); }
.post-hero__author span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.post-hero__info {
  display: flex;
  gap: 1.5rem;
}
.post-hero__info span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* Body */
.post-body {
  padding: 5rem 0;
  background: var(--color-surface);
}
.post-body__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* Article content */
.post-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
}
.post-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 400;
}
.post-content h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-text);
}
.post-content p {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}
.post-content ul, .post-content ol {
  margin: 1rem 0 1rem 1.5rem;
}
.post-content li {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
}
.post-content strong { color: var(--color-text); }

/* Callout */
.post-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(25,39,129,0.04);
  border: 1px solid rgba(25,39,129,0.15);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}
.post-callout__icon {
  width: 36px; height: 36px;
  background: rgba(25,39,129,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.post-callout__icon svg { width: 20px; height: 20px; stroke: var(--color-primary); }
.post-callout strong { display: block; margin-bottom: 0.75rem; font-size: 0.9rem; }
.post-callout ul { margin: 0 0 0 1rem; }
.post-callout li { font-size: 0.875rem; margin-bottom: 0.35rem; }

/* Post CTA */
.post-cta {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--color-white);
}
.post-cta h3 { font-size: 1.35rem; color: var(--color-white); margin-bottom: 0.75rem; }
.post-cta p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; line-height: 1.65; }

/* Sidebar */
.post-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.post-sidebar__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.post-sidebar__card h4 {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.post-sidebar__author {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.post-sidebar__avatar {
  width: 40px; height: 40px;
  background: rgba(25,39,129,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.post-sidebar__avatar svg { width: 20px; height: 20px; stroke: var(--color-primary); }
.post-sidebar__author strong { display: block; font-size: 0.875rem; }
.post-sidebar__author span { font-size: 0.78rem; color: var(--color-text-muted); }
.post-sidebar__card p { font-size: 0.85rem; color: var(--color-text-secondary); line-height: 1.65; margin-bottom: 0.75rem; }
.post-sidebar__link { font-size: 0.85rem; font-weight: 700; color: var(--color-primary); text-decoration: none; }
.post-sidebar__links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.post-sidebar__links a { font-size: 0.875rem; color: var(--color-text-secondary); text-decoration: none; padding: 0.3rem 0; display: block; border-bottom: 1px solid var(--color-border); }
.post-sidebar__links a:hover { color: var(--color-primary); }
.post-sidebar__card--cta { background: var(--color-surface); border-color: var(--color-primary); }

/* Responsive */
@media (max-width: 900px) {
  .post-body__layout { grid-template-columns: 1fr; }
  .post-content { padding: 2rem; }
}
