/* =====================================================================
   📰 Blog Stylesheet — New Life Magazine
   Professional editorial design for content-first blog
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0c1017;
  --surface: #141922;
  --surface-2: #1a2030;
  --surface-3: #202838;
  --border: rgba(71,85,105,.25);
  --border-light: rgba(71,85,105,.12);
  --text: #e8edf5;
  --text-muted: #8b95a8;
  --text-dim: #5c6678;
  --accent: #10b981;
  --accent-soft: rgba(16,185,129,.1);
  --accent-glow: rgba(16,185,129,.06);
  --radius: 12px;
  --radius-lg: 18px;
  --max-w: 1140px;
  --font: 'IBM Plex Sans Arabic','Alexandria','Segoe UI',sans-serif;
  --font-head: 'Alexandria','IBM Plex Sans Arabic',sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  line-height:1.8;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:15px;
}
a{color:var(--accent);text-decoration:none;transition:color .2s}
a:hover{color:#34d399}
img{max-width:100%;height:auto}

/* ── Sticky Navbar ───────────────────────────────────────────── */
.blog-nav{
  position:sticky;top:0;z-index:100;
  background:rgba(12,16,23,.92);
  backdrop-filter:blur(20px) saturate(1.4);
  -webkit-backdrop-filter:blur(20px) saturate(1.4);
  border-bottom:1px solid var(--border-light);
}
.blog-nav-inner{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 24px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.blog-brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.blog-brand img{width:32px;height:32px;border-radius:8px}
.blog-brand span{font-family:var(--font-head);font-weight:800;font-size:17px;color:var(--text);letter-spacing:-.3px}
.blog-brand small{font-size:11px;color:var(--text-dim);font-weight:500;margin-right:6px;display:none}
@media(min-width:640px){.blog-brand small{display:inline}}

.blog-nav-links{display:flex;align-items:center;gap:2px}
.blog-nav-links a{
  padding:7px 14px;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  color:var(--text-muted);
  transition:all .2s;
}
.blog-nav-links a:hover,.blog-nav-links a.active{color:var(--text);background:var(--surface)}
.blog-nav-links .btn-signup{
  background:var(--accent);color:#fff !important;
  padding:7px 18px;border-radius:8px;
  font-weight:700;margin-right:4px;
}
.blog-nav-links .btn-signup:hover{background:#059669}

/* ── Hero Section ────────────────────────────────────────────── */
.blog-hero{
  max-width:var(--max-w);
  margin:0 auto;
  padding:56px 24px 40px;
  text-align:center;
}
.blog-hero h1{
  font-family:var(--font-head);
  font-size:clamp(26px,4.5vw,40px);
  font-weight:900;
  color:#fff;
  line-height:1.4;
  margin-bottom:14px;
  letter-spacing:-.5px;
}
.blog-hero p{
  font-size:16px;
  color:var(--text-muted);
  max-width:580px;
  margin:0 auto 24px;
  line-height:1.9;
}
.blog-hero-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.btn-primary{
  display:inline-flex;align-items:center;gap:6px;
  padding:12px 30px;border-radius:10px;
  background:var(--accent);color:#fff;
  font-weight:700;font-size:15px;
  border:none;cursor:pointer;
  transition:all .2s;
}
.btn-primary:hover{background:#059669;transform:translateY(-1px);color:#fff}
.btn-ghost{
  display:inline-flex;align-items:center;gap:6px;
  padding:12px 26px;border-radius:10px;
  background:transparent;color:var(--text-muted);
  font-weight:600;font-size:15px;
  border:1px solid var(--border);
  cursor:pointer;transition:all .2s;
}
.btn-ghost:hover{border-color:var(--accent);color:var(--accent)}

/* ── Stats Bar ───────────────────────────────────────────────── */
.blog-stats{
  max-width:700px;margin:0 auto 40px;
  display:flex;gap:1px;
  background:var(--border-light);
  border-radius:var(--radius);
  overflow:hidden;
}
.blog-stat{
  flex:1;text-align:center;
  padding:16px 10px;
  background:var(--surface);
}
.blog-stat:first-child{border-radius:0 var(--radius) var(--radius) 0}
.blog-stat:last-child{border-radius:var(--radius) 0 0 var(--radius)}
.blog-stat strong{display:block;font-size:20px;font-weight:800;color:#fff;font-family:var(--font-head)}
.blog-stat span{font-size:11px;color:var(--text-dim);font-weight:500}

/* ── Section Headers ─────────────────────────────────────────── */
.section-wrap{max-width:var(--max-w);margin:0 auto;padding:0 24px}
.section-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:24px;flex-wrap:wrap;gap:8px;
}
.section-head h2{
  font-family:var(--font-head);
  font-size:21px;font-weight:800;color:#fff;
  position:relative;padding-right:16px;
}
.section-head h2::before{
  content:'';position:absolute;right:0;top:4px;
  width:4px;height:calc(100% - 8px);
  background:var(--accent);border-radius:2px;
}
.section-head a{font-size:13px;color:var(--accent);font-weight:600}

/* ── Featured Cards ──────────────────────────────────────────── */
.featured-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;margin-bottom:48px;
}
.feat-card{
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  display:flex;flex-direction:column;gap:12px;
  transition:border-color .25s,transform .25s;
  text-decoration:none !important;color:inherit !important;
}
.feat-card:hover{border-color:rgba(16,185,129,.35);transform:translateY(-3px)}
.feat-card .tag{
  display:inline-block;width:fit-content;
  padding:3px 12px;border-radius:20px;
  font-size:11px;font-weight:700;
  background:var(--accent-soft);color:var(--accent);
}
.feat-card h3{font-family:var(--font-head);font-size:17px;font-weight:700;color:#fff;line-height:1.6}
.feat-card p{font-size:13px;color:var(--text-muted);line-height:1.7;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.feat-card .meta{display:flex;gap:14px;font-size:11px;color:var(--text-dim);flex-wrap:wrap;margin-top:auto}

/* ── Category Chips ──────────────────────────────────────────── */
.cat-bar{
  display:flex;flex-wrap:wrap;gap:8px;
  justify-content:center;
  margin-bottom:36px;
}
.cat-chip{
  display:inline-flex;align-items:center;gap:5px;
  padding:8px 16px;border-radius:20px;
  font-size:13px;font-weight:600;
  background:var(--surface);
  border:1px solid var(--border-light);
  color:var(--text-muted);
  cursor:pointer;transition:all .2s;
  text-decoration:none;
}
.cat-chip:hover,.cat-chip.active{
  border-color:var(--accent);color:var(--accent);
  background:var(--accent-soft);
}
.cat-chip .count{
  font-size:10px;font-weight:700;
  padding:1px 7px;border-radius:10px;
  background:rgba(255,255,255,.06);
}

/* ── Article List ────────────────────────────────────────────── */
.article-list{display:flex;flex-direction:column;gap:16px;margin-bottom:40px}
.article-item{
  display:flex;gap:18px;
  padding:22px 24px;
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  text-decoration:none !important;color:inherit !important;
  transition:border-color .2s,transform .2s;
  align-items:flex-start;
}
.article-item:hover{border-color:rgba(16,185,129,.3);transform:translateX(4px)}
.article-icon{font-size:30px;flex-shrink:0;line-height:1}
.article-body{flex:1;min-width:0}
.article-body .tag{
  display:inline-block;
  padding:2px 10px;border-radius:14px;
  font-size:10px;font-weight:700;
  background:var(--accent-soft);color:var(--accent);
  margin-bottom:5px;
}
.article-body h3{font-family:var(--font-head);font-size:16px;font-weight:700;color:#fff;line-height:1.6;margin-bottom:5px}
.article-body p{font-size:13px;color:var(--text-muted);line-height:1.7;margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.article-body .meta{display:flex;gap:14px;font-size:11px;color:var(--text-dim);flex-wrap:wrap}

/* ── Trust Section ───────────────────────────────────────────── */
.trust-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:16px;margin-bottom:48px;
}
.trust-card{
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  padding:24px 20px;text-align:center;
}
.trust-card .ic{font-size:28px;margin-bottom:10px;display:block}
.trust-card h3{font-family:var(--font-head);font-size:15px;font-weight:700;color:#fff;margin-bottom:8px}
.trust-card p{font-size:13px;color:var(--text-muted);line-height:1.7}

/* ── Authors Row ─────────────────────────────────────────────── */
.authors-row{
  display:flex;flex-wrap:wrap;gap:12px;
  justify-content:center;margin-bottom:48px;
}
.author-chip{
  display:flex;align-items:center;gap:10px;
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  padding:14px 18px;min-width:210px;flex:1;max-width:260px;
}
.author-avatar{
  width:42px;height:42px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),#06b6d4);
  display:flex;align-items:center;justify-content:center;
  font-size:17px;font-weight:900;color:#fff;flex-shrink:0;
}
.author-info .name{font-size:14px;font-weight:700;color:#fff}
.author-info .role{font-size:11px;color:var(--accent);font-weight:600}
.author-info .count{font-size:11px;color:var(--text-dim);margin-top:1px}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;margin-bottom:48px;
}
.testimonial{
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  padding:24px 22px;
  position:relative;
}
.testimonial::before{
  content:'\201C';
  position:absolute;top:12px;right:18px;
  font-size:48px;line-height:1;
  color:rgba(16,185,129,.15);
  font-family:Georgia,serif;
}
.testimonial p{font-size:14px;color:var(--text);line-height:1.9;margin-bottom:14px;font-style:italic}
.testimonial .source{font-size:12px;color:var(--text-dim);font-weight:600;font-style:normal}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list{max-width:740px;margin:0 auto 48px}
.faq-item{
  border-bottom:1px solid var(--border-light);
}
.faq-item:last-child{border-bottom:none}
.faq-item summary{
  padding:18px 0;cursor:pointer;
  font-family:var(--font-head);
  font-size:15px;font-weight:700;color:#fff;
  line-height:1.6;list-style:none;
  display:flex;align-items:center;justify-content:space-between;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary .arrow{
  font-size:18px;color:var(--accent);
  transition:transform .2s;flex-shrink:0;margin-right:8px;
}
.faq-item[open] summary .arrow{transform:rotate(45deg)}
.faq-item .answer{
  padding:0 0 18px;
  font-size:14px;color:var(--text-muted);line-height:1.9;
}

/* ── CTA Box ─────────────────────────────────────────────────── */
.blog-cta{
  max-width:680px;margin:0 auto 48px;
  padding:40px 32px;
  background:linear-gradient(135deg,rgba(16,185,129,.08),rgba(6,182,212,.04));
  border:1px solid rgba(16,185,129,.2);
  border-radius:var(--radius-lg);
  text-align:center;
}
.blog-cta h2{font-family:var(--font-head);font-size:22px;font-weight:800;color:#fff;margin-bottom:10px}
.blog-cta p{font-size:15px;color:var(--text-muted);line-height:1.8;max-width:480px;margin:0 auto 22px}
.blog-cta .sub{font-size:12px;color:var(--text-dim);margin-top:12px}

/* ── Medical Disclaimer ──────────────────────────────────────── */
.blog-disclaimer{
  max-width:680px;margin:0 auto 40px;
  padding:20px 24px;
  background:rgba(234,179,8,.05);
  border:1px solid rgba(234,179,8,.18);
  border-radius:var(--radius);
  text-align:center;
}
.blog-disclaimer .label{color:#fbbf24;font-size:13px;font-weight:700;margin-bottom:5px}
.blog-disclaimer p{font-size:13px;color:var(--text-muted);line-height:1.8;margin:0}

/* ── Ad Containers ───────────────────────────────────────────── */
.ad-wrap{max-width:800px;margin:28px auto;padding:0 24px;text-align:center}
.ad-slot{
  background:var(--surface);
  border:1px dashed var(--border-light);
  border-radius:var(--radius);
  padding:16px 8px;min-height:100px;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.ad-label{font-size:10px;color:var(--text-dim);text-align:center;margin-bottom:4px;letter-spacing:.5px}

/* ── Footer ──────────────────────────────────────────────────── */
.blog-footer{
  background:var(--surface);
  border-top:1px solid var(--border-light);
  margin-top:64px;
}
.blog-footer-inner{
  max-width:var(--max-w);margin:0 auto;
  padding:40px 24px 20px;
}
.blog-footer-top{
  display:flex;flex-wrap:wrap;
  align-items:flex-start;justify-content:space-between;
  gap:24px;padding-bottom:24px;
  border-bottom:1px solid var(--border-light);
}
.blog-footer-brand{display:flex;align-items:center;gap:12px}
.blog-footer-brand img{width:40px;height:40px;border-radius:10px}
.blog-footer-brand .name{font-family:var(--font-head);font-weight:800;font-size:17px;color:#fff}
.blog-footer-brand .tagline{font-size:12px;color:var(--text-dim);display:block;margin-top:2px}
.blog-footer-nav{display:flex;flex-wrap:wrap;gap:4px}
.blog-footer-nav a{
  padding:7px 14px;border-radius:8px;
  font-size:13px;font-weight:600;color:var(--text-muted);
  transition:all .2s;
}
.blog-footer-nav a:hover{background:var(--accent-soft);color:var(--accent)}
.blog-footer-bottom{
  display:flex;flex-wrap:wrap;justify-content:space-between;
  align-items:center;gap:10px;
  padding-top:20px;font-size:12px;color:var(--text-dim);
}
.blog-footer-bottom a{font-weight:600}

/* ── Article Page ────────────────────────────────────────────── */
.article-wrap{max-width:760px;margin:0 auto;padding:40px 24px 80px}
.article-hero{text-align:center;margin-bottom:40px;padding-bottom:28px;border-bottom:1px solid var(--border-light)}
.article-hero .tag{display:inline-block;padding:4px 14px;border-radius:20px;font-size:12px;font-weight:700;background:var(--accent-soft);color:var(--accent);margin-bottom:12px}
.article-hero h1{font-family:var(--font-head);font-size:clamp(24px,4vw,34px);font-weight:900;color:#fff;line-height:1.5;margin-bottom:14px}
.article-hero .desc{font-size:15px;color:var(--text-muted);line-height:1.8;max-width:600px;margin:0 auto}
.article-meta-cards{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:20px}
.meta-card{
  display:flex;align-items:center;gap:10px;
  background:var(--surface);border:1px solid var(--border-light);
  border-radius:var(--radius);padding:12px 18px;
}
.meta-card .avatar{
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),#06b6d4);
  display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:900;color:#fff;flex-shrink:0;
}
.meta-card .info .label{font-size:10px;color:var(--text-dim);font-weight:600}
.meta-card .info .name{font-size:13px;font-weight:700;color:#fff}

/* Article Content */
.article-content{margin-bottom:40px}
.article-content h2{
  font-family:var(--font-head);
  font-size:21px;font-weight:800;color:#fff;
  margin:36px 0 14px;padding-right:14px;
  border-right:4px solid var(--accent);
}
.article-content h3{
  font-family:var(--font-head);
  font-size:17px;font-weight:700;color:var(--text);
  margin:24px 0 10px;
}
.article-content p{color:var(--text);opacity:.88;margin-bottom:16px;font-size:15.5px;line-height:2}
.article-content ul,.article-content ol{margin:14px 24px 18px;color:var(--text);opacity:.88}
.article-content li{margin-bottom:10px;font-size:15px;line-height:1.9}
.article-content li::marker{color:var(--accent)}
.article-content strong{color:#fff;font-weight:700}
.article-content a{color:var(--accent);font-weight:600;border-bottom:1px dashed rgba(16,185,129,.3)}
.article-content a:hover{border-bottom-color:var(--accent)}

/* Callout / Warning / Card inside articles */
.article-content .callout,.legal-callout{
  background:rgba(16,185,129,.06);
  border:1px solid rgba(16,185,129,.2);
  border-radius:var(--radius);
  padding:20px 22px;margin:20px 0;
}
.article-content .callout strong,.legal-callout strong{color:#6ee7b7}
.article-content .warning,.legal-warning{
  background:rgba(251,146,60,.06);
  border:1px solid rgba(251,146,60,.2);
  border-radius:var(--radius);
  padding:20px 22px;margin:20px 0;color:#fed7aa;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media(max-width:768px){
  .blog-nav-inner{padding:0 16px;height:54px}
  .blog-nav-links a{padding:6px 10px;font-size:12px}
  .blog-hero{padding:36px 16px 28px}
  .blog-stats{flex-direction:column;gap:0;border-radius:var(--radius)}
  .blog-stat{border-radius:0 !important}
  .blog-stat:first-child{border-radius:0 0 var(--radius) var(--radius) !important}
  .blog-stat:last-child{border-radius:var(--radius) var(--radius) 0 0 !important}
  .featured-grid{grid-template-columns:1fr}
  .article-item{flex-direction:column;gap:12px;padding:18px}
  .section-wrap{padding:0 16px}
  .blog-cta{padding:28px 20px;margin-left:16px;margin-right:16px}
  .blog-disclaimer{margin-left:16px;margin-right:16px}
  .ad-wrap{padding:0 16px}
  .blog-footer-top{flex-direction:column;align-items:flex-start}
  .article-wrap{padding:28px 16px 60px}
}
@media(max-width:480px){
  .blog-brand small{display:none}
  .blog-nav-links a:not(.btn-signup){display:none}
  .trust-grid{grid-template-columns:1fr}
  .authors-row{flex-direction:column}
  .author-chip{max-width:none}
}

/* ══════════════════════════════════════════════════════════════
   🔵 Hero Badge
   ══════════════════════════════════════════════════════════════ */
.hero-badge{
  display:inline-block;
  padding:6px 20px;
  border-radius:24px;
  font-size:12px;font-weight:700;
  background:var(--accent-soft);
  color:var(--accent);
  border:1px solid rgba(16,185,129,.2);
  margin-bottom:18px;
  letter-spacing:.2px;
}

/* ══════════════════════════════════════════════════════════════
   🔍 Search Box
   ══════════════════════════════════════════════════════════════ */
.search-box{
  position:relative;
  max-width:520px;
  margin:0 auto 22px;
}
.search-box input{
  width:100%;
  padding:14px 48px 14px 80px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-size:14px;
  font-family:var(--font);
  outline:none;
  transition:border-color .25s,box-shadow .25s;
}
.search-box input::placeholder{color:var(--text-dim);font-size:13px}
.search-box input:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(16,185,129,.1);
}
.search-icon{
  position:absolute;
  right:16px;top:50%;transform:translateY(-50%);
  font-size:18px;
  pointer-events:none;
  opacity:.5;
}
.search-count{
  position:absolute;
  left:16px;top:50%;transform:translateY(-50%);
  font-size:12px;font-weight:700;
  color:var(--accent);
  pointer-events:none;
}

/* ══════════════════════════════════════════════════════════════
   📍 Reading Paths — "من أين أبدأ"
   ══════════════════════════════════════════════════════════════ */
.paths-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
}
.path-card{
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:26px 22px;
  transition:border-color .25s,transform .25s;
}
.path-card:hover{transform:translateY(-3px)}
.path-beginner{border-top:3px solid #3b82f6}
.path-beginner:hover{border-color:rgba(59,130,246,.4)}
.path-action{border-top:3px solid #f59e0b}
.path-action:hover{border-color:rgba(245,158,11,.4)}
.path-deep{border-top:3px solid #8b5cf6}
.path-deep:hover{border-color:rgba(139,92,246,.4)}
.path-step{
  display:inline-block;
  padding:3px 12px;border-radius:20px;
  font-size:10px;font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:10px;
}
.path-beginner .path-step{background:rgba(59,130,246,.12);color:#60a5fa}
.path-action .path-step{background:rgba(245,158,11,.12);color:#fbbf24}
.path-deep .path-step{background:rgba(139,92,246,.12);color:#a78bfa}
.path-card h3{
  font-family:var(--font-head);
  font-size:17px;font-weight:800;color:#fff;
  margin-bottom:8px;
}
.path-card p{
  font-size:13px;color:var(--text-muted);
  line-height:1.8;margin-bottom:14px;
}
.path-articles{
  display:flex;flex-direction:column;gap:6px;
  border-top:1px solid var(--border-light);
  padding-top:14px;
}
.path-articles a{
  font-size:13px;font-weight:600;
  color:var(--text-muted);
  padding:6px 10px;
  border-radius:8px;
  transition:all .2s;
  text-decoration:none;
}
.path-articles a:hover{
  background:var(--accent-soft);
  color:var(--accent);
}

/* ══════════════════════════════════════════════════════════════
   📖 Pillar Guides
   ══════════════════════════════════════════════════════════════ */
.pillar-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:18px;
}
.pillar-card{
  background:linear-gradient(145deg,var(--surface),var(--surface-2));
  border:1px solid rgba(16,185,129,.18);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  text-decoration:none !important;color:inherit !important;
  display:flex;flex-direction:column;gap:10px;
  transition:border-color .25s,transform .25s,box-shadow .25s;
}
.pillar-card:hover{
  border-color:rgba(16,185,129,.4);
  transform:translateY(-3px);
  box-shadow:0 8px 32px rgba(16,185,129,.08);
}
.pillar-badge{
  display:inline-block;width:fit-content;
  padding:4px 14px;border-radius:20px;
  font-size:11px;font-weight:800;
  background:rgba(16,185,129,.12);
  color:var(--accent);
  letter-spacing:.3px;
}
.pillar-card h3{
  font-family:var(--font-head);
  font-size:16px;font-weight:700;color:#fff;line-height:1.6;
}
.pillar-card p{
  font-size:13px;color:var(--text-muted);line-height:1.7;
}
.pillar-meta{
  display:flex;gap:16px;
  font-size:11px;color:var(--text-dim);
  margin-top:auto;
}

/* ══════════════════════════════════════════════════════════════
   🏷️ Article Card — New/Pillar Badges & Tag Row
   ══════════════════════════════════════════════════════════════ */
.tag-row{
  display:flex;align-items:center;gap:6px;
  flex-wrap:wrap;margin-bottom:5px;
}
.new-badge{
  display:inline-block;
  padding:2px 10px;border-radius:14px;
  font-size:10px;font-weight:800;
  background:rgba(251,146,60,.14);
  color:#fb923c;
  animation:newPulse 2.5s ease-in-out infinite;
}
@keyframes newPulse{
  0%,100%{opacity:1}
  50%{opacity:.65}
}
.pillar-badge-sm{
  display:inline-block;
  padding:2px 10px;border-radius:14px;
  font-size:10px;font-weight:800;
  background:rgba(16,185,129,.1);
  color:var(--accent);
}
.pillar-item{
  border-color:rgba(16,185,129,.2) !important;
  background:linear-gradient(135deg,var(--surface),rgba(16,185,129,.03)) !important;
}
.pillar-item:hover{
  border-color:rgba(16,185,129,.4) !important;
}

/* ── Read Progress Bar ────────────────────────────────────── */
.read-bar{
  height:3px;
  background:var(--border-light);
  border-radius:2px;
  margin-top:10px;
  overflow:hidden;
}
.read-fill{
  height:100%;
  background:linear-gradient(90deg,var(--accent),#06b6d4);
  border-radius:2px;
  transition:width .4s ease;
}

/* ══════════════════════════════════════════════════════════════
   📬 Newsletter Box
   ══════════════════════════════════════════════════════════════ */
.newsletter-box{
  background:linear-gradient(145deg,var(--surface),var(--surface-2));
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  display:flex;align-items:center;
  gap:24px;flex-wrap:wrap;
}
.newsletter-content{flex:1;min-width:220px}
.newsletter-content h3{
  font-family:var(--font-head);
  font-size:18px;font-weight:800;color:#fff;
  margin-bottom:6px;
}
.newsletter-content p{
  font-size:13px;color:var(--text-muted);line-height:1.7;margin:0;
}
.newsletter-form{
  display:flex;gap:8px;
  flex:1;min-width:240px;
}
.newsletter-form input{
  flex:1;
  padding:12px 18px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--bg);
  color:var(--text);
  font-size:14px;font-family:var(--font);
  outline:none;
  transition:border-color .2s;
}
.newsletter-form input:focus{border-color:var(--accent)}
.newsletter-form input::placeholder{color:var(--text-dim)}
.nl-btn{
  padding:12px 24px;
  border-radius:10px;
  background:var(--accent);color:#fff;
  font-weight:700;font-size:14px;
  border:none;cursor:pointer;
  font-family:var(--font);
  transition:background .2s,transform .2s;
  white-space:nowrap;
}
.nl-btn:hover{background:#059669;transform:translateY(-1px)}

/* ══════════════════════════════════════════════════════════════
   📱 Responsive — New Sections
   ══════════════════════════════════════════════════════════════ */
@media(max-width:768px){
  .paths-grid{grid-template-columns:1fr}
  .pillar-grid{grid-template-columns:1fr}
  .newsletter-box{flex-direction:column;padding:24px 20px;text-align:center}
  .newsletter-form{width:100%;flex-direction:column}
  .search-box{margin:0 auto 18px}
  .search-box input{padding:12px 44px 12px 60px;font-size:13px}
}
@media(max-width:480px){
  .path-card{padding:20px 16px}
  .pillar-card{padding:22px 18px}
  .newsletter-form input{font-size:13px}
}
