/*
Theme Name: BusinessMunch
Theme URI: https://businessmunch.in
Author: BusinessMunch Media
Description: BusinessMunch – India's Business Intelligence. Pixel-perfect WordPress conversion.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: businessmunch
Tags: news, business, finance, magazine, custom-logo, featured-images
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0e1f3d;
  --navy-mid: #162847;
  --navy-light: #1e3560;
  --red: #d42b2b;
  --red-dark: #b32020;
  --red-soft: #fdf2f2;
  --red-glow: rgba(212,43,43,0.18);
  --gold: #c9922a;
  --gold-light: #f9f0e0;
  --white: #ffffff;
  --off-white: #f4f5f8;
  --surface: #ffffff;
  --border: #e4e6ed;
  --border-dark: #ced1db;
  --text: #0b1220;
  --text-mid: #3a4156;
  --text-light: #616574;
  --green: #1a7a3c;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-serif: 'DM Serif Text', 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Serif Text', 'DM Serif Display', Georgia, serif;
  --font-ui: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1100px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.07);
  --shadow-red: 0 4px 16px rgba(212,43,43,0.35);
  --shadow-navy: 0 4px 16px rgba(14,31,61,0.25);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-serif); background: var(--off-white); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; letter-spacing: 0.01em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }


/* ====== HEADER ====== */
/* ══════════════════════════════════════════════
   HEADER — Full Responsive (Desktop/Tablet/Mobile)
   ══════════════════════════════════════════════ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  border-top: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  width: 100%;
}

/* ── Header Top Row ── */
.header-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
  max-width: 60%;
}

/* WordPress custom logo image */
.logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Text logo fallback */
.logo-text-wrap { display: flex; flex-direction: column; min-width: 0; }

.logo-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-name em {
  color: var(--red);
  font-style: normal;
}
.logo-tagline {
  font-size: 9px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: var(--font-ui);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Header Actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Search button */
.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}
.header-search-btn:hover {
  background: var(--off-white);
  border-color: var(--border-dark);
  color: var(--text);
}

/* ── Hamburger ── */
.mob-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
  padding: 0;
}
.mob-hamburger:hover { background: var(--off-white); border-color: var(--border-dark); }
.mob-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Search Bar (slide down) ── */
.header-search-bar {
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease, border-color .2s;
  border-top: 0px solid var(--border);
  background: var(--white);
}
.header-search-bar.open {
  max-height: 64px;
  border-top: 1px solid var(--border);
}
.header-search-form {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-search-form svg { color: var(--text-light); flex-shrink: 0; }
.header-search-form input[type=search] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font-ui);
  color: var(--text);
  background: transparent;
  padding: 4px 0;
}
.header-search-form input[type=search]::placeholder { color: var(--text-light); }
.header-search-close {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color .2s;
}
.header-search-close:hover { color: var(--text); }

/* ── OC Logo Image ── */
.oc-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* ====== NAV ====== */
.nav {
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
}
.nav-links {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 11px 14px;
  white-space: nowrap;
  display: block;
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  position: relative;
  font-family: var(--font-ui);
}
.nav-links a:hover { color: var(--navy); border-bottom-color: rgba(14,31,61,0.2); }
.nav-links a.active { color: var(--red); border-bottom-color: var(--red); font-weight: 700; }
.nav-premium {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-light);
  border: 1px solid #dfc98a;
  border-radius: 6px;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  padding: 6px 14px;
  font-family: var(--font-ui);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 1px 4px rgba(201,146,42,0.15);
}
.nav-premium:hover { background: #f3e2b0; box-shadow: 0 3px 10px rgba(201,146,42,0.28); }
.nav-premium::before { content: '★'; font-size: 9px; }

/* ====== MAIN ====== */
.main-wrap { max-width: var(--max); margin: 0 auto; padding: 24px 24px; }

/* ====== MARKETS BAR ====== */

@keyframes pulse-green {
  0%,100% { opacity:1; box-shadow: 0 0 8px rgba(34,197,94,0.9); }
  50% { opacity:0.5; box-shadow: 0 0 3px rgba(34,197,94,0.3); }
}


.up { color: #22c55e; }
.down { color: #f87171; }


/* ====== HOME GRID ====== */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 310px 290px;
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}

/* ── Sidebar Column — flex layout with spacing between ad + widgets ── */
.sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-col .ad-sidebar-250 {
  margin-bottom: 0;   /* gap handled by flex gap */
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
}
.sidebar-col .ad-sidebar-600-wrap {
  margin-bottom: 0;
  text-align: center;
}
.sidebar-col .sidebar-widget {
  margin-bottom: 0;   /* gap handled by flex gap */
}

/* ====== FEATURED ====== */
.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin-top: 0;
  margin-bottom: 16px;
  border-radius: 4px;
  height: 26px;
  box-sizing: border-box;
  line-height: 1;
  font-family: var(--font-ui);
  box-shadow: var(--shadow-red);
}
.featured-label::before { content: '●'; font-size: 7px; animation: blink 1.4s infinite; }
.featured-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #0e1f3d 0%, #162847 40%, #0a1830 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}
.featured-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(80,120,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,43,43,0.08) 0%, transparent 50%);
}
.featured-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.featured-img-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
}
.featured-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.26;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color .25s;
  letter-spacing: -0.5px;
}
.featured-title:hover { color: var(--red); }
.featured-excerpt {
  font-size: 15px;
  font-family: var(--font-serif);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 400;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-light);
}
.featured-meta .author {
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.author-dot {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 700;
}
.featured-meta .sep { color: var(--border-dark); }
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: white;
  border-radius: 6px;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-ui);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
  margin-top: 8px;
  box-shadow: var(--shadow-navy);
}
.read-more-btn:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,31,61,0.35); }
.read-more-btn::after { content: '→'; }

/* ====== TRENDING COL ====== */
.col-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 8px;
  margin-top: 0;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 26px;
  box-sizing: content-box;
  font-family: var(--font-ui);
}
.col-label::before { content: ''; display: block; width: 3px; height: 14px; background: var(--red); border-radius: 2px; }
.trend-item {
  display: flex;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity .2s;
  align-items: flex-start;
}
.trend-item:last-child { border-bottom: none; }
.trend-item:hover { opacity: 0.75; }
.trend-img {
  width: 78px; height: 60px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.trend-img.img-1 { background: linear-gradient(135deg, #0e2244, #1e4080); }
.trend-img.img-2 { background: linear-gradient(135deg, #1a4a1a, #2e7e2e); }
.trend-img.img-3 { background: linear-gradient(135deg, #4a0e0e, #882020); }
.trend-img.img-4 { background: linear-gradient(135deg, #2a0e4a, #5020aa); }
.trend-img-emoji {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: rgba(255,255,255,0.4);
}
.trend-num {
  position: absolute;
  top: 3px; left: 4px;
  font-size: 9px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
}
.trend-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.42;
  color: #111827;
  margin-bottom: 5px;
  transition: color .2s;
}
.trend-item:hover .trend-title { color: var(--red); }
.trend-meta { font-size: 10.5px; color: var(--text-mid); font-weight: 600; display: flex; gap: 6px; align-items: center; }
.trend-cat { color: var(--red); font-weight: 700; text-transform: uppercase; font-size: 9px; letter-spacing: 1px; font-family: var(--font-ui); }


/* ====== SECTION DIVIDER ====== */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  margin-top: 4px;
}
.section-divider-title {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-divider-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 16px;
  background: var(--red);
  border-radius: 2px;
}
.section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}
.section-divider-more {
  font-size: 10.5px;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  border: 1.5px solid var(--border-dark);
  border-radius: 20px;
  transition: all .2s;
  letter-spacing: 0.3px;
  font-family: var(--font-ui);
}
.section-divider-more:hover { background: var(--navy); color: white; border-color: var(--navy); box-shadow: var(--shadow-navy); }

/* ====== NEWS GRID 4-COL ====== */
.news-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display: block;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.news-card-img {
  width: 100%;
  height: 185px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .4s ease;
}
/* Show actual <img> tags properly */
.news-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block !important;
  transition: transform .4s ease;
}
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card:hover .news-card-img img { transform: scale(1.04); }
/* Gradient overlay on image */
.news-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.22) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
/* Fallback color backgrounds (when no image) */
.news-card-img.ci-1 { background-color: #0e2a4a; background-image: linear-gradient(135deg, #0e2a4a, #1c4d8a); }
.news-card-img.ci-2 { background-color: #0e4a1e; background-image: linear-gradient(135deg, #0e4a1e, #1c8a38); }
.news-card-img.ci-3 { background-color: #4a0e0e; background-image: linear-gradient(135deg, #4a0e0e, #8a1c1c); }
.news-card-img.ci-4 { background-color: #2a0e4a; background-image: linear-gradient(135deg, #2a0e4a, #501c8a); }
.news-card-img.ci-5 { background-color: #4a2a0e; background-image: linear-gradient(135deg, #4a2a0e, #8a501c); }
.news-card-img.ci-6 { background-color: #0e4a4a; background-image: linear-gradient(135deg, #0e4a4a, #1c8a8a); }
.news-card-img.ci-7 { background-color: #1e0e4a; background-image: linear-gradient(135deg, #1e0e4a, #3a1c8a); }
.news-card-img.ci-8 { background-color: #4a0e2a; background-image: linear-gradient(135deg, #4a0e2a, #8a1c55); }
.news-card-body { padding: 14px 16px 16px; }
.nc-cat {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--red);
  margin-bottom: 7px;
  font-family: var(--font-ui);
}
.nc-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 10px;
  transition: color .2s;
}
.news-card:hover .nc-title { color: var(--red); }
.nc-meta {
  font-size: 10px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
}
.nc-meta::before { content: ''; display: block; width: 14px; height: 1px; background: var(--border-dark); }

/* ====== MID GRID ====== */
.mid-grid {
  display: grid;
  grid-template-columns: 1fr 295px;
  gap: 24px;
  margin-bottom: 32px;
}
.latest-list {}
.latest-item {
  display: flex;
  gap: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  align-items: stretch;
  transition: opacity .2s;
}
.latest-item:first-child { padding-top: 12px; }
.latest-item:last-child { border-bottom: none; }
.latest-item:hover { opacity: 0.75; }

/* ====== SIDEBAR WIDGETS ====== */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ── Sidebar Ad Slot Spacing Fix ── */
.ad-sidebar-250 {
  margin-bottom: 20px;
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ad-sidebar-600-wrap {
  margin-bottom: 20px;
  text-align: center;
}
.sw-header {
  padding: 11px 16px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--navy);
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--red);
  font-family: var(--font-ui);
}
.sw-item {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sw-item:last-child { border-bottom: none; }
.sw-item:hover { background: var(--off-white); }
.sw-num {
  font-size: 22px;
  font-weight: 900;
  color: #dce2f0;
  min-width: 24px;
  line-height: 1;
  font-family: var(--font-display);
}
.sw-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.44;
  color: var(--text);
  font-family: var(--font-display);
  transition: color .2s;
}
.sw-item:hover .sw-title { color: var(--red); }
.sw-meta { font-size: 10.5px; color: var(--text-light); margin-top: 3px; }

/* Press Release clean list layout */
.sw-item-pr {
  display: flex;
  align-items: stretch;
  padding: 0;
  gap: 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
}
.sw-item-pr:last-child { border-bottom: none; }
.sw-item-pr:hover { background: var(--off-white); }
.sw-item-pr .sw-item-pr-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 11px 16px;
}
.sw-item-pr .sw-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  font-family: var(--font-display);
  transition: color .2s;
}
.sw-item-pr:hover .sw-title { color: var(--red); }
.sw-item-pr .sw-meta {
  font-size: 10.5px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.pr-domain {
  color: var(--navy);
  font-weight: 700;
  font-size: 10.5px;
}
/* When domain is present, add separator before date */
.pr-domain:not(:empty) + .pr-date::before { content: ' · '; }
.pr-date {
  color: var(--text-light);
  font-size: 10px;
}
.pr-date::after { content: ' · '; }
.pr-read {
  color: var(--text-light);
  font-size: 10px;
}

/* ====== NEWSLETTER STRIP ====== */
/* ══════════════════════════════════════════════════════════════════
   COMMUNITY STRIP — Newsletter + WhatsApp + Telegram  (v2 Pro)
   ══════════════════════════════════════════════════════════════════ */

/* ═══ RED DIVIDER LINE ═══ */
.red-divider-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e63946 20%, #e63946 80%, transparent);
}

.community-strip {
  background: linear-gradient(118deg, #060d1f 0%, #0c1e3d 40%, #0e2347 70%, #091530 100%);
  border-radius: 20px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.6fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 28px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6,13,31,.55), 0 4px 16px rgba(6,13,31,.3);
  border: 1px solid rgba(255,255,255,0.07);
}

/* Decorative gradient bar on top */
.community-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 20%, transparent 40%, #25D366 60%, transparent 75%, #00b4d8 90%);
  z-index: 2;
}

/* Glow orbs */
.cs-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.cs-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,.09) 0%, transparent 65%);
  top: -160px; left: -80px;
}
.cs-orb-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(37,211,102,.07) 0%, transparent 65%);
  bottom: -100px; right: 35%;
}
.cs-orb-3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0,180,216,.08) 0%, transparent 65%);
  top: -80px; right: 2%;
}

/* Vertical divider */
.cs-vdivider {
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,.10) 20%,
    rgba(255,255,255,.10) 80%,
    transparent 100%);
  align-self: stretch;
  margin: 0;
  flex-shrink: 0;
}

/* ── Newsletter Section ── */
.cs-newsletter {
  padding: 32px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(192,57,43,.9);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 13px;
  font-family: var(--font-ui);
  width: fit-content;
  box-shadow: 0 3px 12px rgba(192,57,43,.35);
}
.cs-badge-dot {
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.cs-title {
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.8px;
}
.cs-sub {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
}
.cs-email-row {
  display: flex;
  gap: 0;
  align-items: center;
  margin-bottom: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  overflow: hidden;
  max-width: 380px;
  transition: border-color .2s;
}
.cs-email-row:focus-within {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.09);
}
.cs-email-input {
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  font-family: var(--font-display);
  outline: none;
  flex: 1;
  min-width: 0;
}
.cs-email-input::placeholder { color: rgba(255,255,255,.3); }
.cs-email-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 10.5px;
  font-weight: 800;
  font-family: var(--font-ui);
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.cs-email-btn:hover { background: var(--red-dark); }

.cs-stats-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs-stat {
  font-size: 11.5px;
  color: rgba(255,255,255,.3);
  font-family: var(--font-ui);
}
.cs-stat strong { color: rgba(255,255,255,.7); font-weight: 700; }
.cs-stat-dot { color: rgba(255,255,255,.15); font-size: 10px; }

/* ── Channel Cards ── */
.cs-channel {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  justify-content: center;
}

/* Subtle hover highlight */
.cs-channel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.0);
  transition: background .25s;
  pointer-events: none;
}
.cs-channel:hover::after { background: rgba(255,255,255,.02); }

.cs-channel-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
}
.cs-wa-icon {
  background: linear-gradient(135deg, #128C45, #25D366);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.cs-tg-icon {
  background: linear-gradient(135deg, #006dac, #2aabee);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,136,204,.3);
}

.cs-channel-platform {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: rgba(255,255,255,.3);
  font-family: var(--font-ui);
  margin-bottom: 4px;
}
.cs-channel-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.cs-channel-desc {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cs-channel-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
  font-family: var(--font-ui);
  margin-bottom: 18px;
}
.cs-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25D366;
  animation: blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(37,211,102,.6);
}
.cs-live-tg {
  background: #2aabee;
  box-shadow: 0 0 6px rgba(42,171,238,.6);
}

/* Join buttons */
.cs-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--font-ui);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s, filter .2s;
  letter-spacing: .3px;
}
.cs-wa-btn {
  background: linear-gradient(135deg, #128C45 0%, #25D366 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.cs-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  filter: brightness(1.05);
  color: #fff;
}
.cs-tg-btn {
  background: linear-gradient(135deg, #006dac 0%, #2aabee 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,136,204,.3);
}
.cs-tg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,136,204,.45);
  filter: brightness(1.05);
  color: #fff;
}

/* ── Responsive Tablet ── */
@media (max-width: 1024px) {
  .community-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .cs-newsletter {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 28px 28px 24px;
  }
  .cs-vdivider {
    display: none;
  }
  .cs-channel {
    padding: 24px 28px 28px;
  }
  .cs-email-row { max-width: 100%; }
}

/* ── Responsive Mobile ── */
@media (max-width: 640px) {
  .community-strip {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
  .community-strip::before { height: 2px; }
  .cs-newsletter {
    padding: 22px 20px 20px;
    grid-column: 1;
  }
  .cs-title { font-size: 22px; }
  .cs-sub { font-size: 12px; margin-bottom: 16px; }
  .cs-email-row { max-width: 100%; }
  .cs-email-btn { font-size: 10px; padding: 12px 14px; }
  .cs-channel {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .cs-channel-icon { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 12px; }
  .cs-channel-name { font-size: 16px; }
  .cs-channel-desc { font-size: 12px; }
  .cs-join-btn { width: 100%; padding: 13px; font-size: 13px; }
  .cs-orb { display: none; }
  .cs-vdivider { display: none; }
}
  background: linear-gradient(130deg, #0b1b35 0%, #0f2248 45%, #0d1e40 100%);
  border-radius: 16px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 1.5fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(14,31,61,.35), 0 2px 8px rgba(14,31,61,.2);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Glow orbs */
.cs-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cs-orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  top: -100px; left: -60px;
}
.cs-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,211,102,.08) 0%, transparent 70%);
  bottom: -60px; right: 30%;
}
.cs-orb-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0,136,204,.10) 0%, transparent 70%);
  top: -50px; right: 5%;
}

/* Vertical divider */
.cs-vdivider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12) 30%, rgba(255,255,255,.12) 70%, transparent);
  align-self: stretch;
  margin: 0 28px;
  flex-shrink: 0;
}

/* ── Newsletter Left ── */
.cs-newsletter { position: relative; }

.cs-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,57,43,.85);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-family: var(--font-ui);
}
.cs-badge-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
.cs-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}
.cs-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cs-email-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.cs-email-input {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
  font-family: var(--font-display);
  outline: none;
  width: 200px;
  transition: border-color .2s, background .2s;
}
.cs-email-input::placeholder { color: rgba(255,255,255,.3); }
.cs-email-input:focus {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.13);
}
.cs-email-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-ui);
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(192,57,43,.4);
}
.cs-email-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,.55);
}
.cs-stats-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-stat {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-family: var(--font-ui);
}
.cs-stat strong { color: rgba(255,255,255,.65); font-weight: 700; }
.cs-stat-dot { color: rgba(255,255,255,.2); font-size: 8px; }

/* ── Channel Cards ── */
.cs-channel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
.cs-channel-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.cs-wa-icon {
  background: linear-gradient(135deg, #1DA851, #25D366);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37,211,102,.35);
}
.cs-tg-icon {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,136,204,.35);
}
.cs-channel-info { flex: 1; }
.cs-channel-platform {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.35);
  font-family: var(--font-ui);
  margin-bottom: 3px;
}
.cs-channel-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}
.cs-channel-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  margin-bottom: 8px;
}
.cs-channel-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-family: var(--font-ui);
}
.cs-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25D366;
  animation: blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.cs-live-tg { background: #00b4d8; }

/* Join buttons */
.cs-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-ui);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .3px;
  width: 100%;
  justify-content: center;
}
.cs-wa-btn {
  background: linear-gradient(135deg, #1DA851, #25D366);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.cs-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,.5);
  color: #fff;
}
.cs-tg-btn {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,136,204,.35);
}
.cs-tg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,136,204,.5);
  color: #fff;
}

/* ── Responsive — Tablet ── */
@media (max-width: 1024px) {
  .community-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 24px 28px;
  }
  .cs-vdivider { display: none; }
  .cs-newsletter { grid-column: 1 / -1; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 20px; }
}

/* ── Responsive — Mobile ── */
@media (max-width: 640px) {
  .community-strip {
    grid-template-columns: 1fr;
    padding: 20px 18px;
    gap: 0;
    border-radius: 12px;
  }
  .cs-vdivider { display: none; }
  .cs-newsletter {
    grid-column: 1;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .cs-title { font-size: 20px; }
  .cs-sub { font-size: 12px; }
  .cs-email-row { flex-direction: column; }
  .cs-email-input { width: 100%; }
  .cs-email-btn { width: 100%; padding: 12px; }
  .cs-channel {
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .cs-channel:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .cs-channel-icon { width: 44px; height: 44px; border-radius: 12px; }
  .cs-channel-name { font-size: 15px; }
  .cs-join-btn { font-size: 13px; padding: 12px 20px; }
  .cs-orb { display: none; }
}
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(14,31,61,0.28), 0 2px 8px rgba(14,31,61,0.15);
  min-height: 100px;
  border: 1px solid rgba(255,255,255,0.05);
}
.newsletter-strip::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.newsletter-strip::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
}
.nl-text { flex: 1; position: relative; }
.nl-badge {
  display: inline-block;
  background: rgba(212,43,43,0.9);
  color: white;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-family: var(--font-ui);
}
.nl-heading {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.nl-sub { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 400; }
.nl-form { display: flex; gap: 10px; position: relative; flex-shrink: 0; align-items: center; }
.nl-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  padding: 10px 18px;
  color: white;
  font-size: 13px;
  font-family: var(--font-display);
  outline: none;
  width: 230px;
  transition: border-color .2s;
}
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-input:focus { border-color: rgba(255,255,255,0.4); }
.nl-btn {
  background: var(--red);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--font-ui);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: var(--shadow-red);
}
.nl-btn:hover { background: var(--red-dark); box-shadow: 0 6px 20px rgba(212,43,43,0.5); transform: translateY(-1px); }
.nl-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  flex-shrink: 0;
  margin: 0 4px;
}
.nl-pr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
}
.nl-pr-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
  white-space: nowrap;
}
.nl-pr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a7a3c, #22a052);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(26,122,60,0.4);
  position: relative;
  overflow: hidden;
}
.nl-pr-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.nl-pr-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,60,0.5); }
.nl-pr-btn:hover::before { opacity: 1; }
.nl-pr-btn-icon {
  font-size: 15px;
  line-height: 1;
}
.nl-pr-free-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 6px;
  margin-left: 2px;
  vertical-align: middle;
}

/* ====== SPONSORED CONTENT SECTION ====== */
.sponsored-section {
  margin-bottom: 32px;
}
.sponsored-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
}
/* Full-width bottom border */
.sponsored-header::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, #e8dcc8, #f0e8d8 40%, transparent);
}
.sponsored-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Left accent bar */
.sponsored-header-left::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: linear-gradient(to bottom, #c9a96e, #e8c97e);
  border-radius: 2px;
  flex-shrink: 0;
}
.sponsored-header-title {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #5a5a72;
  font-family: var(--font-display);
}
.sponsored-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #a07840;
  background: linear-gradient(135deg, #fdf6e3, #f7e8c0);
  border: 1px solid rgba(192,152,80,.35);
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(192,152,80,.15);
}
/* Gold dot before badge text */
.sponsored-header-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96e, #e8c97e);
  flex-shrink: 0;
}
.sponsored-header-cta {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  cursor: pointer;
  border: 1.5px solid rgba(212,43,43,.25);
  padding: 5px 14px;
  border-radius: 20px;
  transition: all .2s;
  font-family: var(--font-ui);
  letter-spacing: .3px;
  background: rgba(212,43,43,.04);
}
.sponsored-header-cta:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(212,43,43,.3);
}
.sponsored-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;   /* Teeno cards same height */
}
.sponsored-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s, transform .2s, border-color .25s;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sponsored-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.sponsored-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 3px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #9a8060;
  padding: 2px 7px;
  z-index: 2;
  font-family: var(--font-display);
  backdrop-filter: blur(4px);
}
.sponsored-card-img {
  width: 100%;
  height: 160px;
  min-height: 160px;       /* Kabhi collapse na ho */
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;          /* Image shrink na ho */
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.sponsored-card:hover .sponsored-card-img { transform: scale(1.02); }
.sponsored-card-img.sc-1 { background: linear-gradient(135deg, #1a3a5c, #2a6090); }
.sponsored-card-img.sc-2 { background: linear-gradient(135deg, #2a1a4a, #5a3090); }
.sponsored-card-img.sc-3 { background: linear-gradient(135deg, #1a4a2a, #2a8050); }
.sponsored-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
}
.sponsored-card-body {
  padding: 16px;
  flex: 1;                 /* Baaki saari height le lo */
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
}
.sponsored-card-brand {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: var(--font-ui);
}
.sponsored-card-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
  transition: color .2s;
}
.sponsored-card:hover .sponsored-card-title { color: var(--navy-light); }
.sponsored-card-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.6;
  font-family: var(--font-display);
  margin-bottom: 14px;
  flex: 1;
}
.sponsored-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.sponsored-card-cta {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s, color .2s;
}
.sponsored-card:hover .sponsored-card-cta { gap: 8px; color: var(--red); }
.sponsored-card-cta::after { content: '→'; }
.sponsored-card-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aab;
  font-family: var(--font-display);
}

/* ====== FOOTER ====== */
.footer {
  background: linear-gradient(180deg, #0b1b35 0%, #0e1f3d 100%);
  color: #7a8eaa;
  padding: 44px 0 0;
  margin-top: 24px;
  border-top: 3px solid var(--red);
  position: relative;
  z-index: 600;
  padding-bottom: 120px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.footer-logo em { color: var(--red); font-style: normal; }
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #7a90b0;
  margin-bottom: 18px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #7a8eaa; font-size: 13px;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.footer-social a:hover { background: var(--red); color: white; border-color: var(--red); transform: translateY(-2px); }
.footer-col h5 {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: #9ab0cc;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-ui);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 12.5px;
  color: #7a90b0;
  transition: color .2s, padding-left .15s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
}
.footer-col ul li a::before { content: '›'; font-size: 13px; opacity: 0; transition: opacity .15s; }
.footer-col ul li a:hover { color: white; padding-left: 4px; }
.footer-col ul li a:hover::before { opacity: 1; }
/* ── Web Apps Footer Column — 50 apps, 2-col scrollable ── */
.footer-col-apps {
  grid-column: span 2;
}
.footer-apps-list {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px 16px !important;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}
.footer-apps-list::-webkit-scrollbar { width: 4px; }
.footer-apps-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 2px; }
.footer-apps-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }
.footer-apps-list li a {
  font-size: 12px !important;
  color: #7a90b0;
  transition: color .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block !important;
}
.footer-apps-list li a:hover { color: white !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 11.5px;
  color: #3a4e6a;
}
.footer-bottom a { color: #4a6080; transition: color .2s; }
.footer-bottom a:hover { color: #8a9ebc; }

/* ====== MOBILE MENU ====== */
.mob-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.mob-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 300; backdrop-filter: blur(2px); }
.mob-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 400;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mob-menu.open { right: 0; }
.mob-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, #0b1b35, #0e1f3d);
  color: white;
  border-top: 3px solid var(--red);
}
.mob-menu-header h3 { font-size: 14px; font-weight: 700; font-family: var(--font-display); }
.mob-close { font-size: 20px; cursor: pointer; color: rgba(255,255,255,0.7); background: none; border: none; line-height: 1; padding: 4px; }
.mob-menu nav { padding: 12px 0; }
.mob-menu nav a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: all .15s;
  font-family: var(--font-ui);
}
.mob-menu nav a:hover { background: #f7f8fb; color: var(--navy); padding-left: 28px; }


.ad-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  justify-content: center;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 6px 0;
  z-index: 500;
}
.ad-mobile-sticky-inner { width: 320px; height: 100px; }
.ad-sticky-close {
  position: absolute;
  top: 4px; right: 10px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 10px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  line-height: 1;
  z-index: 501;
}

/* ====== AD SLOTS ====== */

.body-ad-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #f5f6f8;
  gap: 0;
}
.body-ad-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c0c5d8;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
/* Desktop: show 728x90, hide 320x100 */
.body-ad-728x90  { width: 728px; max-width: 100%; min-height: 90px; height: auto; display: flex; overflow: hidden; }
.body-ad-320x100 { width: 320px; max-width: 100%; height: 100px; display: none; }


/* ====== RESPONSIVE ======
   ====================================================== */

/* Large Tablet / Small Desktop  (≤1100px) / SMALL DESKTOP  (≤1100px)
   ====================================================== */
/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS — COMPLETE DEVICE COVERAGE
   
   1440px+   : Large Desktop / iMac / 4K
   1280px    : Standard Desktop / Laptop 1080p
   1100px    : Small Laptop / Large Tablet landscape
    900px    : Tablet landscape / iPad Pro
    768px    : Tablet portrait / iPad
    640px    : Large Mobile / iPhone Plus
    400px    : Small Mobile / iPhone SE
   ══════════════════════════════════════════════════════════ */

/* ══ ≤ 1280px — Standard laptop ══════════════════════════ */
@media (max-width: 1280px) {
  .home-grid          { grid-template-columns: 1fr 300px 270px; gap: 22px; }
  .news-grid-4        { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .footer-grid        { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
  .footer-col-apps    { display: none; } /* Apps column hide on smaller desktops */
}

/* ══ ≤ 1100px — Small laptop / large tablet landscape ════ */
@media (max-width: 1100px) {
  .home-grid          { grid-template-columns: 1fr 280px; gap: 20px; }
  .sidebar-col        { display: none; }
  .skin-ad-left,
  .skin-ad-right      { display: none !important; }
  .main-wrap          { padding: 20px 20px; }
  .news-grid-4        { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .sponsored-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid        { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 20px; }
  .footer-col-apps    { display: none; }
  .mid-grid           { grid-template-columns: 1fr 270px; }
}

/* ══ ≤ 900px — Tablet landscape / iPad Pro ═══════════════ */
@media (max-width: 900px) {
  /* Layout */
  .home-grid          { grid-template-columns: 1fr; gap: 0; }
  .trending-col       { display: none; }
  .mid-grid           { grid-template-columns: 1fr; }
  .news-grid-4        { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .main-wrap          { padding: 18px 20px; }

  /* Header */
  .header-top           { height: 60px; padding: 0 20px; }
  .logo-img             { height: 38px; }
  .logo-name            { font-size: 22px; }
  .header-search-form   { padding: 10px 20px; }

  /* Newsletter */
  .newsletter-strip   { flex-direction: column; text-align: center; gap: 18px; padding: 24px 28px; }
  .nl-form            { width: 100%; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
  .nl-input           { width: 100%; max-width: 320px; }
  .nl-pr-block        { width: 100%; align-items: center; }
  .nl-pr-btn          { width: 100%; max-width: 320px; justify-content: center; }
  .nl-divider         { display: none; }

  /* Grid & Cards */
  .sponsored-grid     { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-col-apps    { display: none; }

  /* Sidebar */
  .sidebar-widget     { margin-bottom: 16px; }
  .sw-item-pr .sw-item-pr-left { padding: 10px 14px; }
}

/* ══ ≤ 768px — Tablet portrait / iPad ═══════════════════ */
@media (max-width: 768px) {
  .main-wrap          { padding: 16px 16px; }
  .header-top         { height: 56px; padding: 0 16px; }

  /* Featured */
  .featured-title     { font-size: 24px; }
  .featured-excerpt   { font-size: 14px; }

  /* News grid stays 2 cols on tablet portrait */
  .news-grid-4        { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Sponsored 2 cols */
  .sponsored-grid     { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-col-apps    { display: none; }

  /* Nav links — slightly tighter */
  .nav-links a        { padding: 10px 12px; font-size: 11px; }

  /* Section divider */
  .section-divider-more { display: none; }
}

/* ══ ≤ 640px — Large Mobile / iPhone Plus ════════════════ */
@media (max-width: 640px) {

  /* ── GLOBAL ──────────────────────────────────────────── */
  html, body     { overflow-x: hidden; width: 100%; max-width: 100vw; box-sizing: border-box; }
  body           { padding-bottom: 0; }
  *, *::before, *::after { box-sizing: border-box; }
  img, video, iframe { max-width: 100%; height: auto; display: block; }

  /* ── SKIN ADS ────────────────────────────────────────── */
  .skin-ad-left, .skin-ad-right { display: none !important; }

  /* ── HEADER ─────────────────────────────────────────── */
  .header         { position: sticky; top: 0; z-index: 200; width: 100%; }
  .header-top     { height: 56px; padding: 0 14px; gap: 8px; }
  .logo           { gap: 8px; flex: 1; min-width: 0; max-width: calc(100% - 90px); }
  .logo-img       { height: 32px; max-width: 140px; }
  .logo-name      { font-size: 19px; }
  .logo-tagline   { display: none; }
  .header-actions { gap: 6px; flex-shrink: 0; }
  .header-search-btn { width: 32px; height: 32px; }
  .mob-hamburger  { width: 32px; height: 32px; display: flex !important; }
  .header-search-form { padding: 8px 14px; }

  /* ── NAV ─────────────────────────────────────────────── */
  .nav            { overflow: hidden; width: 100%; }
  .nav-inner      { padding: 0 0 0 14px; overflow: hidden; width: 100%; }
  .nav-links      { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; flex: 1; min-width: 0; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a    { font-size: 10.5px; padding: 9px 11px; letter-spacing: 0.3px; white-space: nowrap; }
  .nav-premium    { display: none; }

  /* ── MAIN WRAP ───────────────────────────────────────── */
  .main-wrap { padding: 12px 14px; overflow-x: hidden; width: 100%; max-width: 100vw; }

  /* ── NEWSLETTER STRIP ────────────────────────────────── */
  .newsletter-strip          { flex-direction: column; padding: 18px 16px; gap: 14px; border-radius: 10px; margin-bottom: 16px; text-align: center; width: 100%; box-sizing: border-box; }
  .newsletter-strip::before,
  .newsletter-strip::after   { display: none; }
  .nl-badge                  { font-size: 8.5px; padding: 3px 10px; }
  .nl-heading                { font-size: 17px; line-height: 1.3; margin-bottom: 4px; }
  .nl-sub                    { font-size: 12px; }
  .nl-form                   { flex-direction: row; gap: 8px; width: 100%; align-items: center; }
  .nl-input                  { flex: 1; min-width: 0; width: auto; padding: 10px 12px; font-size: 12.5px; border-radius: 6px; }
  .nl-btn                    { flex-shrink: 0; padding: 10px 14px; font-size: 11.5px; border-radius: 6px; white-space: nowrap; }
  .nl-divider                { display: none; }
  .nl-pr-block               { width: 100%; }
  .nl-pr-btn                 { width: 100%; justify-content: center; padding: 11px 16px; font-size: 12.5px; border-radius: 6px; }

  /* ── HOME GRID ───────────────────────────────────────── */
  .home-grid   { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .sidebar-col { display: none; }

  /* Featured article */
  .featured-col     { padding: 0; margin-bottom: 0; }
  .featured-label   { font-size: 8.5px; padding: 4px 10px; margin-bottom: 12px; letter-spacing: 1.8px; }
  .featured-img     { aspect-ratio: 16/9; width: 100%; border-radius: 8px; margin-bottom: 14px; }
  .featured-title   { font-size: 21px; line-height: 1.28; margin-bottom: 10px; }
  .featured-excerpt { font-size: 13.5px; line-height: 1.62; margin-bottom: 12px; }
  .featured-meta    { font-size: 11px; flex-wrap: wrap; gap: 6px; }
  .author-dot       { width: 20px; height: 20px; font-size: 9px; }
  .read-more-btn    { display: flex; width: 100%; justify-content: center; padding: 11px 16px; font-size: 12px; margin-top: 10px; border-radius: 6px; }

  /* Top News (trending-col) visible on mobile as card */
  .trending-col {
    display: block;
    margin-top: 18px;
    margin-bottom: 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .trending-col .col-label { padding: 10px 14px 8px; margin-bottom: 0; border-bottom: 1px solid var(--border); }
  .trending-col .col-label::before { display: none; }
  .trend-item        { padding: 10px 14px; border-bottom: 1px solid var(--border); gap: 10px; }
  .trend-item:last-child { border-bottom: none; }
  .trend-img         { display: none; }
  .trend-content     { flex: 1; min-width: 0; }
  .trend-title       { font-size: 13px; line-height: 1.42; margin-bottom: 4px; }
  .trend-meta        { font-size: 10px; gap: 4px; }
  .trend-cat         { font-size: 9px; }

  /* ── SECTION DIVIDERS ────────────────────────────────── */
  .section-divider              { margin: 18px 0 12px; gap: 8px; }
  .section-divider-title        { font-size: 9.5px; letter-spacing: 2px; }
  .section-divider-title::before { height: 12px; }
  .section-divider-more         { font-size: 10px; padding: 4px 10px; }

  /* ── NEWS GRID 4-col → 2-col ─────────────────────────── */
  .news-grid-4    { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px; }
  .news-card      { border-radius: 8px; }
  .news-card-img  { height: 115px; }
  .news-card:hover .news-card-img { transform: none; } /* disable zoom on touch */
  .news-card:hover { transform: none; } /* no lift on touch */
  .news-card-body { padding: 10px 12px 12px; }
  .nc-cat         { font-size: 8.5px; letter-spacing: 1px; margin-bottom: 5px; }
  .nc-title       { font-size: 12.5px; line-height: 1.42; margin-bottom: 6px; }
  .nc-meta        { font-size: 10px; }

  /* ── LATEST NEWS + MID-GRID ──────────────────────────── */
  .mid-grid    { grid-template-columns: 1fr; gap: 0; margin-bottom: 16px; }
  .latest-list { width: 100%; overflow: hidden; }
  .latest-item { padding: 12px 0; align-items: flex-start; width: 100%; }

  /* ln-item — Latest News image fix on mobile */
  .ln-item     { gap: 0 !important; min-height: auto !important; padding: 10px 0 !important; }
  .ln-img      { width: 88px !important; min-width: 88px !important; max-width: 88px !important; height: 68px !important; border-radius: 6px !important; }
  .ln-item > div:last-child { padding: 4px 10px !important; }
  .ln-item > div:last-child div:last-child { font-size: 13px !important; -webkit-line-clamp: 2 !important; }

  /* ── SIDEBAR WIDGETS ─────────────────────────────────── */
  .sidebar-widget { margin-bottom: 12px; border-radius: 8px; width: 100%; }
  .sw-header      { padding: 9px 14px; font-size: 8.5px; letter-spacing: 2px; }
  .sw-item        { padding: 10px 14px; gap: 10px; }
  .sw-num         { font-size: 18px; min-width: 20px; }
  .sw-title       { font-size: 12.5px; line-height: 1.4; }
  .sw-meta        { font-size: 10px; }

  /* ── PRESS RELEASE ───────────────────────────────────── */
  .sw-item-pr .sw-item-pr-left { padding: 10px 14px; width: 100%; box-sizing: border-box; }
  .sw-item-pr .sw-title        { font-size: 12px; line-height: 1.42; }
  .sw-item-pr .sw-meta         { font-size: 10px; margin-top: 3px; }
  .pr-domain, .pr-date, .pr-read { font-size: 10px; }

  /* ── WEB APPS HOMEPAGE ───────────────────────────────── */
  .wa-home-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wa-home-card { padding: 12px; gap: 10px; }
  .wa-home-icon { width: 38px; height: 38px; font-size: 18px; }
  .wa-home-name { font-size: 13px; }
  .wa-home-desc { font-size: 11px; }

  /* ── MOBILE MENU ─────────────────────────────────────── */
  .mob-menu       { width: min(300px, 88vw); }
  .mob-menu nav a { font-size: 13.5px; padding: 13px 20px; }

  /* ── FOOTER ──────────────────────────────────────────── */
  .footer                    { padding: 24px 0 0; border-top-width: 3px; }
  .footer-inner              { padding: 0 14px; }
  .footer-grid               { grid-template-columns: 1fr 1fr; gap: 20px; padding-bottom: 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-logo               { font-size: 18px; margin-bottom: 10px; }
  .footer-desc               { font-size: 12.5px; line-height: 1.65; margin-bottom: 14px; }
  .footer-social             { gap: 7px; flex-wrap: wrap; }
  .footer-social a           { width: 32px; height: 32px; font-size: 13px; }
  .footer-social a:hover     { transform: none; }
  .footer-col h5             { font-size: 9px; margin-bottom: 10px; padding-bottom: 6px; letter-spacing: 2px; }
  .footer-col ul             { gap: 8px; }
  .footer-col ul li a        { font-size: 12.5px; }
  .footer-col ul li a:hover  { padding-left: 0; }
  .footer-bottom             { flex-direction: column; gap: 4px; text-align: center; padding: 14px 0; font-size: 11px; }

  /* ── SPONSORED CONTENT ───────────────────────────────── */
  .sponsored-section      { margin-bottom: 20px; }
  .sponsored-header       { margin-bottom: 10px; padding-bottom: 8px; }
  .sponsored-header-title { font-size: 9px; letter-spacing: 2px; }
  .sponsored-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 8px;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .sponsored-grid::-webkit-scrollbar { display: none; }
  .sponsored-card {
    flex: 0 0 76vw;
    max-width: 280px;
    min-width: 230px;
    scroll-snap-align: start;
    transform: none !important;
  }
  .sponsored-card:hover { transform: none !important; }
  .sponsored-card-img    { height: 130px; }
  .sponsored-card-body   { padding: 12px 14px; }
  .sponsored-card-title  { font-size: 13.5px; line-height: 1.38; margin-bottom: 6px; }
  .sponsored-card-desc   { font-size: 12px; line-height: 1.5; margin-bottom: 10px; }

  /* Ad slots */
  .bm-ad-live            { max-width: 100% !important; overflow: hidden; }
  .bm-ad-live > div      { max-width: 100% !important; height: auto !important; min-height: 50px; }
  .skin-ad-left, .skin-ad-right { display: none !important; }
}

/* ══ ≤ 400px — Small Mobile / iPhone SE ═════════════════ */
@media (max-width: 400px) {
  .main-wrap      { padding: 10px 12px; }
  .header-top     { height: 52px; padding: 0 12px; }
  .logo-img       { height: 28px; }
  .logo-name      { font-size: 17px; }

  /* Featured */
  .featured-title { font-size: 19px; }
  .featured-excerpt { font-size: 13px; }

  /* 1 col news grid on very small */
  .news-grid-4    { grid-template-columns: 1fr; gap: 10px; }
  .news-card-img  { height: 160px; }
  .nc-title       { font-size: 14px; }

  /* Trending */
  .trend-title    { font-size: 12.5px; }

  /* Latest news image smaller */
  .ln-img         { width: 76px !important; min-width: 76px !important; height: 62px !important; }

  /* Newsletter */
  .nl-heading     { font-size: 16px; }
  .nl-form        { flex-direction: column; gap: 8px; }
  .nl-input       { width: 100%; }
  .nl-btn         { width: 100%; }

  /* Sponsored */
  .sponsored-card { flex: 0 0 88vw; min-width: 220px; }

  /* Footer */
  .footer-grid    { grid-template-columns: 1fr; gap: 16px; }
  .footer-bottom  { font-size: 10.5px; }

  /* Mobile menu */
  .mob-menu       { width: 92vw; }
}


/* ── ≥ 1440px — Large desktop / external monitor ───────────────── */
@media (min-width: 1440px) {
  :root { --max: 1180px; }
  .main-wrap { padding: 28px 24px; }
  .home-grid { grid-template-columns: 1fr 320px 300px; gap: 28px; }
  .news-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .mid-grid { grid-template-columns: 1fr 310px; }
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; }
}

/* ======================================================
   SKIN / WALLPAPER ADS — LEFT & RIGHT STICKY COLUMNS
   Visible only when viewport > 1460px (content=1260 + 2×100px min)
   ====================================================== */

.skin-ad-left,
.skin-ad-right {
  display: none;
  position: fixed;
  top: 160px;              /* Header (~90px) + markets bar (~50px) + thoda gap */
  width: 120px;
  height: 600px;
  z-index: 99;             /* Header (z-index:200) ke neeche rahe */
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  box-sizing: content-box;
  transition: top 0.2s;
}

/* Content area (1100px) ke bahar position karo */
.skin-ad-left  { left:  calc(50% - 550px - 130px); }
.skin-ad-right { right: calc(50% - 550px - 130px); }

.skin-ad-inner {
  width: 120px;
  height: 600px;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity .2s;
  box-sizing: border-box;
}
.skin-ad-inner:hover { opacity: 0.85; }
.skin-ad-close {
  position: absolute;
  bottom: 8px;
  background: rgba(0,0,0,0.08);
  border: none;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 10px;
  cursor: pointer;
  color: #aab;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  transition: background .2s;
}
.skin-ad-close:hover { background: rgba(0,0,0,0.15); }

/* ── Skin Ads: 1100px+ pe show karo — kabhi 100% width nahi ── */
@media (min-width: 1100px) {
  .skin-ad-left,
  .skin-ad-right {
    display: flex !important;
    width: 120px !important;
  }
  .skin-ad-inner { width: 120px !important; height: 600px; }
  .skin-ad-left  { left:  calc(50% - 550px - 130px); }
  .skin-ad-right { right: calc(50% - 550px - 130px); }
}

@media (min-width: 1400px) {
  .skin-ad-left,
  .skin-ad-right  { width: 160px !important; }
  .skin-ad-inner  { width: 160px !important; height: 600px; }
  .skin-ad-left   { left:  calc(50% - 550px - 170px); }
  .skin-ad-right  { right: calc(50% - 550px - 170px); }
}

@media (min-width: 1700px) {
  .skin-ad-left,
  .skin-ad-right  { width: 200px !important; }
  .skin-ad-inner  { width: 200px !important; height: 600px; }
  .skin-ad-left   { left:  calc(50% - 550px - 210px); }
  .skin-ad-right  { right: calc(50% - 550px - 210px); }
}


/* ══════════════════════════════════════════════════════
   IN-CONTENT AD — Article ke beech mein
   ══════════════════════════════════════════════════════ */
.in-content-ad {
  margin: 32px auto;
  text-align: center;
  clear: both;
}
.in-content-ad-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
}


/* ══ Mobile Ad Slots — Show/Hide Logic ══ */

/* Desktop pe mobile ads hide */
.mobile-only,
.ica-mobile { display: none !important; }

/* Mobile pe desktop ads hide, mobile ads show */
@media (max-width: 640px) {
  .mobile-only { display: block !important; }
  .ica-mobile  { display: block !important; }
  .ica-desktop { display: none  !important; }

  .body-ad-320x50 {
    display: block !important;
    margin: 10px auto;
    text-align: center;
  }
  .body-ad-320x50 .body-ad-slot {
    width: 320px;
    height: 50px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8f9fb;
    border: 1.5px dashed #dde0ec;
    border-radius: 5px;
    color: #aaa;
    font-size: 12px;
  }

  /* Mobile article ad slot size */
  .in-content-ad-slot.mobile {
    width: 100%;
    max-width: 320px;
    height: 50px;
  }
}

/* ══ CATEGORY PAGE MOBILE FIX — Article list visible karo ══ */
@media (max-width: 640px) {
  /* Article list — kabhi hide mat karo */
  .article-list             { display: block !important; }
  .art-item                 { display: flex !important; visibility: visible !important; opacity: 1 !important; }

  /* Cat featured — full width, proper height */
  .cat-featured             { display: flex !important; flex-direction: column !important; width: 100% !important; }

  /* Section head — visible */
  .section-head             { display: flex !important; }

  /* Main content area — fill full width */
  .cat-layout main          { width: 100% !important; min-width: 0 !important; overflow: visible !important; }
  .cat-layout               { display: block !important; }

  /* Art item image — proper size */
  .art-item-img             { min-width: 80px !important; width: 80px !important; height: 70px !important; flex-shrink: 0 !important; }

  /* Art item title — readable size */
  .ai-title                 { font-size: 13px !important; line-height: 1.4 !important; }
}

/* ====== AD VISIBILITY RULES ====== */

/* Skin ads — real code nahi hai toh visitors ko hide */
.skin-ad-left:not(:has(.bm-ad-live)),
.skin-ad-right:not(:has(.bm-ad-live)) {
  display: none !important;
}

/* Mobile sticky — real code nahi toh hide */
.ad-mobile-sticky:not(:has(.bm-ad-live)) {
  display: none !important;
}

/* ── TradingView Branding Hide ─────────────────────────────────────────────── */
.tradingview-widget-copyright,
.tradingview-widget-container a[href*="tradingview"],
.tradingview-widget-container__widget a[href*="tradingview"],
#tradingview-widget-trader-rating,
a.tv-widget-disclaimer,
.tv-widget-disclaimer,
.tv-screener-toolbar__button--tv-logo,
.tv-site-dark-logo,
div[class*="disclaimer"],
div[class*="copyright"] a[href*="tradingview.com"],
.tradingview-widget-container > a,
iframe + div a[target="_blank"][href*="tradingview"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* ── TradingView Footer Link Cover ────────────────────────────────────────── */
.tv-widget-wrap {
  position: relative;
  overflow: hidden;
}
.tv-widget-wrap .tv-brand-cover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: #ffffff;
  z-index: 99;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   AD SLOT — ABOVE NEWSLETTER STRIP
   Newsletter se bilkul upar ka responsive ad slot
   ═══════════════════════════════════════════════════════════════════ */

.above-nl-ad-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0 2px;
  margin-bottom: 0;
  background: #fff;
  box-sizing: border-box;
}

.above-nl-ad-label {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  font-family: sans-serif;
}

/* ── Desktop + Tablet (>= 768px): 728×90 dikhao ── */
.above-nl-ad-desktop {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;           /* Kabhi bhi parent se bada nahi banega */
  overflow: hidden;
  min-height: 90px;
}

.above-nl-ad-mobile {
  display: none;
}

/* ── Mobile (< 768px): 320×100 dikhao ── */
@media (max-width: 767px) {
  .above-nl-ad-desktop {
    display: none;
  }
  .above-nl-ad-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    min-height: 100px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FINAL AD PLACEMENT FIX — Puri Website
   ═══════════════════════════════════════════════════════════════════════════ */

/* 2. Article Sidebar — 300×600 ad block (newsletter ke niche) */
.sidebar-ad-600 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  box-sizing: border-box;
}

.sidebar-ad-600 .sidebar-ad-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #bbb;
  margin-bottom: 6px;
  text-align: center;
}

.sidebar-ad-600 .bm-ad-live {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 900px) {
  .sidebar-ad-600 { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PDF GUIDE ADS — Device-Specific Display Classes
   Mobile:  ≤640px  | Tablet: 641px–1024px | Desktop: ≥1025px
   ══════════════════════════════════════════════════════════════════════════════ */

/* Tablet-only class */
.ica-tablet { display: none !important; }

@media (min-width: 641px) and (max-width: 1024px) {
  .ica-tablet  { display: block !important; }
  .ica-desktop { display: none  !important; }
}

/* Mobile anchor ad — sticky bottom bar */
.bm-anchor-ad {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  text-align: center;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0,0,0,.15);
  padding: 4px 0;
}
.bm-anchor-ad .bm-anchor-close {
  position: absolute;
  top: 2px;
  right: 8px;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #888;
  line-height: 1;
  padding: 2px 4px;
}
@media (max-width: 640px) {
  .bm-anchor-ad { display: block; }
}

/* In-feed ad wrapper — PDF guide placements */
.bm-infeed-ad {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  box-sizing: border-box;
}
.bm-infeed-ad-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c0c5d8;
  margin-bottom: 6px;
}
.bm-infeed-ad .bm-ad-live {
  display: flex;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════════════════════
   SHOPPING ADS SECTION — Article Page
   Desktop: 4 cols | Tablet: 3 cols | Mobile: 2 cols
   ══════════════════════════════════════════════════════════════════════════════ */

.bm-shopping-section {
  margin: 32px 0;
  border-top: 2px solid #f0f0f0;
  padding-top: 24px;
}
.bm-shopping-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.bm-shopping-header-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bm-shopping-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  background: #c0392b;
  padding: 2px 8px;
  border-radius: 20px;
}
.bm-shopping-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .bm-shopping-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .bm-shopping-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.bm-shopping-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}
.bm-shopping-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
.bm-shopping-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #f0f4ff, #e8eeff);
}
.bm-shopping-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #f0f4ff, #e8eeff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.bm-shopping-card-body {
  padding: 10px 12px 12px;
}
.bm-shopping-card-title {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bm-shopping-card-price {
  font-size: 14px;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 8px;
}
.bm-shopping-card-btn {
  display: block;
  width: 100%;
  background: #1a1a2e;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 7px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: background .2s;
  box-sizing: border-box;
}
.bm-shopping-card-btn:hover {
  background: #c0392b;
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════════
   OFF-CANVAS MENU — Full Categories + Subcategories
   ══════════════════════════════════════════════════════════════════ */

/* Overlay */
.oc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 990;
  backdrop-filter: blur(3px);
  transition: opacity .3s;
}
.oc-overlay.open { display: block; animation: ocFadeIn .25s ease; }
@keyframes ocFadeIn { from { opacity:0; } to { opacity:1; } }

/* Panel */
.oc-menu {
  position: fixed;
  top: 0; left: -360px;
  width: 320px;
  max-width: 88vw;
  height: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: left .32s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 32px rgba(0,0,0,.18);
  overflow: hidden;
}
.oc-menu.open { left: 0; }

/* Header */
.oc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 16px;
  background: linear-gradient(118deg, #060d1f 0%, #0e1f3d 100%);
  flex-shrink: 0;
  border-bottom: 2px solid #c0392b;
}
.oc-logo { display: flex; flex-direction: column; gap: 2px; }
.oc-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -.3px;
}
.oc-logo-name em { color: #e74c3c; font-style: normal; }
.oc-logo-tag { font-size: 9.5px; color: rgba(255,255,255,.4); font-family: var(--font-ui); letter-spacing: 1px; }
.oc-close {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.oc-close:hover { background: rgba(255,255,255,.16); }

/* Search */
.oc-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f8f9fb;
  border-bottom: 1px solid #ebebeb;
  flex-shrink: 0;
}
.oc-search-icon { color: #aaa; flex-shrink: 0; }
.oc-search-input {
  border: none;
  background: transparent;
  font-size: 13.5px;
  color: var(--text);
  outline: none;
  width: 100%;
  font-family: var(--font-display);
}
.oc-search-input::placeholder { color: #bbb; }

/* Nav scroll area */
.oc-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 0 16px;
  -webkit-overflow-scrolling: touch;
}
.oc-nav::-webkit-scrollbar { width: 3px; }
.oc-nav::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 3px; }

/* Home / simple item */
.oc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .15s;
  font-family: var(--font-display);
}
.oc-item-home svg { color: #888; flex-shrink: 0; }
.oc-item:hover { background: #f7f8fb; border-left-color: rgba(192,57,43,.3); color: var(--navy); }
.oc-item.active { border-left-color: var(--red); color: var(--red); background: #fff5f5; font-weight: 700; }
.oc-count {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: #bbb;
  font-family: var(--font-ui);
  background: #f0f0f0;
  padding: 2px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}
.oc-item.active .oc-count { background: rgba(192,57,43,.1); color: var(--red); }

/* Category group (with subcategories) */
.oc-group { border-bottom: 1px solid #f2f2f2; }
.oc-group-header {
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
  cursor: pointer;
  transition: background .15s;
  border-left: 3px solid transparent;
  user-select: none;
}
.oc-group-header:hover { background: #f7f8fb; border-left-color: rgba(192,57,43,.25); }
.oc-group.open .oc-group-header { background: #fff5f5; border-left-color: var(--red); }

.oc-group-title {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 12px 13px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-display);
  transition: color .15s;
}
.oc-group.open .oc-group-title { color: var(--red); }
.oc-group-title:hover { color: var(--red); }

.oc-arrow {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: #bbb;
  transition: transform .25s, color .15s;
  flex-shrink: 0;
}
.oc-group.open .oc-arrow { transform: rotate(180deg); color: var(--red); }

/* Subcategory list */
.oc-subs {
  display: none;
  padding: 4px 0 10px;
  background: #fafbfc;
  border-top: 1px solid #f0f0f0;
}
.oc-group.open .oc-subs { display: block; animation: ocSlideDown .2s ease; }
@keyframes ocSlideDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

.oc-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 32px;
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: all .15s;
  font-family: var(--font-display);
  border-left: 3px solid transparent;
}
.oc-sub:hover { background: #f0f4ff; color: var(--navy); border-left-color: rgba(14,31,61,.2); padding-left: 36px; }
.oc-sub.active { color: var(--red); font-weight: 600; background: #fff5f5; border-left-color: var(--red); }
.oc-sub-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #d0d4de;
  flex-shrink: 0;
  transition: background .15s;
}
.oc-sub:hover .oc-sub-dot { background: var(--navy); }
.oc-sub.active .oc-sub-dot { background: var(--red); }
.oc-sub-count {
  margin-left: auto;
  font-size: 10px;
  color: #ccc;
  font-family: var(--font-ui);
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer */
.oc-footer {
  flex-shrink: 0;
  border-top: 1px solid #ebebeb;
  background: #f8f9fb;
  padding: 14px 20px;
}
.oc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-bottom: 12px;
}
.oc-footer-links a {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 600;
  transition: color .15s;
}
.oc-footer-links a:hover { color: var(--navy); }
.oc-footer-social { display: flex; gap: 8px; }
.oc-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--font-ui);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  flex: 1;
  justify-content: center;
}
.oc-social-btn:hover { transform: translateY(-1px); }
.oc-wa { background: linear-gradient(135deg, #128C45, #25D366); color: #fff; box-shadow: 0 3px 10px rgba(37,211,102,.3); }
.oc-tg { background: linear-gradient(135deg, #006dac, #2aabee); color: #fff; box-shadow: 0 3px 10px rgba(0,136,204,.3); }

/* Show hamburger on all screens */
.mob-hamburger { display: flex !important; cursor: pointer; }

/* ══════════════════════════════════════════════════════
   WHATSAPP CHANNEL CARD — Sidebar & Inline
   ══════════════════════════════════════════════════════ */
.wa-channel-card {
  background: linear-gradient(145deg, #0a1628, #0e2040);
  border-radius: 12px;
  padding: 20px 18px;
  color: #fff;
  border: 1px solid rgba(37,211,102,.2);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  margin-bottom: 24px;
}
.wa-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.wa-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #128C45, #25D366);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(37,211,102,.35);
}
.wa-card-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #25D366;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
  padding: 3px 10px;
  border-radius: 20px;
}
.wa-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-ui);
}
.wa-card-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  margin-bottom: 12px;
}
.wa-card-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.wa-card-dot {
  width: 7px;
  height: 7px;
  background: #25D366;
  border-radius: 50%;
  animation: waPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes waPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.3); }
}
.wa-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #128C45, #25D366);
  color: #fff;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 3px 12px rgba(37,211,102,.35);
  box-sizing: border-box;
}
.wa-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,.45);
  color: #fff;
}
