/*
Theme Name: RecyclerDaily
Theme URI: https://recyclerdaily.com
Description: Professional B2B news theme for the US recycling and e-waste industry.
Author: RecyclerDaily
Author URI: https://recyclerdaily.com
Version: 3.0
*/

/* ─── Variables ─────────────────────────────────────── */
:root {
  --cx-green:       #2e7d32;
  --cx-green-dark:  #1b5e20;
  --cx-gradient:    linear-gradient(to right, #2e7d32 0%, #43a047 100%);
  --cx-radius:      10px;
  --cx-body:        #1a2636;
  --cx-muted:       #6b7a8d;
  --cx-bg:          #f5f6f9;
  --cx-card-bg:     #ffffff;
  --cx-border:      #e8ecf0;
}

/* ─── Reset / Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 15px; color: var(--cx-body); background: #fff; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--cx-green); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0 0 .5rem; font-weight: 700; line-height: 1.3; }
p { margin: 0 0 1rem; }

/* ─── Layout ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.content-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 36px 0; }
.section { padding: 36px 0; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 22px; border-radius: 25px; font-size: .85rem; font-weight: 600; border: none; cursor: pointer; transition: all .2s; }
.btn-green { background: var(--cx-gradient); background-size: 200% auto; color: #fff; }
.btn-green:hover { color: #fff; opacity: .9; }
.btn-outline { border: 1.5px solid var(--cx-green); color: var(--cx-green); background: transparent; padding: 8px 20px; }
.btn-outline:hover { background: var(--cx-green); color: #fff; }

/* ─── Header ─────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--cx-border); }
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.wordmark { font-size: 1.35rem; font-weight: 900; letter-spacing: -.5px; line-height: 1; }
.wm-recycler { color: var(--cx-body); }
.wm-daily { color: var(--cx-green); }
/* Nav */
.site-nav { display: none; flex: 1; justify-content: center; }
.site-nav ul { display: flex; gap: 2px; }
.site-nav ul li a { padding: 6px 13px; border-radius: 20px; font-size: .86rem; font-weight: 600; color: var(--cx-body); display: block; }
.site-nav ul li a:hover, .site-nav ul li.current-menu-item a { color: var(--cx-green); background: rgba(46,125,50,.08); }
/* Header right */
.header-right { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--cx-bg); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--cx-body); font-size: .95rem; transition: all .2s; }
.icon-btn:hover { background: var(--cx-green); color: #fff; }
.mobile-toggle { display: flex; }
/* Mobile menu */
.mobile-menu { position: fixed; top: 0; left: 0; width: 280px; height: 100vh; background: #fff; z-index: 200; transform: translateX(-110%); transition: transform .3s ease; box-shadow: 4px 0 30px rgba(0,0,0,.12); padding: 72px 24px 24px; overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--cx-body); line-height: 1; padding: 4px; }
.mobile-menu ul li a { display: block; padding: 13px 0; border-bottom: 1px solid var(--cx-border); font-weight: 600; font-size: .95rem; color: var(--cx-body); }
.mobile-menu ul li:last-child a { border-bottom: none; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 150; opacity: 0; visibility: hidden; transition: all .3s; }
.overlay.open { opacity: 1; visibility: visible; }

/* ─── Search popup ───────────────────────────────────── */
.search-popup { position: fixed; inset: 0; background: rgba(255,255,255,.97); z-index: 300; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .25s; padding: 20px; }
.search-popup.open { opacity: 1; visibility: visible; }
.search-popup-inner { width: 100%; max-width: 580px; }
.search-popup .search-label { text-align: center; margin-bottom: 24px; font-size: 1.1rem; font-weight: 700; }
.search-popup .search-form { display: flex; gap: 10px; }
.search-popup input[type=search] { flex: 1; padding: 14px 22px; border: 2px solid var(--cx-border); border-radius: 30px; font-size: 1rem; outline: none; background: var(--cx-bg); transition: border .2s; }
.search-popup input[type=search]:focus { border-color: var(--cx-green); background: #fff; }
.search-popup-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--cx-body); }

/* ─── Breaking bar ───────────────────────────────────── */
.breaking-bar { background: var(--cx-green); color: #fff; font-size: .8rem; padding: 7px 0; }
.breaking-inner { display: flex; align-items: center; gap: 0; overflow: hidden; }
.breaking-label { background: var(--cx-green-dark); padding: 4px 14px; border-radius: 3px; font-weight: 700; white-space: nowrap; flex-shrink: 0; margin-right: 16px; text-transform: uppercase; letter-spacing: .5px; font-size: .72rem; }
.breaking-inner a { color: rgba(255,255,255,.9); white-space: nowrap; padding-right: 40px; }
.breaking-inner a:hover { color: #fff; }

/* ─── Hero ───────────────────────────────────────────── */
.hero-section { background: var(--cx-bg); padding: 24px 0; }
.hero-row { display: grid; grid-template-columns: 1.7fr 1fr; gap: 18px; align-items: stretch; }
.hero-main { position: relative; border-radius: var(--cx-radius); overflow: hidden; display: block; }
.hero-main .img-wrap { position: relative; padding-top: 58%; overflow: hidden; }
.hero-main .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hero-main:hover .img-wrap img { transform: scale(1.04); }
.hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 22px 22px; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%); color: #fff; }
.hero-overlay .cat-tag { display: inline-block; background: var(--cx-gradient); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 3px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.hero-overlay h2 { font-size: 1.45rem; color: #fff; margin-bottom: 8px; line-height: 1.35; }
.hero-overlay .post-meta { font-size: .78rem; opacity: .8; display: flex; gap: 12px; }
.hero-side { display: flex; flex-direction: column; gap: 12px; }
.hero-side-card { display: flex; gap: 13px; background: #fff; border-radius: var(--cx-radius); padding: 13px; border: 1px solid var(--cx-border); transition: box-shadow .2s; flex: 1; }
.hero-side-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.hero-side-card .img-wrap { width: 90px; flex-shrink: 0; border-radius: 7px; overflow: hidden; height: 68px; }
.hero-side-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-side-card .info { flex: 1; }
.hero-side-card .info .cat-tag { display: inline-block; background: rgba(46,125,50,.1); color: var(--cx-green); font-size: .68rem; font-weight: 700; padding: 1px 7px; border-radius: 3px; text-transform: uppercase; margin-bottom: 5px; }
.hero-side-card .info h3 { font-size: .86rem; font-weight: 600; line-height: 1.4; color: var(--cx-body); margin-bottom: 5px; }
.hero-side-card .info h3 a:hover { color: var(--cx-green); }
.hero-side-card .info .time { font-size: .72rem; color: var(--cx-muted); }

/* ─── Section title ──────────────────────────────────── */
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--cx-border); }
.section-head h2 { font-size: 1.05rem; display: flex; align-items: center; gap: 8px; margin: 0; }
.section-head h2::before { content: ''; display: block; width: 4px; height: 17px; background: var(--cx-gradient); border-radius: 2px; flex-shrink: 0; }
.section-head .more-link { font-size: .78rem; color: var(--cx-muted); font-weight: 600; }
.section-head .more-link:hover { color: var(--cx-green); }

/* ─── Card grid ──────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card { background: #fff; border: 1px solid var(--cx-border); border-radius: var(--cx-radius); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.article-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
.article-card .img-wrap { position: relative; padding-top: 60%; overflow: hidden; }
.article-card .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.article-card:hover .img-wrap img { transform: scale(1.05); }
.article-card .card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.cat-tag { display: inline-block; background: rgba(46,125,50,.1); color: var(--cx-green); font-size: .7rem; font-weight: 700; padding: 2px 9px; border-radius: 3px; text-transform: uppercase; letter-spacing: .4px; align-self: flex-start; }
.article-card h3 { font-size: .92rem; line-height: 1.45; color: var(--cx-body); margin: 0; }
.article-card h3 a:hover { color: var(--cx-green); }
.article-card .excerpt { font-size: .82rem; color: var(--cx-muted); line-height: 1.6; flex: 1; margin: 0; }
.post-meta { font-size: .75rem; color: var(--cx-muted); display: flex; gap: 10px; align-items: center; }
.article-card .post-meta { padding-top: 10px; border-top: 1px solid var(--cx-border); margin-top: auto; }

/* ─── Article list ───────────────────────────────────── */
.article-list { display: flex; flex-direction: column; gap: 14px; }
.article-list-item { display: flex; gap: 15px; background: #fff; border: 1px solid var(--cx-border); border-radius: var(--cx-radius); padding: 15px; transition: box-shadow .2s; }
.article-list-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.article-list-item .img-wrap { width: 120px; flex-shrink: 0; border-radius: 8px; overflow: hidden; height: 85px; }
.article-list-item .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.article-list-item:hover .img-wrap img { transform: scale(1.05); }
.article-list-item .info { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.article-list-item h3 { font-size: .9rem; font-weight: 600; line-height: 1.45; color: var(--cx-body); margin: 0; }
.article-list-item h3 a:hover { color: var(--cx-green); }
.article-list-item .excerpt { font-size: .8rem; color: var(--cx-muted); line-height: 1.5; margin: 0; flex: 1; }
.article-list-item .post-meta { margin-top: auto; }

/* ─── Sidebar ────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 22px; }
.widget-box { background: #fff; border: 1px solid var(--cx-border); border-radius: var(--cx-radius); overflow: hidden; }
.widget-title { font-size: .9rem; font-weight: 700; padding: 13px 16px; border-bottom: 1px solid var(--cx-border); display: flex; align-items: center; gap: 7px; margin: 0; }
.widget-title::before { content: ''; display: block; width: 3px; height: 13px; background: var(--cx-gradient); border-radius: 2px; flex-shrink: 0; }
.widget-body { padding: 14px 16px; }
.widget-post-list { display: flex; flex-direction: column; gap: 13px; }
.widget-post-item { display: flex; gap: 11px; }
.widget-post-item .img-wrap { width: 68px; flex-shrink: 0; height: 50px; border-radius: 6px; overflow: hidden; }
.widget-post-item .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.widget-post-item .info h4 { font-size: .8rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; color: var(--cx-body); }
.widget-post-item .info h4 a:hover { color: var(--cx-green); }
.widget-post-item .info .time { font-size: .72rem; color: var(--cx-muted); }
.widget-cat-list { display: flex; flex-direction: column; }
.widget-cat-item { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--cx-border); font-size: .84rem; }
.widget-cat-item:last-child { border-bottom: none; }
.widget-cat-item a:hover { color: var(--cx-green); }
.widget-cat-item .count { background: var(--cx-bg); border-radius: 10px; font-size: .72rem; padding: 2px 8px; color: var(--cx-muted); }
/* Newsletter widget */
.widget-newsletter { background: var(--cx-green); border-radius: var(--cx-radius); padding: 20px 16px; color: #fff; text-align: center; }
.widget-newsletter h3 { font-size: .95rem; margin-bottom: 6px; color: #fff; }
.widget-newsletter p { font-size: .8rem; opacity: .85; margin-bottom: 14px; }
.widget-newsletter input[type=email] { width: 100%; padding: 9px 14px; border-radius: 20px; border: none; font-size: .84rem; margin-bottom: 8px; outline: none; }
.widget-newsletter button { width: 100%; padding: 9px; border-radius: 20px; background: var(--cx-green-dark); color: #fff; border: none; font-weight: 700; cursor: pointer; font-size: .84rem; }
.widget-newsletter button:hover { opacity: .9; }

/* ─── Newsletter CTA strip ───────────────────────────── */
.nl-cta { background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%); border-radius: var(--cx-radius); padding: 32px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 8px 0; }
.nl-cta .left h2 { color: #fff; font-size: 1.25rem; margin-bottom: 5px; }
.nl-cta .left p { color: rgba(255,255,255,.8); font-size: .86rem; margin: 0; }
.nl-cta .right { display: flex; gap: 10px; flex-shrink: 0; }
.nl-cta .right input[type=email] { padding: 10px 20px; border-radius: 25px; border: none; font-size: .86rem; min-width: 220px; outline: none; }
.nl-cta .right button { padding: 10px 24px; border-radius: 25px; background: #fff; color: var(--cx-green-dark); border: none; font-weight: 700; cursor: pointer; white-space: nowrap; }
.nl-cta .right button:hover { opacity: .9; }

/* ─── Pagination ─────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin: 28px 0 0; flex-wrap: wrap; }
.pagination .page-numbers { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--cx-border); display: flex; align-items: center; justify-content: center; font-size: .84rem; color: var(--cx-muted); transition: all .2s; }
.pagination .page-numbers.current, .pagination .page-numbers:hover:not(.dots) { background: var(--cx-gradient); background-size: 200%; border-color: transparent; color: #fff; }
.pagination .page-numbers.dots { border: none; width: auto; }

/* ─── Archive header ─────────────────────────────────── */
.archive-head { background: var(--cx-bg); padding: 28px 0; border-bottom: 1px solid var(--cx-border); margin-bottom: 0; }
.archive-head h1 { font-size: 1.5rem; margin-bottom: 4px; }
.archive-head p { color: var(--cx-muted); font-size: .86rem; margin: 0; }

/* ─── Single post ────────────────────────────────────── */
.post-header { padding: 32px 0 24px; border-bottom: 1px solid var(--cx-border); margin-bottom: 26px; }
.post-header .cat-tag { margin-bottom: 14px; }
.post-header h1 { font-size: 1.9rem; line-height: 1.3; margin-bottom: 16px; }
.post-hero-img { border-radius: var(--cx-radius); overflow: hidden; margin-bottom: 30px; }
.post-hero-img img { width: 100%; height: auto; }
.post-content { font-size: .97rem; line-height: 1.85; color: #2d3a4a; }
.post-content p { margin-bottom: 1.4rem; }
.post-content h2 { font-size: 1.35rem; margin: 2rem 0 .9rem; padding-bottom: .5rem; border-bottom: 2px solid var(--cx-bg); }
.post-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .7rem; }
.post-content a { color: var(--cx-green); text-decoration: underline; }
.post-content blockquote { border-left: 4px solid var(--cx-green); background: var(--cx-bg); padding: 15px 20px; border-radius: 0 8px 8px 0; margin: 1.5rem 0; color: var(--cx-muted); }
.post-content blockquote p { margin: 0; }
.post-content img { border-radius: 8px; margin: 1rem 0; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; list-style: revert; }
.post-content li { margin-bottom: .5rem; }
.post-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid var(--cx-border); margin-top: 24px; }
.post-tags .label { font-weight: 700; font-size: .8rem; color: var(--cx-muted); }
.tag-pill { padding: 4px 12px; border-radius: 20px; border: 1.5px solid var(--cx-border); font-size: .78rem; color: var(--cx-muted); transition: all .2s; }
.tag-pill:hover { border-color: var(--cx-green); color: var(--cx-green); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.post-nav-item { background: #fff; border: 1px solid var(--cx-border); border-radius: var(--cx-radius); padding: 16px; transition: box-shadow .2s; }
.post-nav-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.post-nav-item .direction { font-size: .7rem; color: var(--cx-muted); font-weight: 700; text-transform: uppercase; margin-bottom: 5px; display: block; }
.post-nav-item h4 { font-size: .88rem; line-height: 1.4; color: var(--cx-body); margin: 0; }
.post-nav-item h4 a:hover { color: var(--cx-green); }
/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--cx-muted); flex-wrap: wrap; margin-bottom: 16px; }
.breadcrumb a { color: var(--cx-muted); }
.breadcrumb a:hover { color: var(--cx-green); }
.breadcrumb .sep { opacity: .4; font-size: .7rem; }
/* Comments */
.comments-section { margin-top: 36px; }
.comments-section > h2 { font-size: 1.05rem; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--cx-border); display: flex; align-items: center; gap: 8px; }
.comments-section > h2::before { content: ''; display: block; width: 4px; height: 16px; background: var(--cx-gradient); border-radius: 2px; }
.comment-list { list-style: none; padding: 0; }
.comment-item { padding: 18px 0; border-bottom: 1px solid var(--cx-border); }
.comment-item:last-child { border-bottom: none; }
.comment-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.comment-head img { width: 38px; height: 38px; border-radius: 50%; }
.comment-author-name { font-weight: 700; font-size: .86rem; display: block; }
.comment-time { font-size: .74rem; color: var(--cx-muted); }
.comment-body { font-size: .88rem; line-height: 1.7; color: var(--cx-body); padding-left: 50px; }
.comment-body p { margin: 0; }
.comment-form-wrap { margin-top: 28px; background: var(--cx-bg); padding: 22px; border-radius: var(--cx-radius); }
.comment-form-wrap h3 { font-size: .98rem; margin-bottom: 18px; }
.comment-form-wrap .form-group { margin-bottom: 14px; }
.comment-form-wrap label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 5px; }
.comment-form-wrap input[type=text], .comment-form-wrap input[type=email], .comment-form-wrap input[type=url], .comment-form-wrap textarea { width: 100%; padding: 10px 15px; border: 1.5px solid var(--cx-border); border-radius: 8px; font-size: .88rem; outline: none; background: #fff; font-family: inherit; }
.comment-form-wrap input:focus, .comment-form-wrap textarea:focus { border-color: var(--cx-green); }
.comment-form-wrap textarea { resize: vertical; min-height: 110px; }
.comment-form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─── 404 ────────────────────────────────────────────── */
.page-404 { text-align: center; padding: 80px 20px; }
.page-404 .num { font-size: 6rem; font-weight: 900; background: var(--cx-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 16px; }
.page-404 h2 { font-size: 1.5rem; margin-bottom: 10px; }
.page-404 p { color: var(--cx-muted); margin-bottom: 24px; }

/* ─── Footer ─────────────────────────────────────────── */
.site-footer { background: #111827; color: rgba(255,255,255,.72); margin-top: 60px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding: 48px 0 36px; }
.footer-brand .wordmark { font-size: 1.35rem; margin-bottom: 12px; display: block; }
.footer-brand .wm-recycler { color: #fff; }
.footer-brand .wm-daily { color: #66bb6a; }
.footer-brand p { font-size: .84rem; line-height: 1.7; margin-bottom: 0; }
.footer-col h4 { color: #fff; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.6); }
.footer-col ul li a:hover { color: #66bb6a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; display: flex; align-items: center; justify-content: space-between; font-size: .77rem; color: rgba(255,255,255,.38); }
.footer-bottom a { color: rgba(255,255,255,.38); }
.footer-bottom a:hover { color: #66bb6a; }

/* ─── No posts ───────────────────────────────────────── */
.no-posts { text-align: center; padding: 60px 20px; color: var(--cx-muted); }
.no-posts h2 { font-size: 1.1rem; margin-bottom: 8px; color: var(--cx-body); }

/* ─── Responsive ─────────────────────────────────────── */
@media (min-width: 992px) { .site-nav { display: flex; } .mobile-toggle { display: none; } }
@media (max-width: 991px) {
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-row { grid-template-columns: 1fr; }
  .hero-side { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .nl-cta { flex-direction: column; text-align: center; }
  .nl-cta .right { flex-direction: column; width: 100%; }
  .nl-cta .right input[type=email] { min-width: auto; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero-side { grid-template-columns: 1fr; }
  .post-header h1 { font-size: 1.35rem; }
  .post-nav { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .comment-form-wrap .form-row { grid-template-columns: 1fr; }
}
