/* ─── BLOG HERO ───────────────────────────────────────── */
#blog-hero {
  padding: 120px 0 56px;
  background: linear-gradient(140deg, #FAFAFE 0%, #F3EFFF 55%, #FAF5FF 100%);
  position: relative; overflow: hidden;
}
#blog-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.07) 0%, transparent 70%);
  top: -100px; right: -80px; pointer-events: none;
}
.blog-category {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-pale);
  padding: 4px 14px; border-radius: 50px; margin-bottom: 18px;
}
.blog-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--text-head);
  letter-spacing: -.035em; line-height: 1.15; margin-bottom: 20px;
}
.blog-meta {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; font-size: .82rem;
  color: var(--text-muted); font-weight: 500;
}
.blog-meta-dot { opacity: .4; }

/* ─── COVER IMAGE ─────────────────────────────────────── */
.blog-cover-hero { width: 100%; height: 460px; overflow: hidden; position: relative; }
.blog-cover-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── ARTICLE ─────────────────────────────────────────── */
#article { padding: 64px 0 100px; }
.wrap { max-width: 740px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }

.article-body { font-size: 1.02rem; color: var(--text-body); line-height: 1.8; }
.article-body h2 { font-size: 1.45rem; font-weight: 800; color: var(--text-head); letter-spacing: -.025em; margin: 52px 0 18px; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-head); margin: 36px 0 14px; }
.article-body h4 { font-size: 1rem; font-weight: 700; color: var(--text-head); margin: 28px 0 10px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--text-head); font-weight: 600; }
.article-body a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { opacity: .8; }

/* ─── INLINE FIGURES ──────────────────────────────────── */
.article-figure { margin: 36px 0; border-radius: var(--r); overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.article-figure img { width: 100%; display: block; max-height: 520px; object-fit: cover; }
.article-figure figcaption { font-size: .76rem; color: var(--text-muted); padding: 10px 16px; background: var(--bg-alt); font-style: italic; line-height: 1.5; }

/* ─── AUTHOR CARD ─────────────────────────────────────── */
.author-card { display: flex; align-items: flex-start; gap: 22px; background: var(--bg-alt); border: 1px solid var(--border-soft); border-radius: var(--r); padding: 28px 32px; margin-top: 56px; }
.author-photo { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border-soft); }
.author-info { flex: 1; min-width: 0; }
.author-label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); display: block; margin-bottom: 4px; }
.author-name { font-size: 1rem; font-weight: 800; color: var(--text-head); display: block; margin-bottom: 8px; }
.author-bio { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.author-link { font-size: .82rem; font-weight: 600; color: var(--purple); transition: opacity .2s; }
.author-link:hover { opacity: .7; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 720px) {
  .blog-cover-hero { height: 260px; }
  #blog-hero { padding: 100px 0 44px; }
  #article { padding: 48px 0 72px; }
  .author-card { flex-direction: column; gap: 16px; padding: 22px 20px; }
}
