:root {
  --c-primary: #07C28E;
  --c-primary-600: #06AC7E;
  --c-primary-50:  #DBFFF0;
  --c-accent: #F10983;
  --c-accent-50: #FFE2F7;
  --c-paint: #FF9141;
  --c-purple: #9B5EFF;
  --c-about-decor: #FAEEE9;
  --c-circle-main: #F7F3FF;
  --c-circle-alt: #FFFAE7;
  --c-text: #0E0F11;
  --c-muted: #6B7280;
  --c-link-foot: #AAAAAA;
  --c-line: #ECE6F2;
  --grad-hero: linear-gradient(74.58deg,
    #F6E7EF 4.71%, #EFE9F2 28.16%, #EEEDF5 35.7%,
    #E7EFF8 44.26%, #E7EFFF 54.37%, #E8ECFF 70.98%, #E7E7FF 91.09%);
  --shadow-card: 0 6px 22px rgba(15, 32, 49, 0.06);
  --shadow-card-hover: 0 16px 44px rgba(241, 9, 131, 0.15);
  --font-head: 'Ubuntu', 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --r-card: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1200px) { .container { padding: 0 64px; } }

/* === Header === */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-paint) 100%);
  display: grid; place-items: center; color: #fff; font-weight: 800;
  box-shadow: 0 6px 18px rgba(241, 9, 131, 0.32);
}
.nav-links { display: none; gap: 28px; font-size: 15px; }
.nav-links a { color: #2a2a2a; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--c-accent); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-primary); color: #fff; padding: 10px 20px;
  border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: transform .15s, background .2s;
}
.nav-cta:hover { background: var(--c-primary-600); transform: translateY(-1px); }
@media (min-width: 960px) { .nav-links { display: flex; } }

/* === Hero === */
.hero { position: relative; overflow: hidden; padding: 56px 0 72px; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--grad-hero); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(520px 260px at 88% 18%, rgba(255, 145, 65, 0.16), transparent 60%),
    radial-gradient(380px 240px at 6% 90%, rgba(7, 194, 142, 0.10), transparent 60%);
}
.hero-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) {
  .hero { padding: 96px 0 120px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: #fff; color: var(--c-accent);
  font-weight: 600; font-size: 13px;
  box-shadow: 0 6px 18px rgba(241, 9, 131, 0.14);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--c-accent); box-shadow: 0 0 0 4px rgba(241, 9, 131, 0.18);
}
h1.hero-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(36px, 5.6vw, 66px);
  line-height: 1.06; letter-spacing: -0.02em;
  margin: 20px 0 0; position: relative; width: fit-content; max-width: 100%;
}
h1.hero-title .accent { font-style: italic; color: var(--c-accent); position: relative; white-space: nowrap; }
h1.hero-title .accent svg.underline {
  position: absolute; left: 0; right: 0; bottom: -10px;
  width: 100%; height: auto; color: var(--c-paint);
}
h1.hero-title .paint-top {
  position: absolute; top: -22px; right: -30px;
  width: 44px; color: var(--c-paint); transform: rotate(6deg);
}
.hero-lead { margin-top: 28px; max-width: 560px; font-size: 18px; color: #2a2a2a; }
.hero-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--c-primary); color: #fff; box-shadow: 0 10px 24px rgba(7, 194, 142, 0.32); }
.btn-primary:hover { background: var(--c-primary-600); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(7, 194, 142, 0.42); }
.btn-ghost { background: #fff; color: #111; box-shadow: var(--shadow-card); }
.btn-ghost:hover { color: var(--c-accent); }

/* Hero featured */
.hero-featured {
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(14, 32, 54, 0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-featured:hover { transform: translateY(-4px); box-shadow: 0 32px 72px rgba(241, 9, 131, 0.18); }
.hero-featured .media {
  position: relative; aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(241, 9, 131, 0.22), rgba(255, 145, 65, 0.15)),
    url('https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=1400&q=80') center/cover;
}
.hero-featured .badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--c-accent); color: #fff;
  padding: 6px 12px; border-radius: 999px;
  font-weight: 700; font-size: 12px;
  box-shadow: 0 6px 14px rgba(241,9,131,0.35);
}
.hero-featured .body { padding: 24px 24px 28px; }
.hero-featured .meta { font-size: 13px; color: var(--c-muted); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.hero-featured h3 {
  font-family: var(--font-head); font-size: 24px; line-height: 1.25;
  margin: 12px 0 12px; letter-spacing: -0.01em;
}
.hero-featured p { color: #3f4956; margin: 0; }
.hero-featured .read {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; color: var(--c-accent);
  font-weight: 700; font-size: 14px;
}

/* Filter bar */
section.filter { margin-top: -32px; position: relative; z-index: 2; }
.filter-inner {
  background: #fff; border-radius: 20px; padding: 18px;
  box-shadow: 0 18px 48px rgba(14, 32, 54, 0.08);
  display: flex; flex-direction: column; gap: 14px;
}
@media (min-width: 900px) {
  .filter-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 14px 18px; }
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 16px; border-radius: 999px;
  background: var(--c-circle-main); color: #374151;
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all .2s; border: 1px solid transparent;
  font-family: inherit;
}
.chip:hover { background: #EDE4F6; }
.chip.active {
  background: var(--c-accent); color: #fff;
  box-shadow: 0 6px 16px rgba(241, 9, 131, 0.32);
}
.search {
  display: flex; align-items: center; gap: 10px;
  background: var(--c-circle-main); border-radius: 999px; padding: 10px 16px;
  min-width: 240px;
}
.search input { border: none; background: transparent; outline: none; font: inherit; width: 100%; }
.search svg { color: var(--c-muted); flex-shrink: 0; }

/* Posts grid */
section.posts { padding: 64px 0 32px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px; gap: 16px; flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em; margin: 0;
  position: relative; width: fit-content;
}
.section-head h2 .paint-top {
  position: absolute; top: -14px; right: -26px;
  width: 34px; color: var(--c-paint); transform: rotate(12deg);
}
.grid { display: grid; gap: 24px; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff; border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.card .media { aspect-ratio: 16 / 10; background-size: cover; background-position: center; position: relative; }
.card .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.96);
  padding: 5px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--c-accent);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.card .intent {
  position: absolute; top: 14px; right: 14px;
  background: rgba(14,15,17,0.86); color: #fff;
  padding: 5px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  backdrop-filter: blur(4px);
}
.card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .meta { font-size: 12.5px; color: var(--c-muted); display: flex; gap: 10px; flex-wrap: wrap; }
.card h3 { font-family: var(--font-head); font-size: 19px; line-height: 1.3; margin: 0; letter-spacing: -0.01em; }
.card p { color: #4b5563; font-size: 14.5px; margin: 0; }
.card .query {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-circle-alt); color: #875A00;
  padding: 5px 10px; border-radius: 8px;
  font-size: 12px; font-weight: 500; width: fit-content;
  font-family: 'SFMono-Regular', Menlo, monospace;
  margin-top: 2px;
}
.card .query::before { content: "🔍"; font-size: 11px; }
.card .footer {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--c-line);
}
.author { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.avatar {
  width: 28px; height: 28px; border-radius: 999px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-paint));
  color: #fff; display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.read-link { color: var(--c-accent); font-weight: 700; font-size: 13px; }

.seo-note {
  background: var(--c-about-decor);
  border-radius: 16px; padding: 16px 20px; margin: 28px 0 36px;
  font-size: 14px; color: #4d2a1a;
  display: flex; gap: 14px; align-items: flex-start;
}
.seo-note .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--c-paint); flex-shrink: 0; margin-top: 7px;
  box-shadow: 0 0 0 4px rgba(255, 145, 65, 0.22);
}
.seo-note strong { color: #2b1405; }

.pagination { display: flex; justify-content: center; gap: 6px; margin: 48px 0 8px; }
.pagination button {
  min-width: 40px; height: 40px; padding: 0 14px;
  border-radius: 999px; border: 1px solid var(--c-line);
  background: #fff; color: #374151;
  font: inherit; font-weight: 600; cursor: pointer;
  transition: all .2s;
}
.pagination button:hover { border-color: var(--c-accent); color: var(--c-accent); }
.pagination button.active {
  background: var(--c-accent); color: #fff; border-color: var(--c-accent);
  box-shadow: 0 8px 18px rgba(241, 9, 131, 0.32);
}

.cta {
  margin: 80px 0 0; padding: 48px 28px; border-radius: 28px;
  background:
    radial-gradient(520px 240px at 88% 18%, rgba(241, 9, 131, 0.22), transparent 60%),
    linear-gradient(74.58deg, #F6E7EF 4.71%, #EFE9F2 28.16%, #E7EFFF 70.98%, #E7E7FF 91.09%);
  position: relative; overflow: hidden;
}
@media (min-width: 800px) { .cta { padding: 64px; } }
.cta h2 {
  font-family: var(--font-head); font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 12px; letter-spacing: -0.02em; max-width: 640px;
}
.cta h2 em { color: var(--c-accent); font-style: italic; }
.cta p { max-width: 520px; color: #3f4956; margin: 0 0 28px; font-size: 16px; }
.cta form {
  display: flex; gap: 10px; flex-wrap: wrap;
  background: #fff; border-radius: 999px; padding: 6px;
  max-width: 520px;
  box-shadow: 0 14px 32px rgba(14,32,54,0.10);
}
.cta input {
  border: none; outline: none; padding: 12px 18px;
  flex: 1; min-width: 180px; font: inherit; background: transparent;
}

/* Footer */
footer.site { margin-top: 96px; background: #FDFBFF; border-top: 1px solid var(--c-line); padding: 48px 0 32px; }
.foot-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-col h4 { font-family: var(--font-head); font-size: 15px; margin: 0 0 14px; color: #111; }
.foot-col a { display: block; color: var(--c-link-foot); font-size: 14px; margin-bottom: 8px; transition: color .2s; }
.foot-col a:hover { color: var(--c-accent); }
.foot-about { color: #6B7280; font-size: 14px; max-width: 320px; margin: 14px 0 0; }
.foot-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--c-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--c-link-foot); font-size: 13px;
}

/* =================================================================== */
/* ========================= ARTICLE PAGE ============================ */
/* =================================================================== */

.article-hero {
  position: relative; overflow: hidden;
  padding: 56px 0 48px;
}
.article-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--grad-hero); }
.article-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(460px 240px at 92% 14%, rgba(255, 145, 65, 0.14), transparent 60%),
    radial-gradient(300px 200px at 4% 92%, rgba(7, 194, 142, 0.10), transparent 60%);
}
@media (min-width: 900px) { .article-hero { padding: 72px 0 64px; } }

.breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--c-muted); margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--c-muted); transition: color .2s; }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs .sep { color: #c9c9c9; }
.breadcrumbs .current { color: var(--c-text); font-weight: 500; }

.article-head { max-width: 820px; }
.article-head .tag-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.tag-pill {
  padding: 6px 12px; border-radius: 999px;
  background: var(--c-accent); color: #fff;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.intent-pill {
  padding: 6px 12px; border-radius: 999px;
  background: #0E0F11; color: #fff;
  font-size: 12px; font-weight: 600;
}
.query-pill {
  padding: 6px 12px; border-radius: 8px;
  background: var(--c-circle-alt); color: #875A00;
  font-size: 12px; font-weight: 500;
  font-family: 'SFMono-Regular', Menlo, monospace;
}
.query-pill::before { content: "🔍 "; }

h1.article-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12; letter-spacing: -0.02em;
  margin: 0 0 20px; color: var(--c-text);
}
.article-lead { font-size: 19px; color: #2a2a2a; margin: 0 0 24px; max-width: 780px; }

.article-meta-row {
  display: flex; gap: 16px; align-items: center;
  font-size: 14px; color: var(--c-muted);
  flex-wrap: wrap;
}
.article-meta-row .author-block {
  display: flex; gap: 10px; align-items: center;
}
.article-meta-row .avatar {
  width: 36px; height: 36px; font-size: 13px;
}
.article-meta-row .sep-dot::before { content: "·"; padding: 0 6px; color: #c9c9c9; }

/* Article body */
.article-body {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding: 56px 0 40px;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 1000px) {
  .article-body { grid-template-columns: 240px 1fr; }
}

.toc {
  position: sticky; top: 96px;
  align-self: start;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-card);
  font-size: 14px;
}
.toc h4 {
  font-family: var(--font-head);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  margin: 0 0 14px;
}
.toc ol {
  list-style: none; padding: 0; margin: 0;
  counter-reset: toc-counter;
}
.toc li {
  counter-increment: toc-counter;
  margin-bottom: 10px; line-height: 1.35;
  padding-left: 28px; position: relative;
}
.toc li::before {
  content: counter(toc-counter);
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--c-circle-main);
  color: var(--c-accent);
  font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}
.toc a { color: #374151; transition: color .2s; }
.toc a:hover { color: var(--c-accent); }

.prose {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: #1f2937;
}
.prose h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.2; letter-spacing: -0.01em;
  margin: 48px 0 16px;
  color: var(--c-text);
  scroll-margin-top: 88px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-head);
  font-size: 20px; letter-spacing: -0.01em;
  margin: 32px 0 12px; color: var(--c-text);
}
.prose p { margin: 0 0 20px; }
.prose p a { color: var(--c-accent); font-weight: 500; border-bottom: 1px solid rgba(241, 9, 131, 0.3); transition: border-color .2s; }
.prose p a:hover { border-color: var(--c-accent); }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 20px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose ul li::marker { color: var(--c-accent); }
.prose strong { color: var(--c-text); font-weight: 600; }
.prose img {
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}
.prose figure { margin: 24px 0; }
.prose figcaption {
  font-size: 13px; color: var(--c-muted);
  text-align: center; margin-top: 10px;
}
.prose blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--c-accent);
  background: var(--c-accent-50);
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: #5a0733;
}

/* Callout tip */
.callout {
  margin: 28px 0;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--c-about-decor);
  display: flex; gap: 16px; align-items: flex-start;
  border-left: 4px solid var(--c-paint);
}
.callout .icon {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--c-paint); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; flex-shrink: 0;
  font-family: var(--font-head);
}
.callout .icon.success { background: var(--c-primary); }
.callout .icon.warn { background: var(--c-accent); }
.callout .content { flex: 1; }
.callout .content p:last-child { margin: 0; }
.callout h4 {
  font-family: var(--font-head);
  font-size: 16px; margin: 0 0 8px; color: #2b1405;
}

/* Steps */
.steps {
  counter-reset: step-counter;
  list-style: none; padding: 0; margin: 28px 0;
}
.steps > li {
  counter-increment: step-counter;
  position: relative;
  padding: 20px 20px 20px 64px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
}
.steps > li::before {
  content: counter(step-counter);
  position: absolute; left: 20px; top: 18px;
  width: 32px; height: 32px; border-radius: 999px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-paint));
  color: #fff; font-weight: 800;
  display: grid; place-items: center;
  font-family: var(--font-head);
}
.steps > li h4 {
  font-family: var(--font-head);
  font-size: 17px; margin: 0 0 8px;
}
.steps > li p { margin: 0; font-size: 15px; line-height: 1.6; }

/* FAQ */
.faq { margin: 32px 0; }
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋"; color: var(--c-accent);
  font-weight: 400; font-size: 22px;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 22px 22px; color: #1f2937; font-size: 16px; line-height: 1.65; }
.faq-item .answer p:first-child { margin-top: 0; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* Article footer */
.article-bottom-cta {
  background: var(--c-about-decor);
  border-radius: 24px;
  padding: 36px 28px;
  margin: 48px 0 16px;
  max-width: 720px;
}
@media (min-width: 700px) { .article-bottom-cta { padding: 40px; } }
.article-bottom-cta h3 {
  font-family: var(--font-head);
  font-size: 24px; margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.article-bottom-cta p { margin: 0 0 20px; color: #3f4956; }

.author-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-top: 32px;
  max-width: 720px;
}
.author-card .avatar { width: 56px; height: 56px; font-size: 18px; flex-shrink: 0; }
.author-card h5 { font-family: var(--font-head); font-size: 17px; margin: 0 0 4px; }
.author-card .role { color: var(--c-muted); font-size: 13px; margin: 0 0 10px; }
.author-card p { margin: 0; font-size: 14.5px; color: #374151; }

/* Related posts */
.related { padding: 48px 0 8px; }
.related h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 32px);
  margin: 0 0 24px; letter-spacing: -0.01em;
}
