/* ============================================================
   TZ Theme — Blog CSS
   Design tokens: --Accent #6A1B9A  --Primary #FEC224
                  --Foreground #11101a  --Ink #321f2f
                  --Background #fdfaf1  --Cream #fbf5e6
                  --Border #dad7d0
   Fonts: PT Serif (headings/prose)  Open Sans (UI)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --tz-purple:   #6A1B9A;
  --tz-gold:     #FEC224;
  --tz-dark:     #11101a;
  --tz-ink:      #321f2f;
  --tz-bg:       #fdfaf1;
  --tz-cream:    #fbf5e6;
  --tz-border:   #dad7d0;
  --tz-gray-400: #9ca3af;
  --tz-gray-500: #6b7280;
  --tz-gray-700: #374151;
  --tz-radius:   6px;
  --tz-wrap:     1200px;
  --tz-serif:    'PT Serif', Georgia, serif;
  --tz-sans:     'Open Sans', system-ui, sans-serif;
}

/* ── Reset helpers ─────────────────────────────────────────── */
.tz-blog-page *, .tz-article-page * { box-sizing: border-box; }
.tz-blog-page a, .tz-article-page a { text-decoration: none; color: inherit; }

/* ── Layout ────────────────────────────────────────────────── */
.tz-wrap {
  width: 100%;
  max-width: var(--tz-wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section {
  padding-block: clamp(56px, 7vw, 96px);
}
.section--tight {
  padding-block: clamp(32px, 4vw, 56px);
}
.band-soft {
  background-color: var(--tz-cream);
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  font-family: var(--tz-sans);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  opacity: .7;
}
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--tz-purple); }
.breadcrumb .sep { opacity: .5; }

/* ── Eyebrow ───────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--tz-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tz-purple);
  display: block;
  margin-bottom: 10px;
}
.eyebrow--on-dark { color: rgba(255,255,255,.75); }
.eyebrow--gold    { color: var(--tz-gold); }
.eyebrow--ink     { color: var(--tz-ink); opacity: .6; }

/* ── Section head ──────────────────────────────────────────── */
.section-head { margin-bottom: 48px; }
.section-title {
  font-family: var(--tz-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--tz-ink);
  line-height: 1.18;
  margin: 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tz-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .18s, opacity .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: .9; }
.btn-primary { background: var(--tz-purple); color: #fff; }
.btn-dark    { background: var(--tz-dark);   color: #fff; }
.btn-lg      { font-size: 15px; padding: 16px 40px; }

/* ── Arrow link ────────────────────────────────────────────── */
.arrowlink {
  font-family: var(--tz-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--tz-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .18s, color .18s;
}
.arrowlink:hover { gap: 13px; }
.arrowlink--purple { color: var(--tz-purple); }
.arrowlink--light  { color: var(--tz-gold); }
.arrowlink [data-icon="arrow"]::after,
.arrowlink [data-icon="download"]::after { content: "→"; }
.arrowlink [data-icon="download"]::after { content: "↓"; }

/* ── Icons (data-icon pseudo) ──────────────────────────────── */
[data-icon="arrow"]::after   { content: "→"; display: inline-block; }
[data-icon="download"]::after{ content: "↓"; display: inline-block; }
[data-icon="calendar"]::before{ content: ""; display: inline-block; width: 14px; height: 14px; background: currentColor; margin-right: 5px; vertical-align: middle;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center/contain no-repeat;
}
[data-icon="clock"]::before { content: ""; display: inline-block; width: 14px; height: 14px; background: currentColor; margin-right: 5px; vertical-align: middle;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Dot separator ─────────────────────────────────────────── */
.dotsep { display: inline-block; width: 4px; height: 4px; background: currentColor; border-radius: 50%; opacity: .4; vertical-align: middle; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════════════════════════ */
.pagehero {
  position: relative;
  min-height: clamp(360px, 45vw, 540px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pagehero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pagehero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,16,26,.85) 0%, rgba(17,16,26,.35) 55%, rgba(17,16,26,.10) 100%);
}
.pagehero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--tz-wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.pagehero-title {
  font-family: var(--tz-serif);
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 18px;
  max-width: 700px;
}
.pagehero-lead {
  font-family: var(--tz-sans);
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
}

/* ═══════════════════════════════════════════════════════════
   FEATURED POST
   ═══════════════════════════════════════════════════════════ */
.post-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--tz-ink);
  transition: transform .2s, box-shadow .2s;
}
.post-feat:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(17,16,26,.18);
}
.post-feat-media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.post-feat-media img,
.post-feat-media .feat-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-feat-media .feat-placeholder {
  background: linear-gradient(135deg, var(--tz-purple) 0%, #2d1b69 100%);
  min-height: 380px;
}
.post-feat-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--tz-dark);
  color: #fff;
}
.post-feat-title {
  font-family: var(--tz-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.post-feat-excerpt {
  font-family: var(--tz-sans);
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin: 0 0 20px;
}

/* ═══════════════════════════════════════════════════════════
   POST CATEGORY CHIP
   ═══════════════════════════════════════════════════════════ */
.post-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--tz-gold);
  color: var(--tz-dark);
  font-family: var(--tz-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 1;
}

/* ── Post meta ─────────────────────────────────────────────── */
.post-meta {
  font-family: var(--tz-sans);
  font-size: 12px;
  color: var(--tz-gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════════════════ */
.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.filter-chip {
  font-family: var(--tz-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--tz-gray-700);
  background: #fff;
  border: 1.5px solid var(--tz-border);
  border-radius: 50px;
  padding: 8px 18px;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.filter-chip:hover {
  border-color: var(--tz-purple);
  color: var(--tz-purple);
}
.filter-chip.is-active {
  background: var(--tz-purple);
  border-color: var(--tz-purple);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   POST GRID
   ═══════════════════════════════════════════════════════════ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--tz-border);
  transition: transform .2s, box-shadow .2s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(17,16,26,.1);
}
.post-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--tz-cream);
}
.post-media img,
.post-media .card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.post-card:hover .post-media img { transform: scale(1.04); }
.card-placeholder {
  background: linear-gradient(135deg, #e9e3f5 0%, #d4c5ee 100%);
}
.post-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-title {
  font-family: var(--tz-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--tz-ink);
  line-height: 1.35;
  margin: 0 0 8px;
}
.post-excerpt {
  font-family: var(--tz-sans);
  font-size: 13px;
  color: var(--tz-gray-500);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.post-empty {
  font-family: var(--tz-sans);
  font-size: 15px;
  color: var(--tz-gray-500);
  text-align: center;
  padding: 48px 0;
  grid-column: 1 / -1;
}

/* ── Load More ─────────────────────────────────────────────── */
.loadmore-wrap {
  text-align: center;
  margin-top: 48px;
}
#tz-load-more {
  font-family: var(--tz-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--tz-purple);
  background: transparent;
  border: 2px solid var(--tz-purple);
  border-radius: 50px;
  padding: 13px 36px;
  cursor: pointer;
  transition: background .18s, color .18s;
}
#tz-load-more:hover { background: var(--tz-purple); color: #fff; }
#tz-load-more:disabled { opacity: .4; cursor: default; }
#tz-load-more.is-loading::after { content: " …"; }

/* ═══════════════════════════════════════════════════════════
   LEAD / DOWNLOADS CARDS
   ═══════════════════════════════════════════════════════════ */
.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .lead-grid { grid-template-columns: 1fr; } }

.lead-card {
  background: #fff;
  border: 1px solid var(--tz-border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-ic {
  width: 40px;
  height: 40px;
  background: var(--tz-purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lead-ic::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
}
.lead-ic[data-icon="clipboard"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3Crect x='8' y='2' width='8' height='4' rx='1' ry='1'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3Crect x='8' y='2' width='8' height='4' rx='1' ry='1'/%3E%3C/svg%3E") center/contain no-repeat;
}
.lead-ic[data-icon="megaphone"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.lead-ic[data-icon="trend"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='23 6 13.5 15.5 8.5 10.5 1 18'/%3E%3Cpolyline points='17 6 23 6 23 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='23 6 13.5 15.5 8.5 10.5 1 18'/%3E%3Cpolyline points='17 6 23 6 23 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.lead-kind {
  font-family: var(--tz-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tz-gray-400);
  margin: 0;
}
.lead-h {
  font-family: var(--tz-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--tz-ink);
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA BAND
   ═══════════════════════════════════════════════════════════ */
.finalcta {
  background: var(--tz-gold);
  padding-block: clamp(56px, 7vw, 96px);
}
.finalcta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
.finalcta-spark {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(106,27,154,.25) 0%, transparent 70%);
  pointer-events: none;
}
.finalcta-h {
  font-family: var(--tz-serif);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--tz-dark);
  line-height: 1.15;
  margin: 0;
  max-width: 680px;
}
.finalcta-p {
  font-family: var(--tz-sans);
  font-size: 16px;
  color: rgba(17,16,26,.7);
  line-height: 1.65;
  margin: 0;
  max-width: 500px;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE HEADER
   ═══════════════════════════════════════════════════════════ */
.art-head {
  padding-block: clamp(48px, 6vw, 80px) clamp(32px, 4vw, 48px);
  background: var(--tz-bg);
  border-bottom: 1px solid var(--tz-border);
}
.art-head--purple {
  background: #f3e5f5;
  border-bottom-color: #d9b8ea;
}
.art-head--red {
  background: #fde8e8;
  border-bottom-color: #f5c0c0;
}
.art-head-inner { max-width: 780px; }

.art-title {
  font-family: var(--tz-serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--tz-ink);
  line-height: 1.12;
  margin: 0 0 20px;
}
.art-standfirst {
  font-family: var(--tz-serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--tz-gray-700);
  line-height: 1.6;
  margin: 0 0 28px;
}

/* ── Article byline ────────────────────────────────────────── */
.art-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--tz-border);
}
.art-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.art-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--tz-cream);
  flex-shrink: 0;
  display: block;
}
.art-avatar img { width: 100%; height: 100%; object-fit: cover; }
.art-author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--tz-sans);
  font-size: 13px;
  color: var(--tz-gray-500);
}
.art-author-meta b { color: var(--tz-ink); font-size: 14px; }
.art-byline-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--tz-sans);
  font-size: 13px;
  color: var(--tz-gray-500);
}
.art-byline-meta span { display: flex; align-items: center; gap: 4px; }

/* ── Article hero image ────────────────────────────────────── */
.art-hero-fig {
  margin-block: 0;
  padding-block: 0 0;
}
.art-hero-media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--tz-cream);
  margin-block: clamp(24px, 3vw, 48px);
}
.art-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9e3f5 0%, #c4b0e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Article layout (sidebar + prose) ─────────────────────── */
.art-layout {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 48px;
  max-width: 900px;
  margin-inline: auto;
}

.tz-article{padding-top:24px;}


/* ── Share sidebar ─────────────────────────────────────────── */
.art-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
  position: sticky;
  top: 120px;
  align-self: start;
}
.art-share-label {
  font-family: var(--tz-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tz-gray-400);
  margin: 0 0 4px;
}
.art-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--tz-border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
  font-size: 14px;
  color: var(--tz-gray-500);
}
.art-share-btn:hover { border-color: var(--tz-purple); color: var(--tz-purple); background: #f3eef9; }
.art-share-btn[data-icon="linkedin"]::before { content: "in"; font-family: var(--tz-sans); font-weight: 700; font-size: 12px; }
.art-share-btn[data-icon="x"]::before { content: "𝕏"; font-size: 13px; }
.art-share-btn[data-icon="mail"]::before { content: "✉"; font-size: 15px; }



@media (max-width: 680px) {
  .art-layout { grid-template-columns: 1fr; grid-gap:12px;}
  .art-share   { display: flex; gap: 8px; position:relative!important; flex-direction:row; top:0;}
	.tz-article{padding-top:24px;}
}

/* ── Prose ─────────────────────────────────────────────────── */
.prose {
  font-family: var(--tz-serif);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
  color: var(--tz-ink);
  max-width: 720px;
}
.prose p { margin: 0 0 1.4em; }
.prose h2 {
  font-family: var(--tz-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--tz-ink);
  margin: 2em 0 .75em;
  line-height: 1.2;
}
.prose h3 {
  font-family: var(--tz-serif);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  color: var(--tz-ink);
  margin: 1.8em 0 .6em;
}
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.prose li { margin-bottom: .5em; }
.prose strong { font-weight: 700; color: var(--tz-dark); }
.prose em { font-style: italic; }
.prose a { color: var(--tz-purple); text-decoration: underline; text-underline-offset: 3px; }

/* ── Blockquote ────────────────────────────────────────────── */
.cs-quote {
  background: var(--tz-cream);
  border-left: 4px solid var(--tz-purple);
  border-radius: 0 8px 8px 0;
  padding: 28px 28px 20px;
  margin: 2em 0;
  position: relative;
}
.cs-quote-mark {
  display: block;
  font-size: 64px;
  line-height: 1;
  color: var(--tz-purple);
  opacity: .25;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.cs-quote-mark[data-icon="quote"]::before { content: "\201C"; }
.cs-quote p {
  font-family: var(--tz-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  color: var(--tz-ink);
  line-height: 1.55;
  margin: 0 0 12px;
}
.cs-quote cite {
  font-family: var(--tz-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--tz-gray-500);
  font-style: normal;
}
.cs-quote cite::before { content: "— "; }

/* ── Article inline CTA ────────────────────────────────────── */
.art-inline-cta {
  background: var(--tz-dark);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 40px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 2.5em 0;
}
.art-inline-cta h3 {
  font-family: var(--tz-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #fff;
  margin: 6px 0 10px;
  line-height: 1.25;
}
.art-inline-cta-p {
  font-family: var(--tz-sans);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0;
}

/* ── Author card ───────────────────────────────────────────── */
.art-author-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px;
  background: var(--tz-cream);
  border-radius: 12px;
  border: 1px solid var(--tz-border);
}
.art-author-card-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--tz-border);
  flex-shrink: 0;
  display: block;
}
.art-author-card-img img { width: 100%; height: 100%; object-fit: cover; }
.art-author-card-name {
  font-family: var(--tz-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--tz-ink);
  margin: 4px 0 10px;
}
.art-author-card-bio {
  font-family: var(--tz-sans);
  font-size: 14px;
  color: var(--tz-gray-700);
  line-height: 1.65;
  margin: 0 0 14px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 840px) {
  .post-feat { grid-template-columns: 1fr; }
  .post-feat-media { min-height: 240px; aspect-ratio: 16 / 9; }
  .art-author-card { flex-direction: column; }
}
@media (max-width: 600px) {
  .lead-grid { grid-template-columns: 1fr; }
  .art-inline-cta { flex-direction: column; }
}
