/* === UTILITIES === */
.container{max-width:var(--max-w);margin:0 auto;padding:0 2rem}
.skip-link{position:absolute;top:-100%;left:1rem;background:var(--blue);color:#fff;padding:.5rem 1rem;border-radius:var(--radius);z-index:9999;font-size:.875rem;font-weight:600}
.skip-link:focus{top:1rem}

/* === BUTTONS === */
.btn-primary{display:inline-flex;align-items:center;gap:.375rem;font-size:.875rem;font-weight:700;color:#fff;background:var(--blue);padding:.5rem 1.25rem;border-radius:8px;transition:background .15s,transform .1s;border:none;cursor:pointer}
.btn-primary:hover{background:var(--blue-dark);transform:translateY(-1px)}
.btn-ghost{display:inline-flex;align-items:center;gap:.375rem;font-size:.875rem;font-weight:600;color:var(--blue);padding:.5rem 1rem;border-radius:8px;border:1.5px solid var(--blue-light);transition:background .15s;background:transparent;cursor:pointer}
.btn-ghost:hover{background:var(--blue-light)}
.btn-read-more{display:inline-flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:700;color:var(--blue);transition:gap .15s}
.btn-read-more:hover{gap:.75rem}

/* === NAV === */
.site-header{position:sticky;top:0;z-index:200;background:rgba(255,255,255,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--border)}
.site-nav{}
.nav-inner{max-width:var(--max-w);margin:0 auto;padding:0 2rem;height:64px;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-logo{display:flex;align-items:center;gap:.625rem;flex-shrink:0}
.nav-logo-mark{width:32px;height:32px;border-radius:8px;background:linear-gradient(135deg,#4d7fff,var(--blue));display:flex;align-items:center;justify-content:center;font-family:'DM Mono',monospace;font-size:.75rem;font-weight:500;color:#fff;flex-shrink:0}
.nav-logo-name{font-weight:800;font-size:1.0625rem;letter-spacing:-.03em;color:var(--ink)}
.nav-logo-name span{color:var(--blue)}
.nav-links{display:flex;align-items:center;gap:.25rem}
.nav-links a{font-size:.875rem;font-weight:500;color:var(--muted);padding:.5rem .875rem;border-radius:8px;transition:color .15s,background .15s}
.nav-links a:hover,.nav-links a.active{color:var(--ink);background:var(--bg3)}
.nav-cta-group{display:flex;align-items:center;gap:.75rem}

/* Burger */
.nav-burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem}
.nav-burger span{display:block;width:22px;height:2px;background:var(--ink);border-radius:2px;transition:transform .2s,opacity .2s}
.nav-burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-burger.open span:nth-child(2){opacity:0}
.nav-burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile nav */
.nav-mobile{display:none;flex-direction:column;gap:.25rem;padding:1rem 2rem;border-top:1px solid var(--border);background:#fff}
.nav-mobile.open{display:flex}
.nav-mobile a{font-size:.9375rem;font-weight:500;color:var(--muted);padding:.625rem .875rem;border-radius:8px}
.nav-mobile a:hover{color:var(--ink);background:var(--bg3)}
.nav-mobile-ctas{display:flex;gap:.75rem;padding:.75rem .875rem 0;flex-wrap:wrap}

/* === BLOG HERO === */
.blog-hero{padding:4.5rem 2rem 3.5rem;background:linear-gradient(180deg,#f0f4ff 0%,#fff 70%);text-align:center;position:relative;overflow:hidden}
.blog-hero::before{content:'';position:absolute;top:-40%;left:50%;transform:translateX(-50%);width:900px;height:600px;background:radial-gradient(ellipse,rgba(0,82,255,.06) 0%,transparent 65%);pointer-events:none}
.blog-hero-inner{max-width:640px;margin:0 auto;position:relative}
.blog-hero-badge{display:inline-flex;align-items:center;gap:.5rem;font-family:'DM Mono',monospace;font-size:.6875rem;letter-spacing:.1em;text-transform:uppercase;color:var(--blue);background:var(--blue-light);padding:.35rem 1rem;border-radius:2rem;margin-bottom:1.25rem;border:1px solid rgba(0,82,255,.15)}
.badge-dot{width:6px;height:6px;background:var(--blue);border-radius:50%;animation:pulse 2s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}
.blog-hero-h{font-size:clamp(2.25rem,5vw,3.5rem);font-weight:900;letter-spacing:-.04em;line-height:1.05;color:var(--ink);margin-bottom:1rem}
.blog-hero-h em{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;color:var(--blue)}
.blog-hero-sub{font-size:1.0625rem;font-weight:300;color:var(--muted);line-height:1.75}

/* === FEATURED POST === */
.featured-post-section{padding:3rem 2rem 0}
.featured-post{display:grid;grid-template-columns:1.2fr 1fr;gap:3rem;align-items:center;background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;max-width:var(--max-w);margin:0 auto}
.featured-post-img{display:block;overflow:hidden;aspect-ratio:16/9}
.featured-post-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.featured-post-img:hover img{transform:scale(1.03)}
.featured-post-content{padding:2rem 2rem 2rem 0}
.featured-post-title{font-size:clamp(1.5rem,2.5vw,2rem);font-weight:900;letter-spacing:-.03em;line-height:1.2;color:var(--ink);margin:.75rem 0 1rem}
.featured-post-title a{transition:color .15s}
.featured-post-title a:hover{color:var(--blue)}
.featured-post-excerpt{font-size:.9375rem;font-weight:300;color:var(--muted);line-height:1.75;margin-bottom:1.5rem}

/* === POST META === */
.post-meta{display:flex;align-items:center;gap:.625rem;flex-wrap:wrap;font-size:.8125rem;color:var(--muted)}
.post-cat{display:inline-flex;font-family:'DM Mono',monospace;font-size:.625rem;letter-spacing:.08em;text-transform:uppercase;font-weight:600;padding:.25rem .625rem;border-radius:1rem;transition:opacity .15s}
.post-cat:hover{opacity:.8}
.post-sep{color:var(--border)}
.post-read{font-family:'DM Mono',monospace;font-size:.75rem}
.post-date{font-size:.8125rem}

/* === POSTS GRID === */
.posts-section{padding:2.5rem 2rem 5rem}
.posts-layout{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 320px;gap:3rem;align-items:flex-start}
.posts-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.75rem}

/* === POST CARD === */
.post-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:border-color .2s,box-shadow .2s,transform .2s;display:flex;flex-direction:column}
.post-card:hover{border-color:rgba(0,82,255,.2);box-shadow:0 8px 32px rgba(0,82,255,.07);transform:translateY(-2px)}
.post-card-img{display:block;position:relative;overflow:hidden;aspect-ratio:16/10}
.post-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.post-card:hover .post-card-img img{transform:scale(1.04)}
.post-card-cat{position:absolute;bottom:.75rem;left:.75rem;font-family:'DM Mono',monospace;font-size:.5625rem;letter-spacing:.08em;text-transform:uppercase;font-weight:600;color:#fff;padding:.25rem .625rem;border-radius:1rem}
.post-card-body{padding:1.25rem;flex:1;display:flex;flex-direction:column}
.post-card-meta{font-size:.75rem;color:var(--subtle);margin-bottom:.625rem;display:flex;align-items:center;gap:.5rem}
.post-card-title{font-size:1rem;font-weight:800;letter-spacing:-.02em;line-height:1.35;color:var(--ink);margin-bottom:.625rem;flex:1}
.post-card-title a{transition:color .15s}
.post-card-title a:hover{color:var(--blue)}
.post-card-excerpt{font-size:.8125rem;font-weight:300;color:var(--muted);line-height:1.65;margin-bottom:1rem}
.post-card-footer{display:flex;align-items:center;gap:.5rem;margin-top:auto;padding-top:.875rem;border-top:1px solid var(--border2)}
.post-card-avatar{border-radius:50%;flex-shrink:0}
.post-card-author{font-size:.75rem;font-weight:600;color:var(--muted)}

/* === SIDEBAR === */
.posts-sidebar{position:sticky;top:80px;display:flex;flex-direction:column;gap:1.5rem}
.sidebar-widget{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem}
.sidebar-widget-title{font-size:.875rem;font-weight:800;letter-spacing:-.02em;color:var(--ink);margin-bottom:1rem}

/* PRO sidebar widget */
.sidebar-pro{background:linear-gradient(135deg,#f0f4ff,#e8eeff);border-color:rgba(0,82,255,.15)}
.sprw-badge{font-family:'DM Mono',monospace;font-size:.625rem;letter-spacing:.1em;text-transform:uppercase;color:var(--blue);margin-bottom:.625rem}
.sprw-title{font-size:1rem;font-weight:800;color:var(--ink);margin-bottom:.5rem;letter-spacing:-.02em}
.sprw-desc{font-size:.8125rem;color:var(--muted);line-height:1.6;margin-bottom:.875rem}
.sprw-list{list-style:none;display:flex;flex-direction:column;gap:.375rem;margin-bottom:1.25rem}
.sprw-list li{font-size:.8125rem;color:var(--body);display:flex;align-items:center;gap:.5rem}
.sprw-list li::before{content:'✓';color:var(--blue);font-weight:700;font-size:.75rem}
.sprw-btn{display:block;text-align:center;margin-bottom:.625rem;padding:.625rem}
.sprw-free{display:block;text-align:center;font-size:.75rem;color:var(--muted);transition:color .15s}
.sprw-free:hover{color:var(--blue)}

/* Recent posts */
.sidebar-recent{list-style:none;display:flex;flex-direction:column;gap:.875rem}
.sidebar-recent-item{display:flex;gap:.75rem;align-items:flex-start}
.sidebar-recent-thumb{display:block;width:64px;height:48px;border-radius:6px;overflow:hidden;flex-shrink:0}
.sidebar-recent-thumb img{width:100%;height:100%;object-fit:cover}
.sidebar-recent-content{flex:1;min-width:0}
.sidebar-recent-title{display:block;font-size:.8125rem;font-weight:700;color:var(--ink);line-height:1.4;margin-bottom:.25rem;transition:color .15s}
.sidebar-recent-title:hover{color:var(--blue)}
.sidebar-recent-date{font-size:.6875rem;color:var(--subtle)}

/* Categories */
.sidebar-cats{list-style:none;display:flex;flex-direction:column;gap:.375rem}
.sidebar-cat-link{display:flex;align-items:center;gap:.625rem;font-size:.875rem;color:var(--body);padding:.375rem 0;transition:color .15s}
.sidebar-cat-link:hover{color:var(--blue)}
.sidebar-cat-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}
.sidebar-cat-count{margin-left:auto;font-family:'DM Mono',monospace;font-size:.6875rem;color:var(--subtle)}

/* === PAGINATION === */
.pagination{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:3rem 0 0;flex-wrap:wrap}
.pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 .75rem;border-radius:8px;font-size:.875rem;font-weight:600;color:var(--muted);border:1.5px solid var(--border);transition:all .15s}
.pagination .page-numbers:hover{border-color:var(--blue);color:var(--blue)}
.pagination .page-numbers.current{background:var(--blue);border-color:var(--blue);color:#fff}

/* === ARTICLE HERO === */
.article-hero{padding:3.5rem 2rem 2.5rem;background:linear-gradient(180deg,#f0f4ff 0%,#fff 80%);position:relative;overflow:hidden}
.article-hero::before{content:'';position:absolute;top:-40%;left:50%;transform:translateX(-50%);width:800px;height:500px;background:radial-gradient(ellipse,rgba(0,82,255,.05) 0%,transparent 65%);pointer-events:none}
.article-hero-inner{max-width:var(--content-w);margin:0 auto;position:relative}
.article-title{font-size:clamp(2rem,5vw,3.25rem);font-weight:900;letter-spacing:-.04em;line-height:1.08;color:var(--ink);margin:.875rem 0 1.25rem}
.article-intro{font-size:1.125rem;font-weight:300;color:var(--muted);line-height:1.75;margin-bottom:2rem}

/* Byline */
.article-byline{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;padding-top:1.25rem;border-top:1px solid var(--border)}
.byline-author{display:flex;align-items:center;gap:.75rem}
.byline-avatar{border-radius:50%}
.byline-name{font-size:.875rem;font-weight:700;color:var(--ink)}
.byline-role{font-size:.75rem;color:var(--subtle)}
.byline-share{display:flex;align-items:center;gap:.5rem}
.share-label{font-size:.75rem;color:var(--subtle)}
.share-btn{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:8px;background:var(--bg3);border:1px solid var(--border);color:var(--muted);transition:all .15s;cursor:pointer}
.share-btn:hover{background:var(--blue);border-color:var(--blue);color:#fff}

/* Featured image */
.article-featured-img{padding:0 2rem;margin-bottom:1.5rem}
.article-img{border-radius:var(--radius-lg);width:100%;max-height:500px;object-fit:cover;box-shadow:0 20px 60px rgba(0,0,0,.08)}

/* Article layout */
.article-body-wrap{padding:2rem 2rem 4rem}
.article-layout{max-width:calc(var(--content-w) + 280px);margin:0 auto;display:grid;grid-template-columns:200px 1fr;gap:3rem;align-items:flex-start}

/* ToC */
.article-toc{position:sticky;top:80px;padding:1.25rem;background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius);font-size:.8125rem}
.toc-header{font-family:'DM Mono',monospace;font-size:.625rem;letter-spacing:.12em;text-transform:uppercase;color:var(--subtle);margin-bottom:.75rem}
.toc-nav{display:flex;flex-direction:column;gap:.375rem}
.toc-nav a{color:var(--muted);transition:color .15s;line-height:1.4;padding:.2rem 0}
.toc-nav a:hover,.toc-nav a.active{color:var(--blue)}
.toc-nav .toc-h3{padding-left:.75rem;font-size:.75rem}

/* Article content typography */
.article-content{min-width:0}
.article-content h2{font-size:1.625rem;font-weight:900;letter-spacing:-.03em;color:var(--ink);margin:2.5rem 0 1rem;line-height:1.2}
.article-content h3{font-size:1.25rem;font-weight:800;letter-spacing:-.02em;color:var(--ink);margin:2rem 0 .75rem}
.article-content h4{font-size:1.0625rem;font-weight:700;color:var(--ink);margin:1.75rem 0 .625rem}
.article-content p{margin-bottom:1.25rem;line-height:1.8}
.article-content a{color:var(--blue);text-decoration:underline;text-underline-offset:3px}
.article-content a:hover{color:var(--blue-dark)}
.article-content ul,.article-content ol{margin:1.25rem 0 1.25rem 1.5rem;display:flex;flex-direction:column;gap:.5rem}
.article-content li{line-height:1.7}
.article-content blockquote{border-left:4px solid var(--blue);padding:1rem 1.5rem;background:var(--blue-light);border-radius:0 var(--radius) var(--radius) 0;margin:2rem 0;font-size:1.0625rem;font-style:italic;color:var(--ink2)}
.article-content code{font-family:'DM Mono',monospace;font-size:.875em;background:var(--bg3);border:1px solid var(--border);padding:.15rem .4rem;border-radius:4px;color:var(--ink2)}
.article-content pre{background:var(--ink2);color:#e2e8f0;padding:1.5rem;border-radius:var(--radius);overflow-x:auto;margin:2rem 0;font-family:'DM Mono',monospace;font-size:.875rem;line-height:1.7}
.article-content pre code{background:none;border:none;padding:0;color:inherit;font-size:inherit}
.article-content img{border-radius:var(--radius);margin:2rem 0;box-shadow:0 4px 24px rgba(0,0,0,.08)}
.article-content table{width:100%;border-collapse:collapse;margin:2rem 0;font-size:.9375rem}
.article-content table th{background:var(--bg3);font-weight:700;color:var(--ink);padding:.75rem 1rem;text-align:left;border-bottom:2px solid var(--border)}
.article-content table td{padding:.75rem 1rem;border-bottom:1px solid var(--border2)}
.article-content table tr:last-child td{border-bottom:none}
.article-content hr{border:none;border-top:2px solid var(--border2);margin:3rem 0}
.article-content .wp-block-callout,.article-content .callout{background:var(--blue-light);border-left:4px solid var(--blue);border-radius:0 var(--radius) var(--radius) 0;padding:1rem 1.5rem;margin:2rem 0}

/* Post tags */
.post-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:2.5rem;padding-top:2rem;border-top:1px solid var(--border2)}
.post-tag{font-family:'DM Mono',monospace;font-size:.6875rem;letter-spacing:.06em;background:var(--bg3);color:var(--muted);padding:.25rem .625rem;border-radius:1rem;border:1px solid var(--border);transition:all .15s}
.post-tag:hover{background:var(--blue-light);color:var(--blue);border-color:rgba(0,82,255,.2)}

/* In-article CTA */
.article-cta-box{background:linear-gradient(135deg,#f0f4ff,#e8eeff);border:1.5px solid rgba(0,82,255,.15);border-radius:var(--radius-lg);padding:2rem;margin:3rem 0;display:flex;gap:1.25rem;align-items:flex-start}
.acta-icon{font-size:2rem;flex-shrink:0;margin-top:.125rem}
.acta-title{font-size:1.0625rem;font-weight:800;letter-spacing:-.02em;color:var(--ink);margin-bottom:.5rem}
.acta-desc{font-size:.875rem;color:var(--muted);line-height:1.7;margin-bottom:1.25rem}
.acta-actions{display:flex;gap:.75rem;flex-wrap:wrap}

/* Author box */
.author-box-wrap{padding:0 2rem 4rem}
.author-box{max-width:var(--content-w);margin:0 auto;display:flex;gap:1.5rem;align-items:flex-start;background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius-lg);padding:2rem}
.author-avatar{border-radius:50%;flex-shrink:0}
.author-name{font-size:1.0625rem;font-weight:800;letter-spacing:-.02em;color:var(--ink);margin-bottom:.375rem}
.author-bio{font-size:.875rem;font-weight:300;color:var(--muted);line-height:1.7;margin-bottom:.75rem}
.author-link a{font-size:.875rem;font-weight:600;color:var(--blue);transition:color .15s}
.author-link a:hover{color:var(--blue-dark)}

/* Related posts */
.related-posts-section{padding:0 2rem 5rem}
.related-h{font-size:1.5rem;font-weight:900;letter-spacing:-.03em;color:var(--ink);margin:.625rem 0 2rem}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}

/* Comments */
.comments-wrap{padding:0 2rem 5rem}
.comments-wrap .container{max-width:var(--content-w)}
.comments-wrap h2{font-size:1.5rem;font-weight:900;letter-spacing:-.03em;color:var(--ink);margin-bottom:2rem}
.comments-wrap .comment-form input,.comments-wrap .comment-form textarea{width:100%;padding:.75rem 1rem;border:1.5px solid var(--border);border-radius:var(--radius);font-family:'Manrope',sans-serif;font-size:.9375rem;color:var(--ink);transition:border-color .15s;background:#fff;margin-bottom:1rem}
.comments-wrap .comment-form input:focus,.comments-wrap .comment-form textarea:focus{outline:none;border-color:var(--blue)}
.comments-wrap .comment-form .submit{background:var(--blue);color:#fff;border:none;padding:.75rem 1.75rem;border-radius:8px;font-weight:700;cursor:pointer;transition:background .15s}
.comments-wrap .comment-form .submit:hover{background:var(--blue-dark)}

/* Archive hero */
.archive-hero{padding:3rem 2rem;background:linear-gradient(180deg,#f0f4ff 0%,#fff 70%)}
.archive-header{max-width:var(--max-w);margin:0 auto}
.archive-title{font-size:clamp(1.75rem,4vw,2.75rem);font-weight:900;letter-spacing:-.04em;color:var(--ink);margin-bottom:.625rem}
.archive-desc{font-size:1.0625rem;font-weight:300;color:var(--muted)}

/* Search form */
.search-form{display:flex;gap:.5rem}
.search-form input[type="search"]{flex:1;padding:.625rem .875rem;border:1.5px solid var(--border);border-radius:8px;font-family:'Manrope',sans-serif;font-size:.875rem;color:var(--ink);outline:none;transition:border-color .15s}
.search-form input[type="search"]:focus{border-color:var(--blue)}
.search-form button{background:var(--blue);color:#fff;border:none;padding:.625rem 1rem;border-radius:8px;font-weight:600;cursor:pointer;font-size:.875rem;transition:background .15s}
.search-form button:hover{background:var(--blue-dark)}

/* === PRO BANNER === */
.pro-banner{background:linear-gradient(135deg,#0040cc 0%,var(--blue) 50%,#4d7fff 100%);padding:4rem 2rem;position:relative;overflow:hidden}
.pro-banner::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 20% 50%,rgba(255,255,255,.08),transparent 60%);pointer-events:none}
.pro-banner-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;position:relative}
.pro-banner-eyebrow{font-family:'DM Mono',monospace;font-size:.625rem;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.6);margin-bottom:.75rem}
.pro-banner-h{font-size:clamp(1.5rem,3vw,2.25rem);font-weight:900;letter-spacing:-.04em;color:#fff;line-height:1.1;margin-bottom:.625rem}
.pro-banner-h em{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400}
.pro-banner-sub{font-size:1rem;font-weight:300;color:rgba(255,255,255,.75)}
.pro-banner-actions{display:flex;gap:1rem;flex-wrap:wrap;flex-shrink:0}
.btn-cta-white{display:inline-flex;align-items:center;gap:.5rem;font-size:.9375rem;font-weight:700;color:var(--blue);background:#fff;padding:.875rem 1.75rem;border-radius:.75rem;transition:transform .15s,box-shadow .15s;box-shadow:0 4px 16px rgba(0,0,0,.15)}
.btn-cta-white:hover{transform:translateY(-1px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.btn-cta-ghost{display:inline-flex;align-items:center;gap:.5rem;font-size:.9375rem;font-weight:600;color:#fff;border:1.5px solid rgba(255,255,255,.35);padding:.875rem 1.5rem;border-radius:.75rem;transition:border-color .15s,background .15s}
.btn-cta-ghost:hover{border-color:rgba(255,255,255,.7);background:rgba(255,255,255,.08)}

/* === SITE FOOTER === */
.site-footer{background:var(--ink2);color:rgba(255,255,255,.6);padding:3.5rem 2rem 2rem}
.footer-inner{max-width:var(--max-w);margin:0 auto}
.footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2.5rem;margin-bottom:2.5rem}
.footer-brand .nav-logo-name{color:#fff}
.footer-brand p{font-size:.875rem;margin-top:.75rem;line-height:1.7;max-width:220px}
.footer-company{font-size:.75rem;opacity:.5;margin-top:.5rem !important}
.footer-col h4{font-size:.75rem;font-family:'DM Mono',monospace;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:.875rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.5rem}
.footer-col a{font-size:.875rem;transition:color .15s}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:1.5rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.75rem}
.footer-copy{font-size:.8125rem}
.footer-legal{display:flex;gap:1.5rem;font-size:.8125rem}

/* === RESPONSIVE === */
@media(max-width:1024px){
  .article-layout{grid-template-columns:1fr}
  .article-toc{display:none}
  .posts-layout{grid-template-columns:1fr}
  .posts-sidebar{display:none}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-links{display:none}
  .nav-burger{display:flex}
  .featured-post{grid-template-columns:1fr}
  .featured-post-content{padding:1.5rem}
  .posts-grid{grid-template-columns:1fr}
  .related-grid{grid-template-columns:1fr}
  .pro-banner-inner{flex-direction:column;text-align:center}
  .footer-top{grid-template-columns:1fr}
  .author-box{flex-direction:column}
  .byline-share{display:none}
  .article-cta-box{flex-direction:column}
}
@media(max-width:480px){
  .container{padding:0 1.25rem}
  .blog-hero{padding:3rem 1.25rem 2.5rem}
  .featured-post-section,.posts-section{padding-left:1.25rem;padding-right:1.25rem}
  .article-hero,.article-body-wrap,.author-box-wrap,.related-posts-section,.comments-wrap{padding-left:1.25rem;padding-right:1.25rem}
}
