/*
Theme Name: NPH Bharat Live News
Theme URI: https://newsportalhub.in/themes/bharat-live
Author: NewsPortalHub Ecosystem
Author URI: https://newsportalhub.in
Description: Ultra-Modern National Hindi News Portal Theme inspired by Aaj Tak, News18, Dainik Bhaskar, Zee News, and India TV. Fully dynamic with Theme Options Panel, 6 category layouts, Live TV dock, Web Stories, Multi-Category State Tabs, Interactive YouTube Video Hub, Built-in Live Sports & Cricket Scorecard Widget, Full Gutenberg Widget Support.
Version: 2.3.2
License: GNU General Public License v2 or later
Text Domain: bharat-live
Tags: news, magazine, hindi-news, aaj-tak, dainik-bhaskar, video-news, grid-layout, custom-colors, responsive
*/

/* ======================================================
   1. DESIGN TOKENS & CSS VARIABLES
   ====================================================== */
:root {
  --bl-primary: #cc0000;
  --bl-primary-dark: #990000;
  --bl-header-bg: #0f2b5c;
  --bl-header-text: #ffffff;
  --bl-accent: #f59e0b;
  --bl-accent-red: #e11d48;
  --bl-bg: #f8fafc;
  --bl-surface: #ffffff;
  --bl-text: #0f172a;
  --bl-text-muted: #64748b;
  --bl-border: #e2e8f0;
  --bl-radius-sm: 4px;
  --bl-radius: 8px;
  --bl-radius-lg: 12px;
  --bl-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --bl-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --bl-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --bl-font-sans: 'Mukta', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --bl-font-heading: 'Mukta', 'Poppins', sans-serif;
}

[data-theme="dark"] {
  --bl-bg: #0b1120;
  --bl-surface: #111827;
  --bl-text: #f8fafc;
  --bl-text-muted: #94a3b8;
  --bl-border: #1e293b;
  --bl-header-bg: #070e1e;
  --bl-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --bl-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

/* Base Styles & Mobile Protection */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--bl-font-sans);
  background-color: var(--bl-bg);
  color: var(--bl-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.bl-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Badges & Live Pulse */
.bl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--bl-primary);
  color: #fff;
  letter-spacing: 0.5px;
}

.bl-badge-live {
  background: #e11d48;
  animation: bl-pulse 1.5s infinite;
}

@keyframes bl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

.bl-live-dot {
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: bl-pulse 1.2s infinite;
}

.bl-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  display: inline-block;
  animation: bl-pulse 1s infinite;
}

/* Universal Placeholders (No empty black boxes!) */
.bl-lead-img-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 700;
  padding: 20px;
  text-align: center;
}

.bl-small-thumb-placeholder {
  width: 65px;
  height: 48px;
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

.bl-story-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cc0000 0%, #0f2b5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

/* ======================================================
   2. TOP UTILITY STRIP
   ====================================================== */
.bl-topbar {
  background: #091428;
  color: #94a3b8;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #16243e;
}

.bl-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.bl-topbar-left, .bl-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bl-weather-chip, .bl-market-chip {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.bl-trending-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
}

.bl-trending-label {
  color: var(--bl-accent);
  font-weight: 800;
  font-size: 11.5px;
}

.bl-tag-link {
  color: #cbd5e1;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.bl-tag-link:hover {
  background: var(--bl-primary);
  color: #fff;
}

.bl-topbar-action-link {
  color: #e2e8f0;
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.bl-topbar-action-link:hover {
  background: var(--bl-primary);
  color: #fff;
}

.bl-theme-toggle {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #94a3b8;
}

/* ======================================================
   3. MAIN HEADER & BRANDING
   ====================================================== */
.bl-header {
  background: #ffffff;
  color: #0f172a;
  padding: 12px 0;
  border-bottom: 2px solid var(--bl-primary);
}

[data-theme="dark"] .bl-header {
  background: #0f172a;
  color: #fff;
}

.bl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bl-site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bl-site-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #0f2b5c;
  line-height: 1.1;
}

[data-theme="dark"] .bl-site-title {
  color: #fff;
}

.bl-site-title span {
  color: var(--bl-primary);
}

.bl-site-tagline {
  font-size: 11.5px;
  color: var(--bl-text-muted);
  margin-top: 2px;
}

.bl-header-ad {
  display: none;
  max-width: 728px;
  width: 100%;
  text-align: right;
}

@media (min-width: 992px) {
  .bl-header-ad {
    display: block;
  }
}

.bl-header-ad-placeholder {
  background: rgba(0, 0, 0, 0.02);
  padding: 16px 24px;
  border-radius: 4px;
  border: 1px dashed #cbd5e1;
  color: #94a3b8;
  font-size: 11.5px;
  text-align: center;
}

/* ======================================================
   4. PRIMARY NAVBAR (AAJ TAK / NEWS18 THEME)
   ====================================================== */
.bl-navbar {
  background: var(--bl-header-bg);
  border-bottom: 2px solid var(--bl-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.bl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bl-nav-menu,
ul.bl-nav-menu,
#blNavMenu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  list-style: none !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 2px !important;
  flex-grow: 1 !important;
}

.bl-nav-menu::-webkit-scrollbar {
  display: none !important;
}

.bl-nav-menu li,
.bl-nav-menu .menu-item,
.bl-nav-item,
.bl-home-nav-item {
  list-style: none !important;
  display: inline-flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bl-nav-menu li > a,
.bl-nav-menu .menu-item > a,
.bl-nav-item > a,
.bl-home-icon-link,
.bl-home-nav-item > a {
  display: inline-flex !important;
  align-items: center !important;
  padding: 10px 13px !important;
  font-family: var(--bl-font-sans) !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  border-bottom: 3px solid transparent !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
  line-height: 1.2 !important;
}

.bl-nav-menu li > a:hover,
.bl-nav-menu .menu-item > a:hover,
.bl-nav-item > a:hover,
.bl-nav-menu li.current-menu-item > a,
.bl-nav-menu .menu-item.current-menu-item > a,
.bl-nav-item.current-menu-item > a,
.bl-home-nav-item.current-menu-item > a {
  color: #ffffff !important;
  background: var(--bl-primary) !important;
  border-bottom-color: #ffffff !important;
}

.bl-home-nav-item > a,
.bl-home-icon-link {
  font-size: 17px !important;
  padding: 8px 10px !important;
}

.bl-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bl-live-tv-btn {
  background: var(--bl-primary);
  color: #fff !important;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.4);
}

.bl-live-tv-btn:hover {
  background: #b30000;
}

.bl-search-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 6px 9px;
  border-radius: 4px;
  cursor: pointer;
}

/* ======================================================
   5. 3D ANGLED BREAKING NEWS RIBBON
   ====================================================== */
.bl-breaking-bar {
  background: #111827;
  color: #fff;
  border-bottom: 1px solid #1e293b;
  overflow: hidden;
}

.bl-breaking-inner {
  display: flex;
  align-items: center;
  height: 36px;
}

.bl-breaking-title {
  background: var(--bl-primary);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
  padding: 0 20px 0 12px;
}

.bl-breaking-content {
  flex: 1;
  padding: 0 12px;
  overflow: hidden;
  white-space: nowrap;
}

.bl-breaking-ticker {
  display: inline-block;
  animation: bl-ticker 55s linear infinite;
}

.bl-breaking-ticker:hover {
  animation-play-state: paused;
}

.bl-ticker-item {
  display: inline-block;
  margin-right: 35px;
  color: #f8fafc;
  font-weight: 700;
  font-size: 13px;
}

.bl-ticker-item:hover {
  color: var(--bl-accent);
}

@keyframes bl-ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ======================================================
   6. MAIN HERO SECTION (AAJ TAK SIGNATURE 3-COLUMN SPLIT)
   ====================================================== */
.bl-main-wrapper {
  padding: 18px 0 35px;
}

.bl-aajtak-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 25px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .bl-aajtak-hero {
    grid-template-columns: 1.8fr 1.15fr 1.05fr;
  }
  .bl-aajtak-hero.bl-hero-no-livetv {
    grid-template-columns: 1.55fr 1fr;
  }
}

/* Col 1: Lead Story Box */
.bl-lead-story-box {
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  overflow: hidden;
  box-shadow: var(--bl-shadow-sm);
  display: flex;
  flex-direction: column;
}

.bl-lead-badge-strip {
  padding: 10px 14px 0;
}

.bl-lead-story-headline {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
  padding: 8px 14px 10px;
}

@media (min-width: 768px) {
  .bl-lead-story-headline {
    font-size: 22px;
  }
}

.bl-lead-story-headline a {
  color: var(--bl-text);
}

.bl-lead-story-headline a:hover {
  color: var(--bl-primary);
}

.bl-lead-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1e293b;
  width: 100%;
}

.bl-lead-story-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .bl-lead-story-img {
    height: 290px;
  }
}

.bl-lead-img-wrap:hover .bl-lead-story-img {
  transform: scale(1.03);
}

.bl-lead-read-pill {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.bl-lead-excerpt {
  font-size: 13.5px;
  color: var(--bl-text-muted);
  line-height: 1.5;
  padding: 10px 14px 4px;
}

.bl-lead-story-meta {
  padding: 8px 14px 12px;
  font-size: 12px;
  color: var(--bl-text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bl-border);
  margin-top: auto;
  flex-wrap: wrap;
  gap: 6px;
}

/* Col 2: Numbered Top 5 Stories */
.bl-superfast-box {
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  overflow: hidden;
  box-shadow: var(--bl-shadow-sm);
  display: flex;
  flex-direction: column;
}

.bl-superfast-header {
  background: #f8fafc;
  border-bottom: 2px solid var(--bl-primary);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[data-theme="dark"] .bl-superfast-header {
  background: #111827;
}

.bl-superfast-badge {
  color: var(--bl-primary);
  font-weight: 900;
  font-size: 13.5px;
}

.bl-superfast-tagline {
  font-size: 11px;
  color: var(--bl-text-muted);
}

.bl-numbered-news-list {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-grow: 1;
}

.bl-numbered-news-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--bl-border);
  transition: background 0.2s ease;
}

.bl-numbered-news-item:last-child {
  border-bottom: none;
}

.bl-numbered-news-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.bl-number-badge {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #cc0000 0%, #e11d48 100%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.bl-numbered-content {
  flex-grow: 1;
  min-width: 0;
}

.bl-numbered-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bl-text);
  margin-bottom: 2px;
}

.bl-numbered-title a:hover {
  color: var(--bl-primary);
}

.bl-numbered-meta {
  font-size: 11px;
  color: var(--bl-text-muted);
}

.bl-numbered-thumb {
  width: 65px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Col 3: Live TV Dock */
.bl-livetv-dock {
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  overflow: hidden;
  box-shadow: var(--bl-shadow-sm);
  display: flex;
  flex-direction: column;
}

.bl-livetv-tabs {
  display: flex;
  background: #0f172a;
}

.bl-livetv-tab {
  flex: 1;
  text-align: center;
  padding: 8px 6px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: none;
  border: none;
}

.bl-livetv-tab.active {
  color: #fff;
  background: var(--bl-primary);
  border-bottom-color: #fff;
}

.bl-livetv-player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.bl-livetv-player-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.bl-livetv-empty-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.bl-livetv-below-banner {
  padding: 10px 12px;
  background: var(--bl-bg);
  border-top: 1px solid var(--bl-border);
  text-align: center;
  margin-top: auto;
}

.bl-follow-pills {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 6px;
  flex-wrap: wrap;
}

.bl-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff !important;
}

/* ======================================================
   7. VISUAL WEB STORIES (DAINIK BHASKAR STYLE)
   ====================================================== */
.bl-stories-container {
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  padding: 12px;
  margin-bottom: 22px;
  box-shadow: var(--bl-shadow-sm);
}

.bl-stories-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bl-stories-badge {
  font-size: 14px;
  font-weight: 800;
  color: var(--bl-primary);
}

.bl-stories-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.bl-stories-scroll::-webkit-scrollbar {
  display: none;
}

.bl-story-card {
  position: relative;
  width: 130px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e11d48;
  background: #000;
  box-shadow: var(--bl-shadow-sm);
}

.bl-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bl-story-card:hover .bl-story-img {
  transform: scale(1.06);
}

.bl-story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  color: #fff;
}

.bl-story-title {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 4px;
  color: #fff;
}

/* ======================================================
   8. MAIN 2-COLUMN LAYOUT & SIDEBAR
   ====================================================== */
.bl-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .bl-layout-grid {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .bl-layout-grid {
    grid-template-columns: 1fr 360px;
  }
}

.bl-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--bl-primary);
}

.bl-section-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--bl-text);
  margin: 0;
}

.bl-more-link {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--bl-primary);
}

.bl-more-link:hover {
  text-decoration: underline;
}

.bl-category-block {
  margin-bottom: 24px;
}

/* Card Styles */
.bl-card {
  background: var(--bl-surface);
  border-radius: var(--bl-radius);
  border: 1px solid var(--bl-border);
  box-shadow: var(--bl-shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bl-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bl-shadow);
}

.bl-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1e293b;
}

.bl-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bl-card:hover .bl-card-media img {
  transform: scale(1.04);
}

.bl-card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
}

.bl-card-body {
  padding: 10px 12px;
}

.bl-card-title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.38;
  margin-bottom: 4px;
}

.bl-card-title a {
  color: var(--bl-text);
}

.bl-card-title a:hover {
  color: var(--bl-primary);
}

.bl-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--bl-text-muted);
}

/* ======================================================
   9. CATEGORY BLOCK LAYOUTS
   ====================================================== */

/* STYLE 1: Aaj Tak Magazine */
.bl-style-magazine-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .bl-style-magazine-wrap {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
}

.bl-mag-lead-card {
  position: relative;
  border-radius: var(--bl-radius);
  overflow: hidden;
  background: #1e293b;
  height: 100%;
  min-height: 240px;
  box-shadow: var(--bl-shadow-sm);
  display: block;
}

.bl-mag-lead-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.bl-mag-lead-card:hover img {
  transform: scale(1.03);
}

.bl-mag-lead-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  color: #fff;
}

.bl-mag-lead-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-top: 4px;
}

.bl-mag-list-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.bl-mag-list-item {
  display: flex;
  gap: 10px;
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  padding: 6px 8px;
  align-items: center;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.bl-mag-list-item:hover {
  transform: translateX(2px);
  border-color: var(--bl-primary);
}

.bl-mag-list-thumb {
  width: 70px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.bl-mag-list-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bl-text);
  margin-bottom: 2px;
}

.bl-mag-list-title a:hover {
  color: var(--bl-primary);
}

/* STYLE 2: Multi-Category / State Tabs */
.bl-state-block-wrap {
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: var(--bl-shadow-sm);
}

.bl-state-header-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bl-surface);
  border-bottom: 1px solid var(--bl-border);
}

.bl-state-tabs-bar {
  background: #0f2b5c;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bl-state-tabs-bar::-webkit-scrollbar {
  display: none;
}

.bl-state-tab-btn {
  background: transparent;
  color: #cbd5e1;
  font-family: var(--bl-font-sans);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-block;
  user-select: none;
}

.bl-state-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.bl-state-tab-btn.active {
  background: #e11d48 !important;
  color: #fff !important;
}

.bl-state-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 12px;
}

@media (min-width: 640px) {
  .bl-state-content-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
}

.bl-state-lead-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bl-state-lead-media {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  background: #1e293b;
}

.bl-state-lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bl-state-breaking-graphic {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #cc0000 0%, #e11d48 70%, transparent 100%);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.bl-state-lead-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.bl-state-lead-title a:hover {
  color: var(--bl-primary);
}

.bl-state-lead-excerpt {
  font-size: 13px;
  color: var(--bl-text-muted);
  line-height: 1.45;
  margin: 0;
}

.bl-state-sub-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}

.bl-state-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bl-border);
}

.bl-state-sub-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bl-state-sub-thumb {
  width: 75px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.bl-state-sub-title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 2px 0;
}

.bl-state-sub-title a:hover {
  color: var(--bl-primary);
}

/* STYLE 3: 4-Column Grid */
.bl-cat-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .bl-cat-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 400px) {
  .bl-cat-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* STYLE 4: 3-Column Focus Grid */
.bl-cat-grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

@media (min-width: 500px) {
  .bl-cat-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .bl-cat-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* STYLE 5: Zee News Video Gallery */
.bl-video-hub-wrap {
  background: #091122;
  border-radius: var(--bl-radius);
  padding: 14px;
  color: #fff;
}

.bl-video-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .bl-video-grid-modern {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 420px) {
  .bl-video-grid-modern {
    grid-template-columns: 1fr;
  }
}

.bl-video-card {
  background: #111e38;
  border-radius: 6px;
  overflow: hidden;
}

.bl-video-media-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.bl-video-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #cc0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.bl-video-duration-chip {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}

.bl-video-body {
  padding: 8px 10px;
}

.bl-video-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  color: #fff;
}

.bl-video-title a {
  color: #fff;
}

.bl-video-title a:hover {
  color: var(--bl-accent);
}

/* STYLE 6: Split Hero (1 Left + 3 Right Stack) */
.bl-split-hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .bl-split-hero-wrap {
    grid-template-columns: 1.2fr 1fr;
  }
}

.bl-split-lead {
  position: relative;
  border-radius: var(--bl-radius);
  overflow: hidden;
  background: #1e293b;
  min-height: 220px;
}

.bl-split-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-split-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: #fff;
}

.bl-split-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.bl-split-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}

.bl-split-item {
  display: flex;
  gap: 10px;
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  padding: 6px 8px;
  align-items: center;
}

.bl-split-thumb {
  width: 65px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.bl-split-item-title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 2px;
}

/* ======================================================
   10. SIDEBAR & INTERACTIVE WIDGETS
   ====================================================== */
.bl-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bl-widget {
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  padding: 14px;
  box-shadow: var(--bl-shadow-sm);
}

.bl-widget-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--bl-text);
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--bl-primary);
}

.bl-sidebar-post-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bl-sidebar-post-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bl-border);
}

.bl-sidebar-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bl-sidebar-post-num {
  font-size: 14px;
  font-weight: 900;
  color: var(--bl-primary);
  background: rgba(204,0,0,0.08);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.bl-sidebar-post-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 2px;
}

.bl-sidebar-post-title a:hover {
  color: var(--bl-primary);
}

/* Poll Widget */
.bl-poll-widget {
  background: #fdf2f2;
  border: 1px solid #fecaca;
}

[data-theme="dark"] .bl-poll-widget {
  background: #1e1b2e;
  border-color: #3b2d54;
}

.bl-poll-question {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.bl-poll-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bl-poll-opt-btn {
  width: 100%;
  padding: 7px 10px;
  border-radius: 4px;
  border: 1px solid var(--bl-border);
  background: var(--bl-surface);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bl-text);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.bl-poll-opt-btn:hover {
  background: var(--bl-primary);
  color: #fff;
  border-color: var(--bl-primary);
}

.bl-poll-voted {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
}

/* Sticky Sidebar on Desktop */
@media (min-width: 900px) {
  .bl-sidebar {
    position: sticky;
    top: 75px;
    align-self: flex-start;
  }
}

/* Sports Selector Tabs */
.bl-sports-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.bl-sport-tab {
  flex: 1;
  background: transparent;
  color: #cbd5e1;
  font-family: var(--bl-font-sans);
  font-weight: 800;
  font-size: 11.5px;
  padding: 4px 6px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.bl-sport-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.bl-sport-tab.active {
  background: var(--bl-accent-red) !important;
  color: #fff !important;
}

/* Live Cricket Widget */
.bl-cricket-widget {
  background: linear-gradient(135deg, #0b1f3a 0%, #17375e 100%);
  color: #fff;
  border-left: 4px solid var(--bl-accent);
}

.bl-cricket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.bl-cricket-live-badge {
  background: var(--bl-accent-red);
  color: #fff;
  font-size: 9.5px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bl-cricket-tour {
  font-size: 10.5px;
  color: #cbd5e1;
  font-weight: 600;
}

.bl-cricket-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bl-cricket-team {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl-team-flag {
  font-size: 18px;
}

.bl-team-name {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.bl-team-score {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--bl-accent);
}

.bl-cricket-vs {
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  background: rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: 8px;
}

.bl-cricket-batsmen {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #e2e8f0;
  background: rgba(0,0,0,0.25);
  padding: 5px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 4px;
}

.bl-cricket-status {
  font-size: 11px;
  font-weight: 700;
  color: #fde68a;
  text-align: center;
}

/* Weather Widget */
.bl-weather-widget {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
}

.bl-weather-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bl-weather-city {
  font-size: 11.5px;
  color: #e0f2fe;
  font-weight: 700;
}

.bl-weather-main {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.bl-weather-temp {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.bl-weather-desc strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.bl-weather-desc span {
  font-size: 11px;
  color: #bae6fd;
}

.bl-weather-details {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #e0f2fe;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 6px;
  flex-wrap: wrap;
  gap: 4px;
}

/* Rashifal Widget */
.bl-rashifal-widget {
  background: var(--bl-surface);
}

.bl-rashifal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.bl-rashi-btn {
  background: #f8fafc;
  border: 1px solid var(--bl-border);
  padding: 5px 2px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--bl-text);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.bl-rashi-btn:hover {
  background: var(--bl-primary);
  color: #fff;
  border-color: var(--bl-primary);
}

.bl-rashi-display {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 11.5px;
  line-height: 1.45;
}

/* ======================================================
   11. SOCIAL MEDIA VIRAL HUB CARDS
   ====================================================== */
.bl-social-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.bl-social-card {
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  overflow: hidden;
  box-shadow: var(--bl-shadow-sm);
  display: flex;
  flex-direction: column;
}

.bl-social-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--bl-border);
}

.bl-social-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.bl-social-card-media {
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
}

.bl-social-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.bl-social-card-footer {
  padding: 8px 12px;
  margin-top: auto;
}

.bl-social-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 7px;
  border-radius: 4px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
}

/* ======================================================
   12. MODERN 4-COLUMN FOOTER
   ====================================================== */
.bl-footer {
  background: #070e1c;
  color: #cbd5e1;
  border-top: 3px solid var(--bl-primary);
  font-size: 13px;
}

.bl-footer-top-strip {
  background: #0b1528;
  padding: 14px 0;
  border-bottom: 1px solid #16243e;
}

.bl-footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.bl-footer-app-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.bl-app-badges {
  display: flex;
  gap: 8px;
}

.bl-app-badge-btn {
  background: #1e293b;
  color: #fff !important;
  padding: 5px 12px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  font-size: 9.5px;
  border: 1px solid #334155;
  line-height: 1.2;
}

.bl-app-badge-btn strong {
  font-size: 12px;
}

.bl-app-badge-btn:hover {
  background: var(--bl-primary);
  border-color: var(--bl-primary);
}

.bl-footer-main {
  padding: 36px 16px 28px;
}

.bl-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 576px) {
  .bl-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .bl-footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  }
}

.bl-dot-red {
  color: var(--bl-primary, #cc0000);
  font-weight: 900;
  margin-right: 4px;
}

.bl-footer-logo-title {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.bl-footer-about {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 14px;
}

.bl-footer-sub-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.bl-footer-col-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1e293b;
}

.bl-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.bl-footer-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bl-footer-links a {
  color: #cbd5e1;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.bl-footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.bl-footer-social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.bl-soc-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #1e293b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.bl-soc-icon.bl-soc-fb { background: #3b5998 !important; }
.bl-soc-icon.bl-soc-yt { background: #cc0000 !important; }
.bl-soc-icon.bl-soc-wa { background: #25d366 !important; }
.bl-soc-icon.bl-soc-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important; }
.bl-soc-icon.bl-soc-tw { background: #000000 !important; border: 1px solid #334155; }

.bl-soc-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Footer Calendar Widget Dark Mode Styling */
.bl-footer-calendar-wrap table,
.bl-footer #wp-calendar {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: #cbd5e1;
}

.bl-footer-calendar-wrap caption,
.bl-footer #wp-calendar caption {
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.bl-footer-calendar-wrap th,
.bl-footer-calendar-wrap td,
.bl-footer #wp-calendar th,
.bl-footer #wp-calendar td {
  border: 1px solid #334155;
  padding: 5px 2px;
  text-align: center;
}

.bl-footer-calendar-wrap th,
.bl-footer #wp-calendar th {
  background: #1e293b;
  color: #ffffff;
  font-weight: 700;
}

.bl-footer-calendar-wrap td a,
.bl-footer #wp-calendar td a {
  color: var(--bl-primary, #cc0000);
  font-weight: 800;
  text-decoration: underline;
}

.bl-footer-custom-content,
.bl-footer-editorial-content {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

.bl-footer-editorial-content p {
  margin-bottom: 8px;
}

/* ======================================================
   FOOTER BLOCK WIDGETS & GUTENBERG FULL SUPPORT
   ====================================================== */
.bl-footer-widget {
  margin-bottom: 20px;
}

.bl-footer-col .wp-block-paragraph,
.bl-footer-col p {
  color: #94a3b8;
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.bl-footer-col .wp-block-heading,
.bl-footer-col h1, .bl-footer-col h2, .bl-footer-col h3, .bl-footer-col h4, .bl-footer-col h5, .bl-footer-col h6 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1e293b;
}

.bl-footer-col .wp-block-list,
.bl-footer-col .wp-block-page-list,
.bl-footer-col .wp-block-categories-list,
.bl-footer-col .wp-block-archives-list,
.bl-footer-col .wp-block-navigation__container,
.bl-footer-col ul.bl-footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.bl-footer-col .wp-block-list li,
.bl-footer-col .wp-block-page-list li,
.bl-footer-col .wp-block-navigation-item,
.bl-footer-col .wp-block-categories-list li,
.bl-footer-col .wp-block-archives-list li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bl-footer-col a,
.bl-footer-col .wp-block-navigation-item__content {
  color: #cbd5e1 !important;
  font-size: 13.5px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  display: inline-block;
}

.bl-footer-col a:hover,
.bl-footer-col .wp-block-navigation-item__content:hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

.bl-footer-col .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.bl-footer-col .wp-block-social-links {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  padding: 0 !important;
  margin: 10px 0 !important;
}

.bl-footer-col .wp-block-latest-posts {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.bl-footer-col .wp-block-latest-posts li {
  border-bottom: 1px solid #1e293b;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.bl-footer-col .wp-block-latest-posts__post-date {
  color: #64748b;
  font-size: 11.5px;
  display: block;
  margin-top: 2px;
}

.bl-footer-bottom {
  background: #040810;
  padding: 14px 0;
  border-top: 1px solid #111e38;
  font-size: 11.5px;
  color: #64748b;
}

.bl-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.bl-legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bl-legal-links a:hover {
  color: #cbd5e1;
}

/* ======================================================
   13. COMPREHENSIVE RESPONSIVE DESIGN (ALL DEVICES)
   ====================================================== */
@media (max-width: 768px) {
  .bl-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .bl-topbar-left, .bl-topbar-right {
    width: 100%;
    justify-content: space-between;
  }
  .bl-trending-tags {
    width: 100%;
    margin-top: 2px;
  }
  .bl-header-inner {
    flex-direction: column;
    text-align: center;
  }
  .bl-site-branding {
    justify-content: center;
  }
  .bl-aajtak-hero {
    grid-template-columns: 1fr;
  }
  .bl-lead-story-headline {
    font-size: 18px;
    padding: 6px 10px 8px;
  }
  .bl-lead-story-img {
    height: 220px;
  }
  .bl-style-magazine-wrap {
    grid-template-columns: 1fr;
  }
  .bl-state-content-grid {
    grid-template-columns: 1fr;
  }
  .bl-state-lead-media {
    height: 180px;
  }
  .bl-split-hero-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bl-site-title {
    font-size: 24px;
  }
  .bl-breaking-title {
    padding: 0 14px 0 8px;
    font-size: 11px;
  }
  .bl-card-title {
    font-size: 13.5px;
  }
  .bl-cat-grid-4, .bl-cat-grid-3, .bl-video-grid-modern {
    grid-template-columns: 1fr;
  }
  .bl-mag-list-thumb, .bl-state-sub-thumb, .bl-split-thumb {
    width: 65px;
    height: 48px;
  }
  .bl-stories-container {
    padding: 8px;
  }
}

/* ======================================================
   14. INTERACTIVE MULTI-TAB VIDEO & SOCIAL MEDIA HUB
   ====================================================== */
.bl-vsh-container {
  background: #071938;
  border-radius: var(--bl-radius, 8px);
  padding: 16px 18px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: #fff;
  border-top: 4px solid #cc0000;
}

.bl-vsh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bl-vsh-title {
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.2px;
}

/* Tab Bar with Buttons (Just like state tabs) */
.bl-vsh-tabs-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.bl-vsh-tab-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bl-vsh-tab-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.bl-vsh-tab-btn.active {
  background: #cc0000;
  color: #fff;
  border-color: #cc0000;
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.4);
}

/* Matrix Layout (Main Featured Video Left + 2x2 Grid Right) */
.bl-vsh-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .bl-vsh-matrix {
    grid-template-columns: 1.3fr 1fr;
    align-items: stretch;
  }
}

.bl-vsh-main-col {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bl-vsh-player-box {
  position: relative;
  width: 100%;
  height: 240px;
  background: #000;
  overflow: hidden;
}

@media (min-width: 900px) {
  .bl-vsh-player-box {
    height: 270px;
  }
}

.bl-vsh-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.bl-vsh-lead-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.bl-vsh-lead-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bl-vsh-lead-link:hover .bl-vsh-lead-img {
  transform: scale(1.04);
}

.bl-vsh-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #cc0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.8);
  transition: transform 0.2s ease;
}

.bl-vsh-lead-link:hover .bl-vsh-play-icon {
  transform: translate(-50%, -50%) scale(1.12);
}

.bl-vsh-main-caption {
  padding: 12px 14px;
  flex: 1;
}

.bl-vsh-tag-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  color: #fff;
  padding: 2px 7px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.bl-vsh-main-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

.bl-vsh-main-title a {
  color: #fff;
  text-decoration: none;
}

.bl-vsh-main-title a:hover {
  color: #fca5a5;
}

/* Side Grid (4 cards) */
.bl-vsh-side-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 500px) {
  .bl-vsh-side-grid {
    grid-template-columns: 1fr;
  }
}

.bl-vsh-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, background 0.2s ease;
}

.bl-vsh-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.bl-vsh-card-thumb {
  position: relative;
  width: 100%;
  height: 95px;
  display: block;
  overflow: hidden;
  background: #000;
}

.bl-vsh-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bl-vsh-card:hover .bl-vsh-card-img {
  transform: scale(1.06);
}

.bl-vsh-play-mini {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #cc0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.bl-vsh-dur-chip {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
}

.bl-vsh-card-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  padding: 7px 8px 9px;
  flex: 1;
}

.bl-vsh-card-title a {
  color: #e2e8f0;
  text-decoration: none;
}

.bl-vsh-card-title a:hover {
  color: #fca5a5;
}

/* Social Media Big Callout Card */
.bl-vsh-social-lead-box {
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.bl-vsh-social-btn {
  font-size: 12.5px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.bl-vsh-social-btn:hover {
  transform: scale(1.05);
}

/* Sidebar Dynamic Category News Blocks */
.bl-sidebar-cat-widget {
  background: var(--bl-surface, #ffffff);
  border: 1px solid var(--bl-border, #e2e8f0);
  border-radius: var(--bl-radius, 8px);
  padding: 14px 16px;
  margin-bottom: 20px;
  box-shadow: var(--bl-shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

.bl-sb-lead-post {
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: #0f172a;
  position: relative;
}

.bl-sb-lead-media {
  display: block;
  position: relative;
  height: 140px;
  overflow: hidden;
}

.bl-sb-lead-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bl-sb-lead-post:hover .bl-sb-lead-img {
  transform: scale(1.05);
}

.bl-sb-sub-list, .bl-sb-compact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bl-sb-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bl-border, #e2e8f0);
}

.bl-sb-sub-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.bl-sb-sub-thumb-link {
  flex-shrink: 0;
  width: 60px;
  height: 46px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  background: #f1f5f9;
}

.bl-sb-sub-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.bl-sb-sub-item:hover .bl-sb-sub-thumb {
  transform: scale(1.08);
}

.bl-sb-sub-info {
  flex: 1;
}

.bl-sb-sub-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 3px;
}

.bl-sb-sub-title a {
  color: var(--bl-text, #1e293b);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bl-sb-sub-title a:hover {
  color: var(--bl-primary, #cc0000);
}

.bl-sb-time {
  font-size: 10.5px;
  color: var(--bl-text-muted, #64748b);
}

/* Ranked Numbered List (01, 02, 03...) */
.bl-sb-ranked-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl-sb-ranked-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bl-border, #e2e8f0);
}

.bl-sb-ranked-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.bl-sb-rank-badge {
  font-size: 16px;
  font-weight: 900;
  color: var(--bl-primary, #cc0000);
  font-family: sans-serif;
  min-width: 22px;
}

.bl-sb-ranked-title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 3px;
}

.bl-sb-ranked-title a {
  color: var(--bl-text, #1e293b);
  text-decoration: none;
}

.bl-sb-ranked-title a:hover {
  color: var(--bl-primary, #cc0000);
}

/* ======================================================
   15. BULLETPROOF MOBILE RESPONSIVE ENGINE (ZERO OVERFLOW)
   ====================================================== */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bl-site-wrapper, .bl-main-wrapper {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

.bl-container {
  width: 100% !important;
  max-width: 1260px;
  padding: 0 12px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .bl-layout-grid {
    grid-template-columns: 100% !important;
    gap: 20px;
    width: 100% !important;
  }
  .bl-primary-content, .bl-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .bl-style-magazine-wrap {
    grid-template-columns: 100% !important;
    gap: 10px;
    width: 100% !important;
  }
  .bl-mag-lead-card {
    min-height: 200px !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .bl-mag-lead-card img {
    height: 210px !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .bl-mag-list-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .bl-mag-list-title {
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
  }
  .bl-mag-list-thumb {
    width: 75px !important;
    height: 55px !important;
    flex-shrink: 0 !important;
  }
  .bl-cat-grid-4, .bl-cat-grid-3, .bl-video-grid-modern {
    grid-template-columns: 100% !important;
    gap: 12px !important;
  }
  .bl-section-heading {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .bl-section-title {
    font-size: 17px !important;
    word-break: break-word !important;
  }
  .bl-state-block-wrap, .bl-state-content-grid {
    width: 100% !important;
    max-width: 100% !important;
  }
  .bl-vsh-container, .bl-sports-widget-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .bl-vsh-body-grid, .bl-sports-body-grid {
    grid-template-columns: 100% !important;
  }
  .bl-breaking-bar {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .bl-site-title {
    font-size: 22px !important;
  }
  .bl-tagline {
    font-size: 11px !important;
  }
  .bl-container {
    padding: 0 10px !important;
  }
  .bl-lead-story-headline {
    font-size: 17px !important;
    line-height: 1.3 !important;
  }
  .bl-lead-story-img {
    height: 190px !important;
  }
  .bl-numbered-news-list {
    gap: 8px !important;
  }
  .bl-numbered-title {
    font-size: 13px !important;
  }
  .bl-mag-lead-title {
    font-size: 14.5px !important;
  }
  .bl-vsh-title, .bl-sports-widget-header h3 {
    font-size: 15px !important;
  }
}


