/* ================================================
   BLOG.CSS — Styles for blog index and articles
   ================================================ */

/* === BLOG INDEX + ARTICLES BASE === */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'DM Sans',sans-serif;color:#1a1a1a;line-height:1.6;background:#fff}
.topbar{background:#cc0000;padding:.6rem 2rem;display:flex;justify-content:space-between;align-items:center}
.topbar a{color:white;text-decoration:none;font-size:.85rem;font-weight:600}
header{background:#111;padding:1.5rem 2rem;display:flex;justify-content:space-between;align-items:center}
.logo{font-family:'Fraunces',serif;font-size:1.4rem;font-weight:900;color:white;text-decoration:none}
.logo span{color:#cc0000}
.header-btn{background:#cc0000;color:white;padding:.55rem 1.2rem;border-radius:100px;text-decoration:none;font-weight:700;font-size:.85rem}
.hero{background:#111;padding:3rem 2rem;text-align:center}
.hero h1{font-family:'Fraunces',serif;font-size:2.4rem;font-weight:900;color:white;margin-bottom:1rem}
.hero h1 span{color:#cc0000}
.hero p{color:rgba(255,255,255,.75);max-width:600px;margin:0 auto}
.blog-grid{max-width:1100px;margin:0 auto;padding:3rem 2rem;display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.article-card{background:#f7f7f7;border-radius:16px;overflow:hidden;transition:all .2s;text-decoration:none;color:inherit;display:block}
.article-card:hover{transform:translateY(-4px);box-shadow:0 8px 32px rgba(0,0,0,.12)}
.card-badge{background:#cc0000;padding:.75rem 1.2rem;font-size:.75rem;font-weight:700;color:white;letter-spacing:1px}
.card-body{padding:1.2rem}
.card-body h2{font-family:'Fraunces',serif;font-size:1.1rem;font-weight:900;color:#111;margin-bottom:.6rem;line-height:1.3}
.card-body p{font-size:.85rem;color:#666;line-height:1.5;margin-bottom:.75rem}
.card-link{color:#cc0000;font-size:.82rem;font-weight:700}
.cta{background:#cc0000;padding:3rem 2rem;text-align:center}
.cta h2{font-family:'Fraunces',serif;font-size:1.8rem;font-weight:900;color:white;margin-bottom:1rem}
.cta-btn{background:white;color:#cc0000;padding:.9rem 2rem;border-radius:100px;text-decoration:none;font-weight:700;font-size:1rem;display:inline-block;margin:.5rem}
footer{background:#111;color:#888;padding:2rem;text-align:center;font-size:.85rem}
footer a{color:#cc0000;text-decoration:none}
@media(max-width:768px){.blog-grid{grid-template-columns:1fr}}

/* === BLOG ARTICLE SPECIFIC === */
.topbar .num{color:white;font-weight:700;font-size:.9rem}
.hero-inner{max-width:800px;margin:0 auto}
.breadcrumb{font-size:.8rem;color:#888;margin-bottom:1rem}
.breadcrumb a{color:#cc0000;text-decoration:none}
.hero-intro{font-size:1.05rem;color:#444;margin-bottom:1.5rem}
.hero-meta{display:flex;gap:1rem;flex-wrap:wrap}
.meta-tag{background:#cc0000;color:white;padding:.25rem .75rem;border-radius:100px;font-size:.78rem;font-weight:700}
.article{max-width:800px;margin:0 auto;padding:3rem 2rem}
.article h2{font-family:'Fraunces',serif;font-size:1.5rem;font-weight:900;color:#111;margin:2rem 0 1rem;padding-bottom:.5rem;border-bottom:2px solid #f0f0f0}
.article p{margin-bottom:1.2rem;color:#333;font-size:1rem}
.cta-box{background:#cc0000;color:white;border-radius:16px;padding:2rem;margin:2rem 0;text-align:center}
.cta-box h3{font-family:'Fraunces',serif;font-size:1.4rem;font-weight:900;margin-bottom:.75rem}
.cta-box .num{font-size:1.6rem;font-weight:900;margin:.75rem 0}
.cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:1rem}
.cta-btn-w{background:white;color:#cc0000;padding:.75rem 1.5rem;border-radius:100px;text-decoration:none;font-weight:700}
.cta-btn-t{background:transparent;color:white;border:2px solid white;padding:.75rem 1.5rem;border-radius:100px;text-decoration:none;font-weight:700}
.related{background:#f7f7f7;padding:2rem;border-radius:16px;margin-top:2rem}
.related h3{font-family:'Fraunces',serif;font-size:1.1rem;font-weight:900;margin-bottom:1rem}
.related-links{display:grid;gap:.5rem}
.related-links a{color:#cc0000;text-decoration:none;font-size:.9rem;font-weight:600}
.related-links a:hover{text-decoration:underline}
@media(max-width:600px){h1{font-size:1.6rem}.article{padding:2rem 1rem}}
