/*
Theme Name:  Barabanki Darpan News
Theme URI:   http://localhost:9080
Description: Professional Hindi/English bilingual news portal theme
Author:      Barabanki Darpan Team
Version:     3.0.0
Text Domain: bd-news
Tags:        news, hindi, responsive, dark-mode, two-columns
*/

/* ═══════════════════════════════════════════════
   1. CSS VARIABLES & THEME TOKENS
═══════════════════════════════════════════════ */
:root {
  --red:         #d32f2f;
  --red-dark:    #b71c1c;
  --red-light:   #ef5350;
  --navy:        #0d1b2a;
  --navy2:       #1b2b3c;
  --navy3:       #243447;
  --gold:        #f59e0b;
  --green:       #16a34a;
  --white:       #ffffff;
  --bg:          #f0f2f5;
  --card-bg:     #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 24px rgba(0,0,0,.14);
  --radius:      6px;
  --radius-lg:   10px;
  --font-hi:    'Noto Sans Devanagari', 'Mangal', Arial, sans-serif;
  --font-en:    'Inter', 'Roboto', Arial, sans-serif;
  --max-w:       1240px;
  --trans:       0.22s ease;
}

/* Dark Mode */
[data-theme="dark"] {
  --bg:         #0f1923;
  --card-bg:    #1a2535;
  --text:       #e2e8f0;
  --text-muted: #94a3b8;
  --border:     #2d3f52;
  --navy:       #0a1220;
  --navy2:      #131f2e;
  --navy3:      #1a2a3a;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.25);
  --shadow-md:  0 4px 12px rgba(0,0,0,.30);
  --shadow-lg:  0 8px 24px rgba(0,0,0,.40);
}

/* ═══════════════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--font-en);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background var(--trans), color var(--trans);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--trans); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
.hindi, .wp-block-post-title { font-family: var(--font-hi) !important; }

/* ── Containers ── */
.bd-container { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.bd-row       { display: flex; flex-wrap: wrap; gap: 24px; }

/* ═══════════════════════════════════════════════
   3. TOP BAR
═══════════════════════════════════════════════ */
#bd-topbar {
  background: var(--navy);
  border-bottom: 2px solid var(--red);
  padding: 6px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,.65);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left  { display: flex; align-items: center; gap: 14px; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-date  { display: flex; align-items: center; gap: 6px; }
.topbar-date  i { color: var(--red); }
.topbar-divider { opacity: .3; }
.live-time     { font-weight: 600; color: var(--gold); letter-spacing: .5px; }

.topbar-social a {
  color: rgba(255,255,255,.55);
  font-size: 0.85rem;
  padding: 3px 5px;
  border-radius: 3px;
  transition: all var(--trans);
}
.topbar-social a:hover { color: white; background: var(--red); }

/* Dark mode toggle */
#langToggle {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  display: flex; align-items: center; gap: 5px;
  cursor: pointer;
  transition: all var(--trans);
}
#langToggle:hover { background: var(--gold); border-color: var(--gold); color: #000; }
[data-lang="en"] .lang-hi { display: none !important; }
[data-lang="hi"] .lang-en { display: none !important; }
#darkToggle {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  display: flex; align-items: center; gap: 5px;
  cursor: pointer;
  transition: all var(--trans);
}
#darkToggle:hover { background: var(--red); border-color: var(--red); color: white; }

/* ═══════════════════════════════════════════════
   4. HEADER
═══════════════════════════════════════════════ */
#bd-header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: background var(--trans);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 64px; height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem; font-weight: 900;
  font-family: var(--font-hi);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(211,47,47,.4);
}
.brand-text {}
.brand-name {
  font-family: var(--font-hi);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.brand-tagline {
  font-family: var(--font-hi);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.header-ad-slot {
  flex: 1;
  text-align: center;
  max-width: 728px;
}
.ad-placeholder {
  background: linear-gradient(135deg, var(--bg) 0%, var(--border) 100%);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: .3px;
}
.header-ad-slot .ad-placeholder { height: 90px; }

/* ═══════════════════════════════════════════════
   5. NAVIGATION
═══════════════════════════════════════════════ */
#bd-nav {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 3px 10px rgba(211,47,47,.35);
}
.nav-inner {
  display: flex;
  align-items: stretch;
}
.bd-nav-menu { flex: 1; display: flex; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.bd-nav-menu::-webkit-scrollbar { display: none; }
.bd-nav-menu > li { position: relative; flex-shrink: 0; }
.bd-nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.92);
  padding: 13px 14px;
  font-family: var(--font-hi);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--trans);
  border-bottom: 3px solid transparent;
}
.bd-nav-menu > li > a:hover,
.bd-nav-menu > li.current-menu-item > a,
.bd-nav-menu > li.current-menu-ancestor > a {
  background: rgba(0,0,0,.2);
  border-bottom-color: var(--gold);
}
/* Dropdown */
.bd-nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 210px;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s;
  z-index: 600;
}
.bd-nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.bd-nav-menu .sub-menu li a {
  display: block;
  color: rgba(255,255,255,.8);
  padding: 10px 18px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .15s;
}
.bd-nav-menu .sub-menu li a:hover { background: var(--red); color: white; padding-left: 24px; }

/* Nav Search */
.nav-search-wrap { display: flex; align-items: center; padding: 0 4px; }
.nav-search-wrap form { display: flex; }
.nav-search-wrap input {
  background: rgba(255,255,255,.15); border: none;
  color: white; padding: 7px 14px; font-size: 0.85rem;
  width: 150px; outline: none;
  transition: width .3s, background .2s;
}
.nav-search-wrap input::placeholder { color: rgba(255,255,255,.55); }
.nav-search-wrap input:focus { background: rgba(255,255,255,.25); width: 200px; }
.nav-search-wrap button {
  background: rgba(0,0,0,.2); color: white;
  padding: 7px 13px; font-size: 0.9rem;
  transition: background .2s;
}
.nav-search-wrap button:hover { background: rgba(0,0,0,.4); }

/* Mobile Toggle */
#navToggle {
  display: none; color: white; padding: 13px 16px;
  font-size: 1.4rem; background: rgba(0,0,0,.2);
}

/* ═══════════════════════════════════════════════
   5b. CATEGORY NAV BAR
═══════════════════════════════════════════════ */
#bd-cat-nav {
  background: var(--navy2);
  border-bottom: 2px solid var(--red);
  overflow-x: auto;
  scrollbar-width: none;
}
#bd-cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  white-space: nowrap;
}
.cat-nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-family: var(--font-hi);
  font-weight: 600;
  color: rgba(255,255,255,.82);
  border-bottom: 3px solid transparent;
  transition: all var(--trans);
}
.cat-nav-link:hover,
.cat-nav-link.active {
  color: #fff;
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,.07);
}
[data-theme="dark"] #bd-cat-nav { background: var(--navy); }

/* ═══════════════════════════════════════════════
   6. BREAKING NEWS TICKER
═══════════════════════════════════════════════ */
#bd-ticker {
  background: linear-gradient(90deg, #fff8e1, #fff3cd);
  border-bottom: 2px solid var(--gold);
  padding: 8px 0;
  [data-theme="dark"] & { background: var(--navy3); }
}
[data-theme="dark"] #bd-ticker { background: var(--navy2); border-bottom-color: var(--gold); }

.ticker-inner { display: flex; align-items: center; gap: 0; overflow: hidden; }
.ticker-badge {
  background: var(--red); color: white;
  padding: 4px 14px; font-weight: 800;
  font-family: var(--font-hi); font-size: 0.82rem;
  white-space: nowrap; flex-shrink: 0;
  border-radius: 0 4px 4px 0;
  margin-right: 0;
  display: flex; align-items: center; gap: 6px;
  animation: blink-dot 1.2s infinite;
}
.ticker-badge::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: blink-dot 1.2s infinite;
}
@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:.3} }

.ticker-track-wrap { flex: 1; overflow: hidden; position: relative; }
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center;
  padding: 0 32px;
  font-family: var(--font-hi);
  font-size: 0.9rem; font-weight: 600;
  color: var(--navy);
}
[data-theme="dark"] .ticker-item { color: rgba(255,255,255,.85); }
.ticker-item a { color: inherit; }
.ticker-item a:hover { color: var(--red); }
.ticker-item::after { content: ' ❱ '; color: var(--red); margin-left: 8px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-close {
  flex-shrink: 0; color: var(--text-muted);
  padding: 4px 12px; font-size: 1rem;
}
.ticker-close:hover { color: var(--red); }

/* ═══════════════════════════════════════════════
   7. CONTENT LAYOUT
═══════════════════════════════════════════════ */
#bd-content { padding: 22px 0 44px; flex: 1; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 24px;
  align-items: start;
}
/* Section Label */
.bd-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--red);
}
.bd-section-head h2 {
  font-family: var(--font-hi);
  font-size: 1.15rem; font-weight: 800;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.bd-section-head h2 .sec-icon {
  background: var(--red); color: white;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.bd-section-head .see-all {
  font-size: 0.8rem; color: var(--red); font-weight: 600;
  display: flex; align-items: center; gap: 3px;
  white-space: nowrap;
}
.bd-section-head .see-all:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════
   8. FEATURED NEWS (Big Banner + Side List)
═══════════════════════════════════════════════ */
.hero-section { margin-bottom: 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 460px;
}

/* Big Banner (left) */
.hero-slider { position: relative; overflow: hidden; background: var(--navy); }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 50%, transparent 100%);
}
.hero-slide-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 28px 22px; z-index: 2;
}
.hero-slide-body .post-cat { margin-bottom: 10px; }
.hero-slide-body h2 {
  font-family: var(--font-hi);
  font-size: 1.65rem; font-weight: 800;
  color: white; line-height: 1.35;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-slide-body h2 a { color: white; }
.hero-slide-body h2 a:hover { color: var(--gold); }
.hero-slide-excerpt {
  color: rgba(255,255,255,.80);
  font-size: 0.88rem; line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-slide-meta { color: rgba(255,255,255,.65); font-size: 0.78rem; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slide-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: white;
  padding: 7px 16px; border-radius: 4px;
  font-size: 0.82rem; font-weight: 600;
  margin-top: 12px;
  transition: background var(--trans);
}
.hero-slide-read-more:hover { background: var(--red-dark); color: white; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 16px; right: 16px;
  display: flex; gap: 6px; z-index: 3;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: all .2s;
}
.slider-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: white;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; z-index: 3; cursor: pointer;
  transition: background .2s; border: 1px solid rgba(255,255,255,.2);
}
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-prev:hover, .slider-next:hover { background: var(--red); border-color: var(--red); }

/* Side News List (right) */
.hero-stories {
  background: var(--card-bg);
  display: flex; flex-direction: column;
  border-left: 3px solid var(--red);
  transition: background var(--trans);
  overflow: hidden;
}
.hero-stories-head {
  background: var(--red); color: white;
  padding: 11px 14px;
  font-family: var(--font-hi); font-weight: 700; font-size: 0.88rem;
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.hero-story-item {
  display: flex; gap: 10px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  flex: 1; align-items: flex-start;
  transition: background var(--trans);
  min-height: 0;
}
.hero-story-item:hover { background: var(--bg); }
.hero-story-item:last-child { border-bottom: none; }
.hero-story-thumb {
  width: 80px; height: 58px; flex-shrink: 0;
  border-radius: var(--radius); overflow: hidden; background: var(--border);
}
.hero-story-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-story-body { flex: 1; min-width: 0; }
.hero-story-title {
  font-family: var(--font-hi);
  font-size: 0.84rem; font-weight: 700;
  line-height: 1.4; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-story-title:hover { color: var(--red); }
.hero-story-meta { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════════════
   9. NEWS GRID
═══════════════════════════════════════════════ */
.news-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.news-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ═══════════════════════════════════════════════
   10. POST CARD
═══════════════════════════════════════════════ */
.post-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.post-card-thumb {
  position: relative;
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--border); flex-shrink: 0;
}
.post-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.06); }
.post-card-thumb .post-cat { position: absolute; top: 10px; left: 10px; }
.post-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.post-card-title {
  font-family: var(--font-hi);
  font-size: 0.95rem; font-weight: 700;
  line-height: 1.45; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 10px;
}
.post-card-title a { color: var(--text); }
.post-card-title a:hover { color: var(--red); }
.post-card-excerpt {
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 10px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 0.72rem; color: var(--text-muted);
  padding-top: 10px; border-top: 1px solid var(--border);
  align-items: center;
}
.post-card-meta span { display: flex; align-items: center; gap: 4px; }
.post-card-meta i { color: var(--red); }

/* No thumbnail fallback */
.card-no-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e53935, #b71c1c);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hi);
  font-size: 3.5rem; font-weight: 900;
  color: rgba(255,255,255,.3);
  position: relative;
}
.card-no-thumb .post-cat { position: absolute; top: 10px; left: 10px; }

/* ═══════════════════════════════════════════════
   11. POST LIST ITEM (Sidebar)
═══════════════════════════════════════════════ */
.post-list-item {
  display: flex; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.post-list-item:last-child { border-bottom: none; }
.post-list-item:hover { background: transparent; }
.post-list-thumb {
  width: 80px; height: 62px; flex-shrink: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--border);
}
.post-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-list-body { flex: 1; min-width: 0; }
.post-list-num {
  font-size: 1.5rem; font-weight: 900; color: var(--border);
  line-height: 1; margin-bottom: 2px;
}
.post-list-title {
  font-family: var(--font-hi); font-size: 0.87rem; font-weight: 700;
  line-height: 1.4; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-list-title a { color: var(--text); }
.post-list-title a:hover { color: var(--red); }
.post-list-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

/* ═══════════════════════════════════════════════
   12. POST CATEGORY BADGE
═══════════════════════════════════════════════ */
.post-cat {
  display: inline-block;
  padding: 3px 10px; border-radius: 3px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  color: white; background: var(--red);
  margin-bottom: 6px; line-height: 1.4;
}
.post-cat:hover { opacity: .85; color: white; }
.cat-barabanki      { background: #c62828; }
.cat-rajniti        { background: #6a1b9a; }
.cat-apradh         { background: #1a237e; }
.cat-khel           { background: #1b5e20; }
.cat-manoranjan     { background: #bf360c; }
.cat-vyapar         { background: #01579b; }
.cat-shiksha        { background: #e65100; }
.cat-swasthya       { background: #004d40; }
.cat-taknik         { background: #37474f; }
.cat-rashtriya      { background: #880e4f; }
.cat-uttar-pradesh  { background: #4e342e; }
.cat-antarrashtriya { background: #0d47a1; }
.cat-crime          { background: #1a237e; }
.cat-politics       { background: #6a1b9a; }
.cat-sports         { background: #1b5e20; }
.cat-jobs           { background: #e65100; }
.cat-business       { background: #01579b; }
.cat-technology     { background: #37474f; }
.cat-education      { background: #bf360c; }
.cat-entertainment  { background: #880e4f; }
.cat-local-news     { background: #c62828; }

/* ═══════════════════════════════════════════════
   13. CATEGORY SECTIONS (Homepage)
═══════════════════════════════════════════════ */
.cat-section { margin-bottom: 32px; }
.cat-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Featured layout: 1 big + 3 small */
.cat-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.cat-featured-main .post-card-thumb {
  aspect-ratio: 16/9;
}
.cat-featured-main .post-card-title {
  font-size: 1.05rem;
}
.cat-featured-sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.cat-featured-sub .post-card {
  flex-direction: row;
  align-items: stretch;
}
.cat-featured-sub .post-card-thumb {
  width: 120px;
  aspect-ratio: unset;
  height: auto;
  flex-shrink: 0;
}
.cat-featured-sub .post-card-body {
  padding: 10px 12px;
}
.cat-featured-sub .post-card-title {
  font-size: 0.88rem;
  -webkit-line-clamp: 3;
}
@media (max-width: 768px) {
  .cat-featured-grid { grid-template-columns: 1fr; }
  .cat-featured-sub .post-card { flex-direction: column; }
  .cat-featured-sub .post-card-thumb { width: 100%; height: 160px; }
}

/* ═══════════════════════════════════════════════
   14. SIDEBAR
═══════════════════════════════════════════════ */
.bd-sidebar { }
.sidebar-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  overflow: hidden;
  transition: background var(--trans);
}
.sidebar-card-head {
  background: var(--navy);
  color: white; padding: 11px 16px;
  font-family: var(--font-hi); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  border-left: 4px solid var(--red);
}
.sidebar-card-head i { color: var(--gold); }
.sidebar-card-body { padding: 12px 14px; }

/* Category list in sidebar */
.cat-list li { border-bottom: 1px solid var(--border); }
.cat-list li:last-child { border-bottom: none; }
.cat-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; font-family: var(--font-hi); font-size: 0.88rem; color: var(--text);
  transition: color .2s;
}
.cat-list li a:hover { color: var(--red); padding-left: 6px; }
.cat-count {
  background: var(--bg); color: var(--text-muted);
  font-size: 0.7rem; padding: 2px 8px; border-radius: 10px;
  font-family: var(--font-en);
}

/* Weather widget */
.weather-body { text-align: center; padding: 16px 0; }
.weather-city { font-family: var(--font-hi); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.weather-temp { font-size: 3.5rem; font-weight: 300; color: var(--red); line-height: 1.1; }
.weather-desc { font-family: var(--font-hi); font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }
.weather-details { display: flex; justify-content: center; gap: 20px; margin-top: 12px; }
.weather-detail { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* Newsletter */
.newsletter-body { padding: 14px; }
.newsletter-body p { font-family: var(--font-hi); font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form input {
  padding: 9px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.85rem; color: var(--text);
  background: var(--bg); outline: none; transition: border-color .2s;
  font-family: var(--font-hi);
}
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form button {
  background: var(--red); color: white;
  padding: 9px 14px; border-radius: var(--radius);
  font-weight: 700; font-family: var(--font-hi); font-size: 0.88rem;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--red-dark); }

/* Tags cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-pill {
  display: inline-block;
  padding: 4px 12px; border-radius: 20px;
  background: var(--bg); border: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-muted);
  transition: all .2s;
}
.tag-pill:hover { background: var(--red); color: white; border-color: var(--red); }

/* Ad in sidebar */
.sidebar-ad { text-align: center; }
.sidebar-ad .ad-placeholder { height: 250px; flex-direction: column; gap: 8px; }
.sidebar-ad .ad-placeholder i { font-size: 1.8rem; }

/* ═══════════════════════════════════════════════
   15. SINGLE POST
═══════════════════════════════════════════════ */
.single-wrapper { background: var(--card-bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; transition: background var(--trans); }
.single-header { padding: 28px 32px 0; }
.single-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.single-title {
  font-family: var(--font-hi);
  font-size: 2rem; font-weight: 800;
  line-height: 1.3; color: var(--text);
  margin-bottom: 16px;
}
.single-meta-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}
.single-meta-bar span { display: flex; align-items: center; gap: 5px; }
.single-meta-bar i { color: var(--red); }
.share-btns { display: flex; gap: 8px; margin-left: auto; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px; border-radius: var(--radius);
  font-size: 0.75rem; font-weight: 700;
  color: white; transition: opacity .2s;
}
.share-btn:hover { opacity: .85; color: white; }
.share-btn.fb   { background: #1877f2; }
.share-btn.tw   { background: #000000; }
.share-btn.wa   { background: #25d366; }
.share-btn.tg   { background: #26a5e4; }
.share-btn.copy { background: var(--navy2); }

.single-thumb { margin: 0; }
.single-thumb img { width: 100%; max-height: 500px; object-fit: cover; }
.single-thumb figcaption {
  padding: 8px 32px;
  font-size: 0.78rem; color: var(--text-muted);
  background: var(--bg); border-bottom: 1px solid var(--border);
  font-style: italic;
}

.entry-content { padding: 26px 32px 32px; font-size: 1.02rem; line-height: 1.9; }
.entry-content h2, .entry-content h3, .entry-content h4 {
  font-family: var(--font-hi); color: var(--text);
  margin: 26px 0 12px;
}
.entry-content h2 { font-size: 1.4rem; }
.entry-content h3 { font-size: 1.2rem; }
.entry-content p { margin-bottom: 18px; }
.entry-content a { color: var(--red); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); margin: 16px auto; }
.entry-content ul, .entry-content ol { margin: 0 0 18px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
  border-left: 4px solid var(--red); padding: 14px 22px;
  margin: 22px 0; background: var(--bg);
  font-family: var(--font-hi); font-style: normal;
  font-size: 1.05rem; color: var(--text);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.entry-content th, .entry-content td { padding: 10px 14px; border: 1px solid var(--border); font-size: 0.9rem; }
.entry-content th { background: var(--red); color: white; }
.entry-content tr:nth-child(even) { background: var(--bg); }

/* Tags */
.post-tags-row { padding: 0 32px 20px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.tags-label { font-weight: 700; font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }

/* Author box */
.author-box {
  margin: 0 32px 24px; padding: 18px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; gap: 16px;
}
.author-box .author-avatar img { border-radius: 50%; width: 72px; height: 72px; object-fit: cover; }
.author-info .author-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.author-info .author-bio { font-size: 0.85rem; color: var(--text-muted); }

/* Related posts */
.related-section { padding: 0 32px 32px; }

/* Post nav */
.post-nav-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 24px;
}
.post-nav-btn {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 18px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: all .2s;
}
.post-nav-btn:hover { border-color: var(--red); background: var(--red); }
.post-nav-btn:hover * { color: white !important; }
.post-nav-btn.next { text-align: right; }
.post-nav-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); font-weight: 600; }
.post-nav-title { font-family: var(--font-hi); font-size: 0.88rem; font-weight: 700; color: var(--text); line-height: 1.4; }

/* ═══════════════════════════════════════════════
   16. PAGINATION
═══════════════════════════════════════════════ */
.bd-pagination { display: flex; justify-content: center; gap: 6px; margin: 28px 0; flex-wrap: wrap; }
.bd-pagination a, .bd-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.88rem; color: var(--text); background: var(--card-bg);
  transition: all .2s;
}
.bd-pagination a:hover, .bd-pagination .current {
  background: var(--red); color: white; border-color: var(--red);
}
.page-numbers { display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.88rem; color: var(--text); background: var(--card-bg);
  transition: all .2s; }
.page-numbers:hover, .page-numbers.current { background: var(--red); color: white; border-color: var(--red); }
.posts-navigation { display: flex; justify-content: center; gap: 8px; margin: 28px 0; }
.nav-links { display: flex; gap: 8px; }

/* ═══════════════════════════════════════════════
   17. CATEGORY / ARCHIVE PAGE
═══════════════════════════════════════════════ */
.archive-header {
  background: var(--card-bg); padding: 20px 24px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  margin-bottom: 22px; border-left: 5px solid var(--red);
  transition: background var(--trans);
}
.archive-header h1 { font-family: var(--font-hi); font-size: 1.5rem; font-weight: 800; }
.archive-header p  { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.archive-count     { background: var(--red); color: white; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; margin-left: 8px; }

/* ═══════════════════════════════════════════════
   18. SEARCH PAGE
═══════════════════════════════════════════════ */
.search-banner {
  background: var(--card-bg); padding: 24px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.search-banner h1 { font-family: var(--font-hi); font-size: 1.3rem; font-weight: 800; }
.search-banner .result-count { color: var(--text-muted); font-size: 0.85rem; margin: 4px 0 16px; }
.search-bar { display: flex; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.search-bar:focus-within { border-color: var(--red); }
.search-bar input { flex: 1; padding: 11px 16px; border: none; background: transparent; color: var(--text); font-size: 0.95rem; outline: none; font-family: var(--font-hi); }
.search-bar button { background: var(--red); color: white; padding: 11px 20px; font-size: 1rem; transition: background .2s; }
.search-bar button:hover { background: var(--red-dark); }

/* ═══════════════════════════════════════════════
   19. 404 PAGE
═══════════════════════════════════════════════ */
.bd-404 { text-align: center; padding: 80px 20px; }
.bd-404-code { font-size: 9rem; font-weight: 900; color: var(--red); opacity: .12; line-height: 1; }
.bd-404 h2 { font-family: var(--font-hi); font-size: 1.6rem; margin: -24px 0 14px; }
.bd-404 p  { color: var(--text-muted); max-width: 420px; margin: 0 auto 28px; line-height: 1.7; }
.bd-btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 24px; background: var(--red); color: white; border-radius: var(--radius); font-weight: 700; font-family: var(--font-hi); transition: background .2s; }
.bd-btn:hover { background: var(--red-dark); color: white; }
.bd-btn-outline { background: transparent; border: 2px solid var(--red); color: var(--red); }
.bd-btn-outline:hover { background: var(--red); color: white; }

/* ═══════════════════════════════════════════════
   20. STATIC PAGES
═══════════════════════════════════════════════ */
.page-wrapper { background: var(--card-bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; transition: background var(--trans); }
.page-header-bar { padding: 26px 32px 20px; border-bottom: 3px solid var(--red); }
.page-header-bar h1 { font-family: var(--font-hi); font-size: 1.8rem; font-weight: 800; }
.page-body { padding: 26px 32px 36px; line-height: 1.85; font-size: 1rem; }
.page-body h2, .page-body h3 { font-family: var(--font-hi); color: var(--text); margin: 22px 0 10px; }
.page-body p { margin-bottom: 16px; }

/* Contact page */
.contact-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-info-block { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-icon { width: 46px; height: 46px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-icon i {}
.contact-info-text h4 { font-family: var(--font-hi); font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.contact-info-text p  { font-size: 0.85rem; color: var(--text-muted); }
.contact-form-wrap {}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-family: var(--font-hi); font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--bg); color: var(--text);
  font-size: 0.9rem; outline: none;
  font-family: var(--font-hi); transition: border-color .2s;
}
.form-control:focus { border-color: var(--red); }
textarea.form-control { height: 130px; resize: vertical; }

/* ═══════════════════════════════════════════════
   21. NEWSLETTER SECTION (Homepage)
═══════════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg); padding: 40px;
  text-align: center; margin: 28px 0; color: white;
}
.newsletter-section h3 { font-family: var(--font-hi); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.newsletter-section p  { opacity: .85; font-family: var(--font-hi); font-size: 0.95rem; margin-bottom: 22px; }
.newsletter-inline { display: flex; max-width: 480px; margin: 0 auto; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.newsletter-inline input { flex: 1; padding: 13px 18px; border: none; font-size: 0.95rem; outline: none; font-family: var(--font-hi); }
.newsletter-inline button { padding: 13px 22px; background: var(--navy); color: white; font-weight: 700; font-family: var(--font-hi); white-space: nowrap; transition: background .2s; }
.newsletter-inline button:hover { background: #000; }

/* ═══════════════════════════════════════════════
   22. FOOTER
═══════════════════════════════════════════════ */
/* Disclaimer Bar */
#bd-disclaimer { background:#fff8e1; border-top:2px solid #ffc107; border-bottom:1px solid #ffe082; padding:8px 0; font-size:.82rem; color:#555; line-height:1.5; }
#bd-disclaimer .bd-container { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
#bd-disclaimer i { color:#f57c00; flex-shrink:0; }
#bd-disclaimer a { color:#d32f2f; font-weight:600; margin-left:6px; white-space:nowrap; }
#bd-disclaimer a:hover { text-decoration:underline; }

#bd-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-top { padding: 44px 0 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-col h4 {
  color: white; font-family: var(--font-hi); font-size: 1rem; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.footer-col p   { font-size: 0.85rem; line-height: 1.75; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,.65);
  transition: all .2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 1rem; }
.footer-col ul li a:hover   { color: var(--gold); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  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); font-size: 0.9rem; transition: all .2s;
}
.footer-social a:hover { background: var(--red); color: white; transform: translateY(-2px); }
.footer-bottom {
  padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   23. FLOATING BUTTONS
═══════════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 26px; right: 26px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: white;
  display: none; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 14px rgba(211,47,47,.4);
  z-index: 800; cursor: pointer;
  border: none; transition: transform .2s, box-shadow .2s;
}
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(211,47,47,.5); }
#read-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 9999; width: 0%;
  transition: width .1s linear;
}

/* ═══════════════════════════════════════════════
   23b. BREADCRUMBS
═══════════════════════════════════════════════ */
.bd-breadcrumb {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.bd-breadcrumb ol {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px; list-style: none;
}
.bd-breadcrumb li { display: flex; align-items: center; gap: 6px; }
.bd-breadcrumb li:not(:last-child)::after { content: '/'; color: var(--text-muted); }
.bd-breadcrumb a { color: var(--red); }
.bd-breadcrumb a:hover { text-decoration: underline; }
.bd-breadcrumb .current { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════════
   23c. STICKY SIDEBAR
═══════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .bd-sidebar-sticky .bd-sidebar-inner {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }
}

/* ═══════════════════════════════════════════════
   23d. PRINT STYLES
═══════════════════════════════════════════════ */
@media print {
  #bd-topbar, #bd-header .header-ad-slot, #bd-nav, #bd-cat-nav,
  #bd-ticker, .share-btns, .post-nav-row, .related-section,
  .bd-sidebar, #bd-footer, #back-to-top, #read-progress,
  .newsletter-section, .ad-placeholder { display: none !important; }
  .content-grid { grid-template-columns: 1fr !important; }
  body { background: white !important; color: black !important; }
  .single-wrapper { box-shadow: none !important; }
  a { color: black !important; text-decoration: none !important; }
}

/* ═══════════════════════════════════════════════
   24. UTILITY CLASSES
═══════════════════════════════════════════════ */
.no-posts { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.no-posts i { font-size: 3rem; margin-bottom: 16px; display: block; }
.no-posts h3 { font-family: var(--font-hi); font-size: 1.2rem; margin-bottom: 8px; color: var(--text); }
.mt-1 { margin-top: 8px; }  .mt-2 { margin-top: 16px; }  .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.text-muted { color: var(--text-muted); }
.text-red   { color: var(--red); }
.font-hindi { font-family: var(--font-hi); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ═══════════════════════════════════════════════
   25. WORDPRESS DEFAULT CLASSES
═══════════════════════════════════════════════ */
.alignleft  { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { margin: 16px auto; text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.78rem; color: var(--text-muted); font-style: italic; text-align: center; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 16px 0; }
.gallery img { width: 100%; border-radius: var(--radius); }

/* ═══════════════════════════════════════════════
   26. RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr 280px; }
  .hero-grid    { grid-template-columns: 1fr 280px; height: 360px; }
  .cat-section-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .hero-grid    { grid-template-columns: 1fr; height: auto; }
  .hero-stories { display: none; }
  .hero-slider  { height: 320px; }
  .single-title { font-size: 1.5rem; }
  .single-header, .entry-content, .post-tags-row, .author-box, .related-section { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 768px) {
  #navToggle          { display: flex; align-items: center; justify-content: center; }
  .bd-nav-menu-wrap   { display: none; flex-direction: column; width: 100%; background: var(--red-dark); }
  .bd-nav-menu-wrap.open { display: flex; }
  .bd-nav-menu        { flex-direction: column; }
  .bd-nav-menu > li > a { padding: 11px 18px; border-bottom: 1px solid rgba(255,255,255,.1); border-bottom-width: 1px !important; }
  .nav-search-wrap    { display: none; }
  .news-grid-3, .cat-section-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid-4  { grid-template-columns: 1fr; }
  .hero-grid    { height: 280px; }
  .hero-slide-body h2 { font-size: 1.2rem; }
  .contact-two-col { grid-template-columns: 1fr; }
  .newsletter-inline { flex-direction: column; }
  .newsletter-inline input { border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-inline button { border-radius: 0 0 var(--radius) var(--radius); }
  .topbar-left .topbar-date + * { display: none; }
}
@media (max-width: 480px) {
  .news-grid-3, .cat-section-grid, .news-grid-2 { grid-template-columns: 1fr; }
  .hero-grid    { height: 240px; }
  .footer-grid  { grid-template-columns: 1fr; }
  .share-btns   { display: none; }
  .post-nav-row { grid-template-columns: 1fr; }
  .brand-name   { font-size: 1.5rem; }
}
