/* ============================================================
   NEWS ADDAA — Main Stylesheet v1.0.0
   newsaddaa.in
============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #D9368B;
  --pink-dark:  #a3005e;
  --dark:       #1a1a1a;
  --mid:        #333;
  --light-gray: #f4f4f4;
  --border:     #e0e0e0;
  --text:       #222;
  --muted:      #666;
  --white:      #fff;
  --red:        #e01e37;
  --tag-bg:     #fce4f0;
  --tag-border: #f0b6d8;
  --radius:     4px;
  --shadow:     0 2px 8px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hind', 'Noto Sans Devanagari', sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
a:hover { color: var(--pink); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 16px; }

/* ── SCREEN READER ── */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}

/* =============================================================
   BREAKING NEWS TICKER
============================================================= */
.ticker-bar {
  background: var(--pink);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  height: 34px;
}
.ticker-label {
  background: var(--pink-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 0 14px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: .5px;
  flex-shrink: 0;
  gap: 6px;
}
.ticker-label .live-badge {
  background: #fff;
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 2px;
}
.ticker-wrap {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
}
.ticker-track a {
  font-size: 12.5px;
  font-weight: 500;
  margin-right: 52px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ticker-track a::before {
  content: "◆";
  font-size: 8px;
  opacity: .7;
}
.ticker-track a:hover { opacity: .85; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

/* =============================================================
   TOP SITE-NETWORK NAV
============================================================= */
.site-nav {
  background: var(--dark);
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 42px;
}
.site-nav .nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
}
.site-nav .nav-links a {
  color: #bbb;
  font-size: 12px;
  font-weight: 500;
  padding: 0 13px;
  height: 42px;
  display: flex;
  align-items: center;
  border-right: 1px solid #2e2e2e;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.site-nav .nav-links a:hover { color: #fff; background: #2a2a2a; }
.site-nav .nav-links a.current { color: #fff; background: var(--pink); }
.site-nav .nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.site-nav .nav-right a { color: #bbb; font-size: 11.5px; padding: 0 8px; }
.site-nav .nav-right a:hover { color: #fff; }
.site-nav .login-btn {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 5px 14px !important;
  border-radius: 3px;
  font-size: 12px !important;
}

/* =============================================================
   MAIN HEADER
============================================================= */
.main-header {
  background: #fff;
  border-bottom: 2px solid var(--pink);
  padding: 0 16px;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.site-logo img    { height: 40px; width: auto; }
.site-logo-text   { font-size: 28px; font-weight: 900; color: var(--pink); letter-spacing: -1px; font-family: 'Noto Sans Devanagari', sans-serif; }

.header-search {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 22px;
  overflow: hidden;
  height: 38px;
  flex: 0 0 240px;
  transition: border-color .2s;
}
.header-search:focus-within { border-color: var(--pink); }
.header-search input {
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 13px;
  width: 100%;
  background: transparent;
}
.header-search button {
  background: var(--pink);
  border: none;
  color: #fff;
  padding: 0 14px;
  height: 100%;
  cursor: pointer;
  font-size: 15px;
  flex-shrink: 0;
  transition: opacity .2s;
}
.header-search button:hover { opacity: .85; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.app-badge {
  background: var(--dark);
  color: #fff;
  font-size: 11.5px;
  padding: 7px 13px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s;
}
.app-badge:hover { background: #000; color: #fff; }
.app-badge svg   { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }

/* =============================================================
   PRIMARY NAVIGATION MENU
============================================================= */
.primary-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.primary-nav .menu-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.primary-nav .menu-inner::-webkit-scrollbar { display: none; }

/* WP nav menu items */
.primary-nav .menu-inner ul { display: flex; align-items: center; }
.primary-nav .menu-inner ul li { list-style: none; }
.primary-nav .menu-inner ul li a {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mid);
  padding: 13px 16px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.primary-nav .menu-inner ul li a:hover,
.primary-nav .menu-inner ul li.current-menu-item > a,
.primary-nav .menu-inner ul li.current-menu-ancestor > a {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* =============================================================
   MOBILE HEADER
============================================================= */
.mob-header {
  display: none;
  background: #fff;
  border-bottom: 2px solid var(--pink);
  padding: 0 14px;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 250;
}
.mob-logo { font-size: 22px; font-weight: 900; color: var(--pink); font-family: 'Noto Sans Devanagari', sans-serif; }
.mob-logo a { color: inherit; }
.mob-icons { display: flex; gap: 14px; align-items: center; }
.mob-icons a { color: var(--mid); font-size: 20px; }
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 2px;
}
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--mid); border-radius: 2px; transition: all .3s; }

/* Mobile Slide Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 300;
}
.mobile-menu-overlay.open { display: block; }
.mobile-slide-menu {
  position: fixed;
  top: 0; left: -280px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 350;
  overflow-y: auto;
  transition: left .3s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.mobile-slide-menu.open { left: 0; }
.mobile-slide-menu .msm-head {
  background: var(--dark);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-slide-menu .msm-head span { font-size: 18px; font-weight: 900; color: var(--pink); font-family: 'Noto Sans Devanagari', sans-serif; }
.mobile-slide-menu .msm-close { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
.mobile-slide-menu ul { padding: 8px 0; }
.mobile-slide-menu ul li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.mobile-slide-menu ul li a:hover { background: var(--tag-bg); color: var(--pink); }

/* =============================================================
   PAGE LAYOUT
============================================================= */
.page-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 22px 0 48px;
}
.page-body.full-width { grid-template-columns: 1fr; }

/* =============================================================
   SECTION HEADING
============================================================= */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2.5px solid var(--pink);
  margin-bottom: 16px;
  padding-bottom: 9px;
}
.sec-head h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.sec-head .view-all {
  font-size: 12px;
  color: var(--pink);
  font-weight: 600;
  white-space: nowrap;
}
.sec-head .view-all:hover { text-decoration: underline; }

/* =============================================================
   HERO GRID (Homepage)
============================================================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-main  { grid-column: 1; grid-row: 1 / 3; }
.hero-sub   { grid-column: 2; grid-row: 1; }
.hero-sub2  { grid-column: 2; grid-row: 2; }

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.hero-card:hover img { transform: scale(1.03); }
.hero-main .hero-card img  { min-height: 340px; }
.hero-sub  .hero-card img,
.hero-sub2 .hero-card img  { min-height: 162px; }

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,.88) 100%);
  padding: 28px 14px 14px;
}
.hero-overlay .cat {
  background: var(--pink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.hero-overlay h2 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.hero-sub  .hero-overlay h2,
.hero-sub2 .hero-overlay h2 { font-size: 13.5px; }

/* =============================================================
   TRENDING TAGS
============================================================= */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.tag-pill {
  background: var(--tag-bg);
  color: var(--pink);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid var(--tag-border);
  transition: background .2s, color .2s;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.tag-pill:hover { background: var(--pink); color: #fff; border-color: var(--pink); }

/* =============================================================
   NEWS LIST (Compact)
============================================================= */
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.news-item:last-child { border-bottom: none; }
.news-item .ni-img {
  width: 100px;
  height: 72px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.news-item-body { flex: 1; min-width: 0; }
.news-item-body .cat {
  font-size: 10.5px;
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 4px;
  display: block;
}
.news-item-body h4 {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--dark);
  font-family: 'Noto Sans Devanagari', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item-body h4:hover { color: var(--pink); }
.news-item-body .meta { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* =============================================================
   CARD GRID
============================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow .25s;
}
.news-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.1); }
.news-card .card-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  transition: transform .3s;
}
.news-card:hover .card-img { transform: scale(1.03); }
.news-card .card-body { padding: 11px; }
.news-card .card-body .cat {
  font-size: 10.5px;
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.news-card .card-body h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark);
  font-family: 'Noto Sans Devanagari', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .card-body h4:hover { color: var(--pink); }
.news-card .card-body .meta { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* =============================================================
   VIDEO SECTION
============================================================= */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.video-card { border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 1px solid var(--border); }
.video-card .video-thumb-wrap { position: relative; }
.video-card .video-thumb-wrap img { width: 100%; height: 154px; object-fit: cover; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(217,54,139,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}
.play-btn:hover { background: var(--pink); transform: translate(-50%,-50%) scale(1.1); }
.play-btn::after {
  content: '';
  border-left: 15px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.video-card .vc-body { padding: 9px; }
.video-card .vc-body .cat { font-size: 10px; color: var(--pink); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; display: block; }
.video-card .vc-body h4 { font-size: 12.5px; font-weight: 600; line-height: 1.45; color: var(--dark); font-family: 'Noto Sans Devanagari', sans-serif; }
.video-card .vc-body h4:hover { color: var(--pink); }

/* =============================================================
   BIG NEWS LIST (2-col)
============================================================= */
.big-news-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.big-news-item { display: flex; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.big-news-item img { width: 120px; height: 82px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.big-news-item .cat { font-size: 10.5px; color: var(--pink); font-weight: 700; margin-bottom: 4px; display: block; }
.big-news-item h4 { font-size: 13.5px; font-weight: 600; line-height: 1.5; font-family: 'Noto Sans Devanagari', sans-serif; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.big-news-item h4:hover { color: var(--pink); }
.big-news-item .meta { font-size: 11px; color: var(--muted); margin-top: 4px; }

.section-block { margin-bottom: 30px; }

/* =============================================================
   AD BOX PLACEHOLDERS
============================================================= */
.ad-box {
  background: #f9f9f9;
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 11px;
  border-radius: 3px;
  margin-bottom: 18px;
  text-align: center;
  min-height: 90px;
}
.ad-box-300x250 { height: 250px; }
.ad-box-728x90  { height: 90px; }
.ad-box-320x100 { height: 100px; }

/* =============================================================
   SIDEBAR
============================================================= */
.sidebar .sidebar-block { margin-bottom: 24px; }
.sidebar-news-item {
  display: flex;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-item img { width: 80px; height: 58px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.sidebar-news-item .cat { font-size: 10px; color: var(--pink); font-weight: 700; margin-bottom: 3px; display: block; }
.sidebar-news-item h5 { font-size: 12.5px; font-weight: 600; line-height: 1.45; color: var(--dark); font-family: 'Noto Sans Devanagari', sans-serif; }
.sidebar-news-item h5:hover { color: var(--pink); }
.sidebar-news-item .meta { font-size: 10.5px; color: var(--muted); margin-top: 3px; }

/* Trending numbered list */
.trending-list li { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.trending-list li:last-child { border-bottom: none; }
.trending-num { font-size: 19px; font-weight: 800; color: var(--pink); line-height: 1; min-width: 26px; }
.trending-list h5 { font-size: 12.5px; font-weight: 600; line-height: 1.45; color: var(--dark); font-family: 'Noto Sans Devanagari', sans-serif; }
.trending-list h5:hover { color: var(--pink); }

/* Newsletter box */
.newsletter-box {
  background: linear-gradient(135deg, #fce4f0, #fdf0f8);
  border: 1px solid var(--tag-border);
  border-radius: 6px;
  padding: 18px;
  text-align: center;
  margin-bottom: 22px;
}
.newsletter-box h4 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 5px; font-family: 'Noto Sans Devanagari', sans-serif; }
.newsletter-box p  { font-size: 12px; color: var(--muted); margin-bottom: 13px; }
.newsletter-form { display: flex; flex-direction: column; gap: 6px; }
.newsletter-form input {
  border: 1px solid #ddd;
  padding: 9px 12px;
  border-radius: 3px;
  font-size: 12.5px;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--pink); }
.newsletter-form button {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 9px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
}
.newsletter-form button:hover { opacity: .88; }

/* =============================================================
   CATEGORY PAGE — BANNER
============================================================= */
.cat-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2d0a1e 100%);
  padding: 26px 0;
  border-bottom: 4px solid var(--pink);
}
.cat-banner .cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}
.cat-banner .cat-breadcrumb a { color: var(--pink); }
.cat-banner h1 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  font-family: 'Noto Sans Devanagari', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-banner p { font-size: 13px; color: #999; margin-top: 7px; font-family: 'Noto Sans Devanagari', sans-serif; }
.cat-stats { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.cat-stats span { font-size: 12px; color: #aaa; background: rgba(255,255,255,.08); padding: 4px 12px; border-radius: 12px; }

/* Sub-tabs */
.sub-tabs {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-tabs::-webkit-scrollbar { display: none; }
.sub-tabs-inner { max-width: 1240px; margin: 0 auto; padding: 0 16px; display: flex; }
.sub-tabs a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 16px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  font-family: 'Noto Sans Devanagari', sans-serif;
  display: block;
}
.sub-tabs a:hover, .sub-tabs a.current { color: var(--pink); border-bottom-color: var(--pink); }

/* Top story (featured) */
.top-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}
.top-story .ts-img { position: relative; }
.top-story .ts-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.top-story .ts-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 2px;
}
.top-story .ts-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-story .ts-body .cat { font-size: 11px; color: var(--pink); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; display: block; }
.top-story .ts-body h2 { font-size: 20px; font-weight: 800; line-height: 1.45; color: var(--dark); margin-bottom: 10px; font-family: 'Noto Sans Devanagari', sans-serif; }
.top-story .ts-body h2:hover { color: var(--pink); }
.top-story .ts-body p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; font-family: 'Noto Sans Devanagari', sans-serif; }
.top-story .ts-body .meta { font-size: 11.5px; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; }
.top-story .ts-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 3px;
  margin-top: 16px;
  width: fit-content;
  transition: opacity .2s;
}
.top-story .ts-body .read-more:hover { opacity: .87; color: #fff; }

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.filter-btn {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--mid);
  font-size: 12px;
  padding: 5px 13px;
  border-radius: 16px;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.filter-btn.active, .filter-btn:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.sort-select {
  border: 1.5px solid var(--border);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--mid);
  cursor: pointer;
  outline: none;
}
.view-toggle { display: flex; gap: 4px; }
.vt-btn {
  background: var(--light-gray);
  border: none;
  padding: 5px 9px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 15px;
  transition: background .2s;
  line-height: 1;
}
.vt-btn.active { background: var(--pink); color: #fff; }

/* Article grid (category) */
.article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.ag-card {
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.ag-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.1); }
.ag-card > a > img, .ag-card img { width: 100%; height: 172px; object-fit: cover; }
.ag-card .ag-body { padding: 12px; }
.ag-card .ag-body .cat { font-size: 10.5px; color: var(--pink); font-weight: 700; text-transform: uppercase; margin-bottom: 6px; display: block; }
.ag-card .ag-body h3 { font-size: 14.5px; font-weight: 700; line-height: 1.5; color: var(--dark); margin-bottom: 8px; font-family: 'Noto Sans Devanagari', sans-serif; }
.ag-card .ag-body h3:hover { color: var(--pink); }
.ag-card .ag-body p  { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-family: 'Noto Sans Devanagari', sans-serif; }
.ag-card .ag-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding: 8px 12px; }
.ag-card .ag-footer .meta { font-size: 11px; color: var(--muted); }
.ag-card .ag-footer .share-mini { display: flex; gap: 8px; }
.ag-card .ag-footer .share-mini a { font-size: 14px; color: var(--muted); transition: color .2s; }
.ag-card .ag-footer .share-mini a:hover { color: var(--pink); }

/* List view */
.article-list-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.article-list-item img { width: 140px; height: 96px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.ali-body { flex: 1; min-width: 0; }
.ali-body .cat { font-size: 10.5px; color: var(--pink); font-weight: 700; text-transform: uppercase; margin-bottom: 5px; display: block; }
.ali-body h3 { font-size: 15px; font-weight: 700; line-height: 1.5; color: var(--dark); margin-bottom: 6px; font-family: 'Noto Sans Devanagari', sans-serif; }
.ali-body h3:hover { color: var(--pink); }
.ali-body p  { font-size: 12.5px; color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-family: 'Noto Sans Devanagari', sans-serif; }
.ali-footer { display: flex; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.ali-footer .meta, .ali-footer .views, .ali-footer .comments { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 3px; }

/* Load More */
.load-more-wrap { text-align: center; padding: 8px 0 24px; }
.load-more-btn {
  background: #fff;
  border: 2px solid var(--pink);
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 40px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.load-more-btn:hover { background: var(--pink); color: #fff; }
.load-more-btn.loading { opacity: .6; pointer-events: none; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 0 28px; flex-wrap: wrap; }
.pagination .page-numbers {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  transition: all .2s;
}
.pagination .page-numbers:hover { border-color: var(--pink); color: var(--pink); }
.pagination .page-numbers.current { background: var(--pink); border-color: var(--pink); color: #fff; }
.pagination .page-numbers.dots { border: none; color: var(--muted); }
.pagination .prev, .pagination .next { width: auto; padding: 0 14px; font-size: 12.5px; }

/* =============================================================
   SINGLE ARTICLE PAGE
============================================================= */
.read-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--pink);
  z-index: 9999;
  transition: width .1s linear;
  width: 0%;
}

.article-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); margin-bottom: 16px; flex-wrap: wrap; }
.article-breadcrumb a { color: var(--pink); }
.article-breadcrumb span { color: #ccc; }

.article-cat-badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.article-title {
  font-family: 'Noto Serif Devanagari', 'Noto Sans Devanagari', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 14px;
}

.article-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  line-height: 1.72;
  margin-bottom: 16px;
  border-left: 3px solid var(--pink);
  padding-left: 14px;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.author-wrap { display: flex; align-items: center; gap: 8px; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
  flex-shrink: 0;
}
.author-avatar-placeholder {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info .name  { font-size: 13px; font-weight: 600; color: var(--dark); }
.author-info .role  { font-size: 11px; color: var(--muted); }
.meta-sep   { color: #ddd; }
.meta-date  { font-size: 12px; color: var(--muted); }
.meta-read  { font-size: 12px; color: var(--muted); background: var(--light-gray); padding: 3px 9px; border-radius: 10px; }

/* Share bar */
.share-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.share-label { font-size: 12px; font-weight: 600; color: var(--muted); }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}
.share-btn:hover { opacity: .85; }
.share-fb  { background: #1877f2; color: #fff; }
.share-tw  { background: #000;    color: #fff; }
.share-wa  { background: #25d366; color: #fff; }
.share-tg  { background: #0088cc; color: #fff; }
.share-copy{ background: var(--light-gray); color: var(--mid); border: 1px solid var(--border); }
.share-count { margin-left: auto; font-size: 12px; color: var(--muted); }

/* Article hero image */
.article-hero { margin-bottom: 22px; border-radius: 4px; overflow: hidden; }
.article-hero img { width: 100%; max-height: 460px; object-fit: cover; }
.img-caption { font-size: 11.5px; color: var(--muted); padding: 8px 4px 0; text-align: center; font-style: italic; }

/* Article body */
.article-body {
  font-family: 'Noto Serif Devanagari', 'Noto Sans Devanagari', serif;
  font-size: 16px;
  line-height: 1.9;
  color: #2a2a2a;
}
.article-body p  { margin-bottom: 22px; }
.article-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 12px;
  color: var(--dark);
  border-left: 4px solid var(--pink);
  padding-left: 13px;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--dark);
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.article-body blockquote {
  border-left: 4px solid var(--pink);
  padding: 14px 18px;
  background: #fdf0f8;
  margin: 26px 0;
  border-radius: 0 4px 4px 0;
  font-size: 15.5px;
  color: #333;
  font-style: italic;
}
.article-body ul, .article-body ol { margin: 0 0 22px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--pink); text-decoration: underline; }
.article-body img { border-radius: 4px; margin: 16px 0; }

.highlight-box {
  background: #fff8f0;
  border: 1px solid #ffd9a0;
  border-radius: 6px;
  padding: 16px 18px;
  margin: 24px 0;
}
.highlight-box strong {
  color: #c67600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: block;
  margin-bottom: 6px;
}

.in-article-ad { height: 90px; margin: 26px 0; }

/* Article tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.article-tags .label { font-size: 12px; font-weight: 600; color: var(--muted); align-self: center; }

/* Bottom share */
.bottom-share {
  background: var(--light-gray);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 28px;
  text-align: center;
}
.bottom-share p { font-size: 13px; font-weight: 600; margin-bottom: 10px; color: var(--mid); }
.bottom-share .btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* Author bio */
.author-bio {
  display: flex;
  gap: 14px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 28px;
}
.author-bio .av {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-bio .av img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.author-bio-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.author-bio-info p  { font-size: 12.5px; color: var(--muted); line-height: 1.65; }

/* Related news */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.related-card { display: flex; gap: 10px; }
.related-card img { width: 90px; height: 66px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.related-card .cat { font-size: 10px; color: var(--pink); font-weight: 700; margin-bottom: 3px; display: block; }
.related-card h5 { font-size: 13px; font-weight: 600; line-height: 1.45; color: var(--dark); font-family: 'Noto Sans Devanagari', sans-serif; }
.related-card h5:hover { color: var(--pink); }
.related-card .meta { font-size: 10.5px; color: var(--muted); margin-top: 4px; }

/* Comments */
.comments-box {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 28px;
}
.comments-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; font-family: 'Noto Sans Devanagari', sans-serif; }
.comment-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: border-color .2s;
}
.comment-input:focus { border-color: var(--pink); }
.comment-submit {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 9px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  font-family: inherit;
  transition: opacity .2s;
}
.comment-submit:hover { opacity: .87; }

/* WP default comments */
#comments { margin-bottom: 28px; }
.comment-list { list-style: none; }
.comment-list .comment { border-bottom: 1px solid var(--border); padding: 14px 0; }
.comment-list .comment .comment-author { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.comment-list .comment .comment-meta  { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.comment-list .comment .comment-body p { font-size: 14px; line-height: 1.65; }

/* =============================================================
   FOOTER
============================================================= */
.site-footer { background: var(--dark); color: #ccc; padding: 36px 0 0; }
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  border-bottom: 1px solid #2e2e2e;
}
.footer-brand .site-logo-text { font-size: 28px; margin-bottom: 10px; display: block; color: var(--pink); }
.footer-brand p { font-size: 12.5px; line-height: 1.75; color: #999; margin-bottom: 14px; font-family: 'Noto Sans Devanagari', sans-serif; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e2e2e;
  color: #ccc;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--pink); color: #fff; }

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pink);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 12.5px; color: #999; transition: color .2s; font-family: 'Noto Sans Devanagari', sans-serif; }
.footer-col ul li a:hover { color: var(--pink); }

.footer-bottom {
  background: #111;
  padding: 14px 16px;
  text-align: center;
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--pink); }

/* =============================================================
   MOBILE BOTTOM NAV
============================================================= */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 200;
  padding: 4px 0;
}
.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
  gap: 3px;
  padding: 4px 0;
}
.mobile-bottom-nav a .ico { font-size: 20px; line-height: 1; }
.mobile-bottom-nav a.active, .mobile-bottom-nav a:hover { color: var(--pink); }

/* =============================================================
   RESPONSIVE BREAKPOINTS
============================================================= */
@media (max-width: 1024px) {
  .page-body { grid-template-columns: 1fr 260px; gap: 20px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-col:last-child { display: none; }
  .top-story { grid-template-columns: 1fr; }
  .top-story .ts-img img { min-height: 220px; }
}

@media (max-width: 768px) {
  /* Hide desktop header bits */
  .main-header, .site-nav, .ticker-bar { display: none !important; }
  .mob-header { display: flex !important; }
  .primary-nav { display: none; }

  /* Layout */
  .page-body { grid-template-columns: 1fr; }
  .sidebar    { display: none; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 58px; }

  /* Hero */
  .hero-grid  { grid-template-columns: 1fr; }
  .hero-main  { grid-column: 1; grid-row: auto; }
  .hero-sub, .hero-sub2 { display: none; }
  .hero-main .hero-card img { min-height: 220px; }
  .hero-overlay h2 { font-size: 15px; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .news-card .card-img { height: 120px; }
  .video-grid { grid-template-columns: 1fr; }
  .big-news-list { grid-template-columns: 1fr; }
  .article-grid  { grid-template-columns: 1fr; }
  .related-grid  { grid-template-columns: 1fr; }

  /* Category */
  .cat-banner h1 { font-size: 22px; }

  /* Article */
  .article-title { font-size: 20px; }
  .share-count   { display: none; }
  .article-body  { font-size: 15px; }
  .top-story     { grid-template-columns: 1fr; }
  .top-story .ts-body h2 { font-size: 16px; }
  .top-story .ts-body { padding: 14px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(4) { display: none; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .article-title { font-size: 18px; }
  .article-body  { font-size: 14.5px; }
  .share-btn span { display: none; }
  .share-btn { padding: 7px 10px; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   WORDPRESS DEFAULT CLASSES
============================================================= */
.alignleft  { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter{ display: block; margin: 16px auto; text-align: center; }
.alignwide  { max-width: 100%; }
.alignfull  { max-width: 100vw; margin-left: calc(-50vw + 50%); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--muted); text-align: center; padding: 4px 0; }
.sticky { border-left: 4px solid var(--pink); padding-left: 12px; }
.bypostauthor { }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 16px 0; }
.gallery-item img { width: 100%; border-radius: 3px; }
.wp-block-image img { border-radius: 4px; }
