/* ================================================================
   BlogCMS — Premium Professional Design
   Magazine-style, AdSense-safe, Mobile-first
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary:      #0f172a;
  --accent:       #e11d48;
  --accent2:      #f59e0b;
  --blue:         #2563eb;
  --text:         #1e293b;
  --muted:        #64748b;
  --light:        #f8fafc;
  --border:       #e2e8f0;
  --white:        #ffffff;
  --card-shadow:  0 4px 24px rgba(0,0,0,.08);
  --hover-shadow: 0 12px 40px rgba(0,0,0,.15);
  --radius:       12px;
  --radius-sm:    8px;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #f9fafb;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--accent); }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  background: var(--primary) !important;
  padding: 0 !important;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.navbar-brand {
  font-family: var(--font-head) !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  letter-spacing: -.02em;
  padding: 12px 0 !important;
  color: #fff !important;
}
.navbar-brand i { color: var(--accent) !important; }
.navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500 !important;
  font-size: .9rem !important;
  padding: 20px 14px !important;
  transition: color .2s;
  letter-spacing: .01em;
}
.navbar .nav-link:hover { color: var(--accent2) !important; }
.navbar .dropdown-menu {
  border: none;
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: dropDown .2s ease;
}
@keyframes dropDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }
.navbar .dropdown-item:hover { background: var(--accent); color: #fff; }
.navbar .form-control {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 6px 0 0 6px !important;
  font-size: .875rem;
}
.navbar .form-control::placeholder { color: rgba(255,255,255,.5); }
.navbar .form-control:focus { background: rgba(255,255,255,.2); border-color: var(--accent2); box-shadow: none; color: #fff; }
.navbar .btn-light { border-radius: 0 6px 6px 0 !important; font-size: .875rem; }

/* ── HEADER AD BAR ──────────────────────────────────────── */
.ad-header-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  text-align: center;
  min-height: 0;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a6e 50%, #312e81 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-section h1 {
  font-family: var(--font-head);
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  position: relative;
}
.hero-section h1 span { color: var(--accent2); }
.hero-section .lead {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  position: relative;
}
.hero-search {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.hero-search input {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hero-search button {
  padding: 16px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  font-size: 1rem;
}
.hero-search button:hover { background: #be123c; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat-num { font-size: 1.8rem; font-weight: 700; color: var(--accent2); font-family: var(--font-head); display: block; }
.hero-stats .stat-label { font-size: .8rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }

/* ── BREAKING NEWS TICKER ───────────────────────────────── */
.news-ticker {
  background: var(--accent);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-label {
  background: #be123c;
  color: #fff;
  padding: 4px 16px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  white-space: nowrap;
  margin-right: 16px;
  flex-shrink: 0;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-items {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-items a {
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 500;
  padding: 0 32px 0 0;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s;
}
.ticker-items a:hover { color: #fff; }
.ticker-items a::before { content: '● '; opacity: .5; margin-right: 8px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb { margin: 0; font-size: .82rem; }
.breadcrumb-item a { color: var(--muted); }
.breadcrumb-item.active { color: var(--text); font-weight: 500; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--border); }

/* ── SECTION HEADINGS ───────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title .badge-new {
  font-size: .65rem;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── FEATURED POST (MAGAZINE HERO) ─────────────────────── */
.featured-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--primary);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--card-shadow);
  margin-bottom: 32px;
  transition: transform .3s, box-shadow .3s;
}
.featured-hero:hover { transform: translateY(-4px); box-shadow: var(--hover-shadow); }
.featured-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: opacity .3s, transform .6s;
}
.featured-hero:hover img { opacity: .45; transform: scale(1.03); }
.featured-hero .overlay {
  position: relative;
  z-index: 2;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
  width: 100%;
}
.featured-hero .cat-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.featured-hero h2 {
  font-family: var(--font-head);
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.featured-hero h2 a { color: #fff; }
.featured-hero h2 a:hover { color: var(--accent2); }
.featured-meta { color: rgba(255,255,255,.7); font-size: .82rem; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.featured-meta span { display: flex; align-items: center; gap: 4px; }
.read-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff;
  padding: 8px 20px; border-radius: 50px;
  font-weight: 600; font-size: .85rem;
  margin-top: 14px;
  transition: background .2s, transform .2s;
}
.read-btn:hover { background: #be123c; color: #fff; transform: translateX(4px); }

/* ── POST CARDS ─────────────────────────────────────────── */
.post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--hover-shadow); }
.post-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}
.post-card .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25,1,.5,1);
}
.post-card:hover .card-img-wrap img { transform: scale(1.08); }
.post-card .card-img-wrap .cat-overlay {
  position: absolute; top: 12px; left: 12px;
}
.cat-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  transition: background .2s;
}
.cat-pill:hover { background: #be123c; color: #fff; }
.cat-pill.blue { background: var(--blue); }
.cat-pill.blue:hover { background: #1d4ed8; }
.post-card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card .post-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 8px 0;
  color: var(--primary);
}
.post-card .post-title a { color: var(--primary); }
.post-card .post-title a:hover { color: var(--accent); }
.post-card .post-excerpt {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  gap: 8px;
  flex-wrap: wrap;
}
.post-meta .meta-info {
  color: var(--muted);
  font-size: .78rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.post-meta .meta-info span { display: flex; align-items: center; gap: 4px; }
.read-more-btn {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: gap .2s;
  white-space: nowrap;
}
.read-more-btn:hover { color: var(--accent); gap: 8px; }

/* ── TRENDING / POPULAR SIDEBAR ─────────────────────────── */
.trending-card {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.trending-card:last-child { border-bottom: none; }
.trending-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  min-width: 36px;
  transition: color .2s;
}
.trending-card:hover .trending-num { color: var(--accent); }
.trending-img {
  width: 72px; height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.trending-title {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}
.trending-title a { color: var(--primary); }
.trending-title a:hover { color: var(--accent); }

/* ── SIDEBAR WIDGETS ────────────────────────────────────── */
.widget {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin-bottom: 24px;
}
.widget-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #1e3a6e);
}
.widget-header h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.widget-header i { color: var(--accent2); }
.widget-body { padding: 16px 20px; }
.cat-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: padding .2s;
}
.cat-list-item:last-child { border: none; }
.cat-list-item:hover { padding-left: 6px; }
.cat-list-item a { color: var(--text); font-size: .875rem; font-weight: 500; }
.cat-list-item a:hover { color: var(--accent); }
.cat-count {
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

/* ── AD ZONES ───────────────────────────────────────────── */
.ad-zone { clear: both; overflow: hidden; }
.ad-zone.ad-header, .ad-zone.ad-footer { text-align: center; padding: 8px 0; }
.ad-zone.ad-sidebar, .ad-zone.ad-sidebar-sticky { text-align: center; display: block; }
.ad-zone.ad-before-post, .ad-zone.ad-after-post { padding: 20px 0; text-align: center; }
.ad-zone.ad-paragraph { margin: 24px auto; text-align: center; max-width: 100%; }
.ad-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
  background: var(--light);
}
.adsense-safe { position: relative; z-index: 1; }

/* ── ARTICLE CONTENT ────────────────────────────────────── */
.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}
.article-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin: 2em 0 .75em;
  color: var(--primary);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.article-content h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin: 1.5em 0 .6em;
  color: var(--primary);
}
.article-content p { margin-bottom: 1.3em; }
.article-content img {
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  margin: 1.5em auto;
}
.article-content ul, .article-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.3em;
}
.article-content li { margin-bottom: .4em; }
.article-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin: 1.5em 0;
  background: #fff1f2;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #64748b;
}
.article-content a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(225,29,72,.3); }
.article-content a:hover { text-decoration-color: var(--accent); }

/* ── TAGS ───────────────────────────────────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  display: inline-block;
  background: var(--light);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  transition: all .2s;
}
.tag-pill:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── SHARE BUTTONS ──────────────────────────────────────── */
.share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.share-btn.fb { background: #1877f2; color: #fff; }
.share-btn.tw { background: #000; color: #fff; }
.share-btn.wa { background: #25d366; color: #fff; }

/* ── CATEGORY PAGE ──────────────────────────────────────── */
.cat-hero {
  background: linear-gradient(135deg, var(--primary), #1e3a6e);
  padding: 48px 0;
  text-align: center;
}
.cat-hero h1 { font-family: var(--font-head); color: #fff; font-size: 2.2rem; margin-bottom: 8px; }
.cat-hero p { color: rgba(255,255,255,.7); }

/* ── RELATED POSTS ──────────────────────────────────────── */
.related-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--hover-shadow); }
.related-card img { width: 100%; height: 160px; object-fit: cover; }
.related-card .body { padding: 14px; }
.related-card h4 { font-family: var(--font-head); font-size: .9rem; color: var(--primary); }
.related-card h4 a { color: var(--primary); }
.related-card h4 a:hover { color: var(--accent); }

/* ── PAGINATION ─────────────────────────────────────────── */
.pagination .page-link {
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm) !important;
  margin: 0 3px;
  font-weight: 500;
  transition: all .2s;
}
.pagination .page-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination .page-item.active .page-link { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--primary) !important;
  border-top: 4px solid var(--accent);
}
footer .footer-brand { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; color: #fff; }
footer .footer-desc { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.7; }
footer h6 { color: var(--accent2); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: 16px; }
footer a { color: rgba(255,255,255,.6); font-size: .875rem; display: block; margin-bottom: 6px; transition: color .2s; }
footer a:hover { color: var(--accent2); }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7) !important;
  font-size: 1rem;
  transition: all .2s;
}
.social-btn:hover { background: var(--accent); color: #fff !important; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  text-align: center;
}
.footer-bottom a { display: inline; margin: 0 8px; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--accent2); }

/* ── ADMIN NOTICE STRIP ─────────────────────────────────── */
.auto-dismiss { animation: fadeOut 5s forwards 3s; }
@keyframes fadeOut { to { opacity: 0; pointer-events: none; height: 0; padding: 0; margin: 0; } }

/* ── BACK TO TOP ────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(225,29,72,.4);
  display: flex; align-items: center; justify-content: center;
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: #be123c; transform: translateY(-3px); }

/* ── POST SINGLE ────────────────────────────────────────── */
.post-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  margin-bottom: 28px;
}
.post-header-cat { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.post-main-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 16px;
}
.post-byline {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .85rem;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.post-byline span { display: flex; align-items: center; gap: 5px; }

/* ── SEARCH PAGE ────────────────────────────────────────── */
.search-hero {
  background: linear-gradient(135deg, var(--primary), #1e3a6e);
  padding: 40px 0;
  text-align: center;
}
.search-hero h1 { color: #fff; font-family: var(--font-head); margin-bottom: 16px; }

/* ── UTILITY ────────────────────────────────────────────── */
.rounded-xl { border-radius: var(--radius) !important; }
.text-accent { color: var(--accent) !important; }
.bg-accent { background: var(--accent) !important; }
.img-placeholder { background: linear-gradient(135deg, #e2e8f0, #cbd5e1); display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 2rem; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section { padding: 40px 0; }
  .featured-hero { min-height: 280px; }
  .featured-hero .overlay { padding: 20px; }
  .hero-stats { gap: 20px; }
  .post-card .card-img-wrap { height: 180px; }
  .section-title { font-size: 1.3rem; }
}

/* ── NO IMAGE FALLBACK ──────────────────────────────────── */
img[src=""], img:not([src]) { 
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}
