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

/* Hero */
.blog-hero {
  padding: 5rem 2rem 4rem;
  background: #FAFAF5;
  position: relative;
  overflow: hidden;
}
.blog-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #F59E0B18 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.blog-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.blog-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #F59E0B;
  margin-bottom: 1.5rem;
  background: #F59E0B18;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}
.blog-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #1A1A2E;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  font-weight: 400;
}
.blog-deck {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #4A5568;
  line-height: 1.75;
  font-weight: 300;
  max-width: 620px;
  margin-bottom: 2rem;
}
.blog-byline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #9CA3AF;
  font-weight: 400;
}
.blog-author { color: #1A1A2E; font-weight: 600; }
.blog-sep { color: #D1D5DB; }

/* Article body */
.blog-body {
  padding: 4rem 2rem 5rem;
  background: #FAFAF5;
}
.blog-content {
  max-width: 720px;
  margin: 0 auto;
}

.blog-lead {
  font-size: 1.15rem;
  color: #1A1A2E;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E5E7EB;
}

.blog-content p {
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: #1A1A2E;
  margin: 3rem 0 1.25rem;
  line-height: 1.15;
  font-weight: 400;
}

.blog-list {
  margin: 0 0 2rem;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-list li {
  font-size: 0.975rem;
  color: #4A5568;
  line-height: 1.75;
  font-weight: 300;
}
.blog-list li strong {
  color: #1A1A2E;
  font-weight: 600;
}

.blog-content strong {
  color: #1A1A2E;
  font-weight: 600;
}

/* Responsive */
@media (min-width: 768px) {
  .blog-hero { padding: 6rem 3rem 5rem; }
  .blog-body { padding: 5rem 3rem 6rem; }
}

/* Inline contextual links within article prose */
.blog-inline-link {
  color: #F59E0B;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 400;
  transition: color 0.15s;
}
.blog-inline-link:hover { color: #D97706; }

/* Related reading section */
.blog-related {
  border-top: 1px solid #E5E7EB;
  margin-top: 3.5rem;
  padding-top: 3rem;
}
.blog-related-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #1A1A2E;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.blog-related-grid {
  display: grid;
  gap: 1.25rem;
}
.blog-related-card {
  display: block;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.blog-related-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #1A1A2E;
  font-weight: 400;
  margin: 0.6rem 0 0.5rem;
  line-height: 1.25;
}
.blog-related-card-desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}
@media (min-width: 640px) {
  .blog-related-grid { grid-template-columns: 1fr 1fr; }
}