/* ============================================================= *
   Aleta Consultancy Services — public styles
   Bricolage Grotesque (display) + Manrope (body). 3 themes.
   ============================================================= */
/* Fallback skin — overridden by the inline :root that header.php injects
   (the admin-selected theme + font). Kept so the page still renders if the
   injection ever fails. */
:root {
  --bg: #150327;
  --bg-2: #230a3d;
  --surface: #1f0937;
  --surface-2: #2a1148;
  --text: #f4ecff;
  --muted: #b9a6d6;
  --border: rgba(255,255,255,0.10);
  --border-soft: rgba(255,255,255,0.06);
  --accent: #f7931e;
  --accent-2: #ff3d6e;
  --accent-fg: #1a0a04;
  --accent-soft: rgba(247,147,30,0.14);
  --accent-glow: rgba(247,147,30,0.40);
  --hero-grad: radial-gradient(1200px 600px at 80% -10%, rgba(255,61,110,0.30), transparent 60%),
               radial-gradient(900px 500px at -10% 20%, rgba(247,147,30,0.16), transparent 55%),
               linear-gradient(160deg, #1c0533 0%, #2a0b48 60%, #18052b 100%);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.25);
  --shadow: 0 14px 40px rgba(0,0,0,0.35);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.45);
  --is-dark: 1;
}

:root {
  --font-head: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --container-max: 1320px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.32, 0.72, 0, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: var(--font-body); font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }
::selection { background: var(--accent); color: var(--accent-fg); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 600px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section { padding: 72px 0; }
@media (min-width: 1024px) { .section { padding: 96px 0; } }
.section-tight { padding: 48px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); display: inline-block; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 14px 0 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.text-accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .25s var(--spring), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-fg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px var(--accent-glow); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.btn-light { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.btn-light:hover { transform: translateY(-2px); border-color: var(--accent); }

/* ---------- Topbar ---------- */
.topbar { background: var(--bg-2); border-bottom: 1px solid var(--border-soft); font-size: 0.85rem; color: var(--muted); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: var(--muted); transition: color .2s; }
.topbar a:hover { color: var(--accent); }
.topbar-left { display: flex; gap: 18px; align-items: center; }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { display: inline-flex; align-items: center; }
.topbar-phone, .ico-line { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social svg, .footer-social svg, .topbar-phone svg, .ico-line svg { display: block; flex-shrink: 0; }
@media (max-width: 640px) { .topbar-motto { display: none; } .topbar .container { justify-content: center; } }

/* ---------- Header / island nav (PLAYBOOK §12) ---------- */
.site-header {
  position: sticky; top: 14px; z-index: 100;
  display: flex; justify-content: center; padding: 0 14px;
  transition: transform .45s var(--spring), opacity .3s var(--ease);
}
.site-header.is-hidden { transform: translateY(-160%); opacity: 0; pointer-events: none; }
.island {
  width: 100%; max-width: var(--container-max);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 9px 9px 20px; box-shadow: var(--shadow-sm);
}
.island-brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; }
.island-brand img { height: 34px; width: auto; }
.island-brand span { font-size: 1.02rem; letter-spacing: -0.01em; line-height: 1.05; }
.island-brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.island-nav { display: flex; align-items: center; gap: 4px; }
.island-nav a {
  padding: 9px 14px; border-radius: 999px; font-weight: 600; font-size: 0.92rem; color: var(--text);
  transition: background .2s, color .2s;
}
.island-nav a:hover, .island-nav a.is-active { background: var(--accent-soft); color: var(--accent); }
.island-cta { display: flex; align-items: center; gap: 8px; }
.island-burger { display: none; background: var(--accent-soft); color: var(--accent); border: none; width: 42px; height: 42px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; }

@media (max-width: 980px) {
  .island-nav, .island-cta .btn-text { display: none; }
  .island-burger { display: inline-flex; align-items: center; justify-content: center; }
  .island.is-open { border-radius: 26px; flex-wrap: wrap; padding: 16px; }
  .island.is-open .island-nav { display: flex; flex-direction: column; width: 100%; gap: 2px; order: 3; }
  .island.is-open .island-nav a { width: 100%; }
  .island.is-open .island-cta .btn-text { display: inline-flex; width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--hero-grad); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, var(--bg)); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; padding: 70px 0 90px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -0.03em; }
.hero h1 .hl { color: var(--accent); display: block; }
.hero-tagline { font-style: italic; color: var(--muted); margin: 8px 0 18px; font-size: 1.05rem; }
.hero p.lead { color: var(--muted); font-size: 1.12rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art { position: relative; }
.hero-art .blob { aspect-ratio: 1; border-radius: 36px; background: var(--surface-2); border: 1px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden; }
.hero-art .blob img { width: 100%; height: 100%; object-fit: cover; }
.hero-bars { position: absolute; top: 0; right: 6%; display: flex; gap: 14px; z-index: 1; height: 100%; opacity: .9; }
.hero-bars span { width: 26px; height: 100%; background: var(--accent-2); border-radius: 0 0 40px 40px; }
.hero-bars span:nth-child(2) { background: var(--accent); margin-top: -22px; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 64px; }
  .hero-art { max-width: 460px; }
  .hero-bars { display: none; }
}

/* ---------- Branded visual panel (replaces stock hero/about photos) ---------- */
.brand-visual {
  position: relative; aspect-ratio: 1; border-radius: 28px; overflow: hidden;
  display: grid; place-items: center; padding: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(255,61,110,0.38), transparent 60%),
    radial-gradient(700px 420px at -10% 25%, rgba(247,147,30,0.22), transparent 55%),
    linear-gradient(160deg, #1c0533 0%, #2a0b48 58%, #16042a 100%);
}
.brand-visual .bv-bars { position: absolute; top: 0; right: 9%; display: flex; gap: 12px; height: 100%; opacity: .9; }
.brand-visual .bv-bars span { width: 18px; height: 100%; background: #ff3d6e; border-radius: 0 0 30px 30px; }
.brand-visual .bv-bars span:nth-child(2) { background: #f7931e; margin-top: -20px; }
.brand-visual .bv-bars span:nth-child(3) { background: #ff3d6e; margin-top: 16px; opacity: .7; }
.bv-body { position: relative; z-index: 2; text-align: center; max-width: 320px; }
.bv-mark { width: 60px; height: 60px; border-radius: 16px; background: #f7931e; color: #1a0a04; font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; display: grid; place-items: center; margin: 0 auto 18px; box-shadow: 0 8px 24px rgba(247,147,30,0.4); }
.bv-body h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.bv-body p { color: rgba(255,255,255,0.82); font-style: italic; margin-bottom: 20px; }
.bv-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.bv-tags span { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 6px 13px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 26px; text-align: center; }
.stat b { font-family: var(--font-head); font-size: 2.4rem; color: var(--accent); display: block; }
.stat span { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards grid (services / blog / team) ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .3s;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.card-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; margin-bottom: 18px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .card-link { margin-top: auto; padding-top: 16px; color: var(--accent); font-weight: 700; font-size: 0.92rem; display: inline-flex; gap: 7px; align-items: center; }
.card .card-link span { transition: transform .25s var(--spring); }
.card:hover .card-link span { transform: translateX(4px); }
.card-media { aspect-ratio: 16/10; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 16px; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-tag { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.split li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.split li::before { content: "✦"; color: var(--accent); font-weight: 700; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.quote-card .stars { color: var(--accent); margin-bottom: 12px; letter-spacing: 2px; }
.quote-card blockquote { font-size: 1.05rem; }
.quote-meta { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote-meta img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote-meta b { display: block; }
.quote-meta span { color: var(--muted); font-size: 0.86rem; }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3 240px; column-gap: 16px; }
.gallery-grid figure { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; transition: transform .5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--hero-grad); border-radius: 26px; padding: 56px; text-align: center; position: relative; overflow: hidden; border: 1px solid var(--border); }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Marquee (PLAYBOOK §15) ---------- */
.marquee { overflow: hidden; background: var(--surface-2); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 16px 0; }
.marquee-track { display: inline-flex; align-items: center; gap: 44px; white-space: nowrap; animation: marqueeScroll 32s linear infinite; }
.marquee-item { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--text); opacity: .85; }
.marquee-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { min-height: 140px; resize: vertical; }
.alert { padding: 13px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; }
.alert-ok { background: rgba(34,197,94,0.14); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.alert-err { background: rgba(239,68,68,0.14); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--hero-grad); padding: 56px 0; border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
.page-hero p { color: var(--muted); margin-top: 10px; max-width: 600px; }
.breadcrumb { color: var(--muted); font-size: 0.85rem; margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Banner carousel (PLAYBOOK §14) ---------- */
.hero-banner-carousel { position: relative; }
.hero-banner {
  position: relative; min-height: 64vh; min-height: 64dvh;
  display: grid; align-items: center;
  background-image: linear-gradient(120deg, rgba(15,3,30,0.78), rgba(15,3,30,0.30)), var(--banner-bg);
  background-size: cover; background-position: center;
}
.hero-banner-carousel > .hero-banner { position: absolute; inset: 0; opacity: 0; transition: opacity .9s var(--ease); }
.hero-banner-carousel > .hero-banner.is-active { position: relative; opacity: 1; }
.hero-banner .container { color: #fff; }
.hero-banner h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 700px; }
.hero-banner p { max-width: 560px; margin: 12px 0 22px; color: rgba(255,255,255,0.85); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border-soft); padding: 64px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; color: var(--text); transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--accent); color: var(--accent-fg); }
.footer-bottom { border-top: 1px solid var(--border-soft); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 0.86rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll (PLAYBOOK §18) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--spring), transform .65s var(--spring); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- Setup notice ---------- */
.setup-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.setup-card { max-width: 540px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
.setup-card h1 { font-size: 1.6rem; margin-bottom: 12px; }
.setup-card code { background: var(--surface-2); padding: 2px 7px; border-radius: 6px; color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ===================== Blog ===================== */
/* Branded post covers (used on cards + article hero) */
.post-cover{position:relative;display:block;width:100%;aspect-ratio:16/9;border-radius:16px;overflow:hidden;background:linear-gradient(135deg,#2a1259,#6d28d9 60%,#f97316 130%);}
.post-cover.has-img img{width:100%;height:100%;object-fit:cover;display:block;}
.post-cover .pc-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px);background-size:28px 28px;-webkit-mask:radial-gradient(120% 120% at 80% 0%,#000,transparent 70%);mask:radial-gradient(120% 120% at 80% 0%,#000,transparent 70%);}
.post-cover .pc-mark{position:absolute;right:-.12em;bottom:-.32em;font-size:9rem;font-weight:800;line-height:1;color:rgba(255,255,255,.16);letter-spacing:-.04em;}
.post-cover .pc-tag{position:absolute;left:16px;top:16px;background:rgba(255,255,255,.16);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);color:#fff;font-size:.74rem;font-weight:600;letter-spacing:.02em;padding:6px 12px;border-radius:999px;}
.post-cover-hero{aspect-ratio:21/9;margin:0 0 36px;box-shadow:0 24px 60px -28px rgba(40,18,89,.55);}
@media(max-width:640px){.post-cover-hero{aspect-ratio:16/9;}.post-cover .pc-mark{font-size:6rem;}}

/* Blog list cards */
.blog-grid{gap:26px;}
.post-card{display:flex;flex-direction:column;padding:0;overflow:hidden;}
.post-card .post-cover{aspect-ratio:16/10;border-radius:0;}
.post-card-body{padding:20px 22px 24px;display:flex;flex-direction:column;flex:1;}
.post-card-meta{display:flex;align-items:center;gap:12px;margin-bottom:10px;}
.post-card-date{font-size:.8rem;color:var(--muted);}
.post-card h3{margin:0 0 8px;font-size:1.18rem;line-height:1.35;}
.post-card p{color:var(--muted);margin:0 0 16px;flex:1;}

/* Article layout */
.post-narrow{max-width:760px;}
.post-head{padding:48px 0 8px;}
.post-head .breadcrumb{margin-bottom:14px;}
.post-head h1{font-size:clamp(2rem,5vw,3rem);line-height:1.12;margin:10px 0 14px;}
.post-standfirst{font-size:1.2rem;line-height:1.6;color:var(--muted);margin:0 0 22px;}
.post-meta{display:flex;align-items:center;gap:12px;margin-bottom:30px;}
.post-meta-avatar{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;font-weight:700;color:#fff;background:linear-gradient(135deg,var(--accent,#7c3aed),#f97316);flex:none;}
.post-meta b{display:block;font-size:.95rem;}
.post-meta span{font-size:.82rem;color:var(--muted);}

/* Article body typography */
.article-body{font-size:1.12rem;line-height:1.85;color:var(--text);}
.article-body > p:first-of-type{font-size:1.22rem;line-height:1.7;}
.article-body h2{font-size:1.6rem;line-height:1.25;margin:1.9em 0 .55em;font-weight:700;letter-spacing:-.01em;position:relative;padding-left:16px;}
.article-body h2::before{content:"";position:absolute;left:0;top:.18em;bottom:.18em;width:4px;border-radius:3px;background:linear-gradient(var(--accent,#7c3aed),#f97316);}
.article-body h3{font-size:1.25rem;line-height:1.3;margin:1.5em 0 .45em;font-weight:700;}
.article-body p{margin:0 0 1.2em;}
.article-body a{color:var(--accent,#7c3aed);text-decoration:underline;text-underline-offset:2px;}

/* Closing CTA + footer */
.post-cta{display:flex;align-items:center;justify-content:space-between;gap:22px;flex-wrap:wrap;margin:48px 0 8px;padding:26px 30px;border-radius:18px;background:var(--bg-2,#f6f4fb);border:1px solid var(--line,#ece9f5);}
.post-cta h3{margin:0 0 6px;font-size:1.3rem;}
.post-cta p{margin:0;color:var(--muted);}
.post-foot{margin:26px 0 60px;}
