/* ============================================
   BLOG POST — Shared styles for all posts
   ============================================ */

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--mauve, #a675a1);
  z-index: 9999;
  transition: width 0.08s linear;
}

/* ── Hero ── */
.blog-hero {
  padding: 120px 0 56px;
  background: var(--cream, #fff9f5);
}

.blog-hero-inner {
  max-width: 728px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #a675a1;
  text-decoration: none;
  margin-bottom: 28px;
  transition: gap 0.2s;
}
.blog-breadcrumb:hover { gap: 10px; color: #7d5278; }

.blog-hero-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a675a1;
  display: block;
  margin-bottom: 18px;
}

.blog-hero h1 {
  font-family: 'Lora', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
  color: #2D2D2D;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.blog-hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 32px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: #aaa;
  padding-top: 24px;
  border-top: 1px solid #e8c5d8;
}
.blog-meta-dot { color: #ddd; }

/* ── Body ── */
.blog-post-content { padding: 60px 0 80px; }

.blog-post-body {
  max-width: 728px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-post-body p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #3a3a3a;
  margin-bottom: 22px;
}

.blog-post-body h2 {
  font-family: 'Lora', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.28;
  margin: 60px 0 18px;
  color: #2D2D2D;
}

.blog-post-body h3 {
  font-family: 'Lora', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 40px 0 14px;
  color: #2D2D2D;
}

.blog-post-body strong { color: #2D2D2D; font-weight: 600; }

.blog-post-body a { color: #a675a1; text-decoration: underline; text-underline-offset: 3px; }
.blog-post-body a:hover { color: #7d5278; }

/* ── Key Insights box ── */
.aeo-box {
  background: linear-gradient(135deg, #f8f0f8 0%, #ede0ed 100%);
  border-left: 3px solid #a675a1;
  padding: 32px 36px;
  border-radius: 0 12px 12px 0;
  margin: 0 0 56px;
}

.aeo-box-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a675a1;
  display: block;
  margin-bottom: 20px;
}

.aeo-box ol {
  padding-left: 0;
  list-style: none;
  counter-reset: insights;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.aeo-box li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #2D2D2D;
  padding-left: 36px;
  position: relative;
  counter-increment: insights;
}

.aeo-box li::before {
  content: counter(insights);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #a675a1;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Inter', 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Blockquote — pull quote style ── */
.blog-post-body blockquote {
  margin: 48px -8px;
  padding: 32px 36px;
  background: #fff9f5;
  border-left: 4px solid #a675a1;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 16px rgba(166,117,161,0.08);
}

.blog-post-body blockquote p {
  font-family: 'Lora', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #444;
  margin: 0;
  line-height: 1.7;
}

/* ── Inline CTA ── */
.blog-cta-inline {
  background: #f6eef6;
  border: 1px solid #dfc8df;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 48px 0;
}

.blog-cta-inline p {
  font-size: 0.92rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.7;
}
.blog-cta-inline p:last-child { margin-bottom: 0; }

.blog-cta-inline a {
  color: #a675a1;
  font-weight: 600;
  text-decoration: none;
}
.blog-cta-inline a:hover { text-decoration: underline; }

/* ── Bottom CTA ── */
.pattern-cta {
  background: #2D2D2D;
  border-radius: 16px;
  padding: 44px 48px;
  margin-top: 72px;
}

.pattern-cta-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4A5C9;
  display: block;
  margin-bottom: 16px;
}

.pattern-cta h3 {
  font-family: 'Lora', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.pattern-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.pattern-cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-cta-light {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  background: #a675a1;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta-light:hover { background: #8b5a8e; }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-cta-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ── Sources ── */
.sources-section {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid #e8c5d8;
}

.sources-section h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a675a1;
  margin-bottom: 16px;
}

.sources-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sources-section li {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .blog-hero { padding: 100px 0 40px; }
  .blog-hero h1 { font-size: 1.75rem; }
  .aeo-box { padding: 24px 20px; }
  .aeo-box li { padding-left: 30px; }
  .blog-post-body blockquote { margin: 36px 0; padding: 24px 24px; }
  .pattern-cta { padding: 32px 24px; }
  .pattern-cta h3 { font-size: 1.4rem; }
}
