/* ========== BLOG LIST STYLES ========== */
ul.list{list-style:disc;padding-left:24px;margin-bottom:18px}
ul.list li{font-size:15px;color:#afadc2;margin-bottom:6px;line-height:1.7}
ol.steps{list-style:none;counter-reset:step;padding:0;margin-bottom:18px}
ol.steps li{counter-increment:step;font-size:15px;color:#afadc2;margin-bottom:14px;line-height:1.8;padding-left:36px;position:relative}
ol.steps li::before{content:counter(step) ".";position:absolute;left:0;top:0;font-weight:800;color:#e9c931;font-size:16px}
ol.steps li strong{color:#fff}
.callout{background:var(--green-08);border-left:3px solid var(--green);padding:14px 18px;border-radius:0 8px 8px 0;margin:20px 0;font-size:14px;color:var(--text-muted)}
.callout strong{color:var(--green)}

/* ========== BLOG HERO ========== */
.blog-hero{padding:120px 48px 40px;max-width:820px;margin:0 auto}
.blog-meta{display:flex;align-items:center;gap:16px;margin-bottom:20px;flex-wrap:wrap}
.blog-meta .tag{padding:4px 12px;background:var(--green-15);color:var(--green);font-size:11px;font-weight:700;border-radius:6px;text-transform:uppercase;letter-spacing:.5px}
.blog-meta .date{font-size:13px;color:var(--text-dim)}
.blog-hero h1{font-size:38px;font-weight:800;line-height:1.15;margin-bottom:12px;letter-spacing:-.3px}
.blog-hero .subtitle{font-size:16px;color:var(--text-muted);margin-bottom:28px}
.blog-hero .cover{width:100%;border-radius:16px;margin-bottom:0}

/* ========== BLOG CONTENT ========== */
.blog-content{max-width:760px;margin:0 auto;padding:48px 48px 80px}
.blog-content h1,.blog-content h2{font-size:28px;font-weight:800;margin:40px 0 16px;line-height:1.2}
.blog-content h3{font-size:20px;font-weight:700;margin:32px 0 12px;line-height:1.3}
.blog-content p{font-size:15px;color:var(--text-muted);margin-bottom:18px;line-height:1.8}
.blog-content strong{color:#fff;font-weight:700}
.blog-content a{color:var(--green);font-weight:600;border-bottom:1px solid rgba(233,201,49,.3);transition:border-color .25s}
.blog-content a:hover{border-color:var(--green)}
.blog-content img{margin:24px 0;border-radius:12px;border:1px solid var(--border)}
.blog-content .img-caption{font-size:12px;color:var(--text-dim);text-align:center;margin-top:-16px;margin-bottom:24px;font-style:italic}

/* ========== RELATED GUIDES ========== */
.related{max-width:1140px;margin:0 auto;padding:0 48px 80px}
.related h2{font-size:28px;font-weight:800;margin-bottom:8px}
.related .back-link{
  display:inline-flex;align-items:center;gap:6px;
  margin-bottom:32px;padding:10px 24px;
  background:#e9c931;color:#020202;
  font-size:13px;font-weight:700;border-radius:8px;transition:all .25s;
}
.related .back-link:hover{box-shadow:0 6px 20px rgba(233,201,49,.35);transform:translateY(-2px)}

.guides-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.guide-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;transition:all .35s;display:block;
}
.guide-card:hover{transform:translateY(-4px);border-color:var(--border-green);box-shadow:0 20px 50px rgba(0,0,0,.35)}
.guide-card .thumb{width:100%;height:180px;object-fit:cover;border-radius:0}
.guide-card .g-tag{
  display:inline-block;margin:14px 0 6px 20px;
  padding:3px 10px;background:var(--green-15);color:var(--green);
  font-size:10px;font-weight:700;border-radius:4px;text-transform:uppercase;
}
.guide-card .g-body{padding:0 20px 20px}
.guide-card .g-body h4{font-size:16px;font-weight:700;margin-bottom:6px;line-height:1.35}
.guide-card .g-body p{font-size:12.5px;color:var(--text-dim);margin-bottom:10px}
.guide-card .g-meta{display:flex;gap:8px}
.guide-card .g-meta .tag{padding:2px 8px;background:rgba(255,255,255,.04);border-radius:4px;font-size:10.5px;color:var(--text-dim)}

/* ========== RESPONSIVE: BLOG ========== */
@media(max-width:1024px){
  .guides-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .nav{padding:0 20px}
  .blog-hero{padding:100px 20px 30px}
  .blog-hero h1{font-size:28px}
  .blog-content{padding:32px 20px 60px}
  .related{padding:0 20px 60px}
}
