/* =========================================================
   NEWS SITE CLEAN MAIN CSS
   Merged from main.css + responsive.css, duplicates removed.
========================================================= */

/* =========================================================
   VARIABLES
========================================================= */

:root {
  --ns-red: #e30613;
  --ns-red-dark: #b9000b;
  --ns-black: #050505;
  --ns-dark: #111111;
  --ns-text: #151515;
  --ns-muted: #6b7280;
  --ns-light: #f7f7f7;
  --ns-border: #e5e7eb;
  --ns-white: #ffffff;
  --ns-green: #003f2d;
  --ns-gold: #d9a441;
  --ns-header-topbar-bg: #ffffff;
  --ns-navbar-bg: #8f0000;

  --ns-radius-xs: 4px;
  --ns-radius-sm: 6px;
  --ns-radius-md: 10px;
  --ns-radius-lg: 16px;

  --ns-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --ns-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.10);

  --ns-container: 1500px;
}

/* =========================================================
   RESET / BASE
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--ns-white);
  color: var(--ns-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Bengali", "Noto Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .ns-header {
  margin-top: 32px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: var(--ns-red);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin-top: 0;
}

.screen-reader-text,
.skip-link {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 999999;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: #fff;
  color: #111;
  border-radius: 6px;
  box-shadow: var(--ns-shadow-md);
}

/* =========================================================
   GLOBAL LAYOUT
========================================================= */

.ns-container {
  width: min(100% - 64px, var(--ns-container));
  margin-inline: auto;
}

.ns-section {
  margin-top: 22px;
}

.ns-site-main {
  min-height: 60vh;
}

.ns-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.ns-content-area,
.ns-sidebar,
.ns-single-article,
.ns-page-article {
  min-width: 0;
}

.ns-grid-3,
.ns-grid-4,
.ns-grid-5,
.ns-category-grid,
.ns-archive-grid,
.ns-video-page-grid,
.ns-gallery-page-grid,
.ns-epaper-grid,
.ns-advertise-grid,
.ns-gallery-single-grid {
  display: grid;
  gap: 18px;
}

.ns-grid-3,
.ns-category-grid,
.ns-archive-grid,
.ns-video-page-grid,
.ns-gallery-page-grid,
.ns-epaper-grid,
.ns-advertise-grid,
.ns-gallery-single-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ns-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ns-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* =========================================================
   TOP BAR
========================================================= */

.ns-topbar {
  background: #000;
  color: #fff;
  font-size: 13px;
}

.ns-topbar-inner {
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.ns-topbar-left,
.ns-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ns-topbar span,
.ns-topbar a {
  color: #fff;
  opacity: 0.92;
  white-space: nowrap;
}

.ns-topbar a:hover {
  color: var(--ns-red);
  opacity: 1;
}

.ns-topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
}

.ns-socials,
.ns-footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ns-socials a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
}

.ns-socials a:hover {
  background: var(--ns-red);
  color: #fff;
}

.ns-socials a svg,
.ns-footer-socials a svg {
  fill: currentColor;
  display: block;
}

.ns-socials a svg {
  width: 14px;
  height: 14px;
}

/* =========================================================
   HEADER
========================================================= */

.ns-header {
  background: #fff;
  border-bottom: 1px solid var(--ns-border);
}

.ns-brand-area {
  background: #fff;
}

.ns-brand-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: 320px 1fr 250px;
  align-items: center;
  gap: 24px;
  position: relative;
}

.ns-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.ns-logo-link img,
.ns-logo-img {
  max-height: 76px;
  width: auto;
}

.ns-logo-link .ns-logo-img-dark {
  display: none;
}

.ns-text-logo {
  display: inline-flex;
  align-items: center;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: #111;
}

.ns-text-logo span {
  color: var(--ns-red);
}

.ns-brand-text,
.ns-site-tagline {
  display: none !important;
}

.ns-header-art {
  height: 100%;
  min-height: 95px;
  background:
    radial-gradient(circle at 50% 54%, rgba(227, 6, 19, 0.95) 0 28px, transparent 29px),
    linear-gradient(to right, transparent, rgba(0, 0, 0, 0.04), transparent);
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  position: relative;
  border-radius: var(--ns-radius-md);
  overflow: hidden;
}

.ns-header-art::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 280px;
  height: 58px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(0, 0, 0, 0.10) 8% 9%, transparent 9% 18%, rgba(0, 0, 0, 0.10) 18% 19%, transparent 19% 29%, rgba(0, 0, 0, 0.10) 29% 30%, transparent 30% 40%, rgba(0, 0, 0, 0.10) 40% 41%, transparent 41% 100%);
  clip-path: polygon(0 100%, 12% 40%, 22% 100%, 34% 30%, 46% 100%, 58% 18%, 70% 100%, 82% 42%, 100% 100%);
}

.ns-tv-button {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #050505;
  color: #fff;
  border-radius: 10px;
  padding: 13px 20px;
  box-shadow: var(--ns-shadow-sm);
  min-width: 225px;
}

.ns-tv-button:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--ns-shadow-md);
}

.ns-tv-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ns-red);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.ns-tv-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.ns-tv-title {
  display: block;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 900;
}

.ns-tv-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.85;
}

/* =========================================================
   RED HEADER + OPTIMIZED NAVIGATION / DROPDOWN / MEGA MENU
========================================================= */

.ns-red-header {
  background: var(--ns-header-topbar-bg);
  border-bottom: 0;
}

.ns-red-header-main {
  background: var(--ns-header-topbar-bg);
  color: var(--ns-dark);
}

.ns-red-header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.ns-red-header-inner.has-header-banner {
  grid-template-columns: 260px minmax(320px, 1fr) auto;
}

.ns-red-logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.ns-red-logo img {
  max-height: 76px;
  width: auto;
}

.ns-red-logo .ns-text-logo {
  color: var(--ns-dark);
  font-size: 34px;
}

.ns-red-logo .ns-text-logo span {
  color: var(--ns-red);
}

.ns-red-header-banner {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ns-red-header-banner > img,
.ns-red-header-banner picture,
.ns-red-header-banner .ns-sponsor,
.ns-red-header-banner .ns-sponsor a {
  display: block;
  width: 100%;
}

.ns-red-header-banner > img,
.ns-red-header-banner .ns-sponsor img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.ns-red-header-banner .ns-sponsor {
  max-width: 760px;
  height: 82px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ns-red-header-banner .ns-sponsor picture,
.ns-red-header-banner .ns-sponsor a {
  height: 100%;
}

.ns-red-header-banner .ns-sponsor img {
  height: 100%;
}

.ns-red-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.ns-red-search-form {
  width: min(100%, 230px);
  height: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.ns-red-search-form input {
  width: 100%;
  height: 34px;
  border: 0;
  outline: none;
  padding: 0 10px 0 16px;
  background: transparent;
  color: #111;
  font-size: 13px;
}

.ns-red-search-form button {
  width: 38px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ns-green);
}

.ns-red-search-form button:hover {
  color: var(--ns-green);
}

.ns-red-search-form svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.ns-color-mode-toggle {
  height: 30px;
  min-width: 78px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--ns-green) 22%, transparent);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #fff;
  color: var(--ns-green);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.10);
  white-space: nowrap;
}

.ns-color-mode-toggle:hover {
  background: color-mix(in srgb, var(--ns-green) 8%, #fff);
}

.ns-color-mode-icon {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.ns-color-mode-icon::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
}

.ns-red-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ns-red-socials a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ns-green);
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--ns-green) 22%, transparent);
  border-radius: 50%;
}

.ns-red-socials a:hover {
  background: color-mix(in srgb, var(--ns-green) 8%, #fff);
  color: var(--ns-green);
}

.ns-red-socials svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.ns-live-button {
  height: 28px;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--ns-green) 22%, transparent);
  background: #fff;
  color: var(--ns-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.ns-live-button:hover {
  color: var(--ns-green);
  background: color-mix(in srgb, var(--ns-green) 8%, #fff);
}

.ns-live-button span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ns-green);
}

.ns-red-header .ns-brand-area,
.ns-red-header .ns-brand-row,
.ns-red-header .ns-header-art,
.ns-red-header .ns-tv-button {
  display: none !important;
}

.ns-nav {
  position: relative;
  z-index: 999;
  background: #fff;
  border-top: 1px solid var(--ns-border);
  border-bottom: 1px solid var(--ns-border);
}

.ns-red-nav-wrap .ns-nav {
  height: 42px;
  min-height: 42px;
  background: var(--ns-navbar-bg);
  border-top: 2px solid white;
}

.ns-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ns-red-nav-wrap .ns-nav-inner {
  height: 42px;
  min-height: 42px;
  justify-content: flex-start;
  align-items: center;
}

.ns-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  z-index: 999;
}

.ns-red-nav-wrap .ns-menu {
  height: 42px;
  flex: 0 1 auto;
}

.ns-menu li {
  position: relative;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ns-red-nav-wrap .ns-menu > li {
  height: 42px;
  display: flex;
  align-items: center;
}

.ns-menu a {
  display: flex;
  align-items: center;
  color: #111;
  text-decoration: none;
  transition: 0.2s ease;
}

.ns-red-nav-wrap .ns-menu > li > a {
  height: 42px;
  min-height: 42px;
  padding: 0 13px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
  border: 0;
  white-space: nowrap;
}

.ns-red-nav-wrap .ns-menu > li > a:hover,
.ns-red-nav-wrap .ns-menu .current-menu-item > a,
.ns-red-nav-wrap .ns-menu .current_page_item > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.ns-red-nav-wrap .ns-menu > li + li > a {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.ns-menu > li.menu-item-has-children > a {
  position: relative;
  padding-right: 34px;
}

.ns-menu > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.9;
}

.ns-red-nav-wrap .ns-menu > li.menu-item-has-children > a::after {
  border-color: #fff;
}

.ns-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99999;
  display: none;
  width: 230px;
  min-width: 230px;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--ns-shadow-md);
  overflow: visible;
}

.ns-red-nav-wrap .ns-menu > li > .sub-menu {
  top: 42px;
}

.ns-menu li:hover > .sub-menu {
  display: block;
}

.ns-menu .sub-menu li {
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  overflow: visible;
}

.ns-menu .sub-menu a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  padding: 0 40px 0 16px;
  margin: 0;
  color: #222;
  border-bottom: 1px solid var(--ns-border);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.ns-menu .sub-menu a:hover {
  background: #fff3f3;
  color: var(--ns-red);
}

.ns-menu .sub-menu > li:last-child > a {
  border-bottom: 0;
  border-radius: 0 0 10px 10px;
}

.ns-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  right: auto;
  margin: 0;
  border-radius: 0 10px 10px 10px;
}

.ns-menu .sub-menu li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--ns-red);
  border-right: 2px solid var(--ns-red);
  transform: translateY(-50%) rotate(45deg);
}

.ns-menu > li.ns-mega-menu {
  position: static;
}

.ns-menu > li.ns-mega-menu > .sub-menu {
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  min-width: 100%;
  padding: 24px 34px;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 36px;
  border-radius: 0 0 12px 12px;
  align-items: start;
}

.ns-red-nav-wrap .ns-menu > li.ns-mega-menu > .sub-menu {
  top: 42px;
}

.ns-menu > li.ns-mega-menu:hover > .sub-menu {
  display: grid;
}

.ns-menu > li.ns-mega-menu > .sub-menu > li {
  height: auto;
  min-height: 34px;
  max-height: none;
}

.ns-menu > li.ns-mega-menu > .sub-menu > li > a {
  height: auto;
  min-height: 34px;
  max-height: none;
  padding: 6px 36px 6px 0;
  border-bottom: 0;
  white-space: normal;
}

.ns-menu > li.ns-mega-menu > .sub-menu > li > .sub-menu {
  top: 0;
  left: 100%;
  right: auto;
  width: 230px;
  min-width: 230px;
  margin: 0 0 0 8px;
  padding: 0;
  border-radius: 0 10px 10px 10px;
}

.ns-menu > li.ns-mega-menu > .sub-menu > li:hover > .sub-menu {
  display: block;
}

.ns-menu > li.ns-mega-menu > .sub-menu > li > .sub-menu > li {
  height: 46px;
  min-height: 46px;
  max-height: 46px;
}

.ns-menu > li.ns-mega-menu > .sub-menu > li > .sub-menu a {
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  padding: 0 40px 0 16px;
  border-bottom: 1px solid var(--ns-border);
  white-space: nowrap;
}

.ns-search-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ns-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #222;
  flex: 0 0 auto;
}

.ns-search-toggle:hover {
  background: var(--ns-red);
  color: #fff;
  border-color: var(--ns-red);
}

.ns-red-nav-wrap .ns-search-toggle {
  display: none;
}

.ns-mobile-menu-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: none;
  place-items: center;
  border: 1px solid var(--ns-border);
  background: #fff;
  transition: 0.2s ease;
}

.ns-mobile-menu-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  margin: 0;
  display: block;
  border-radius: 20px;
  background: #111;
  transition: 0.22s ease;
}

.ns-mobile-menu-toggle span:nth-child(1) {
  top: 16px;
}

.ns-mobile-menu-toggle span:nth-child(2) {
  display: none;
}

.ns-mobile-menu-toggle span:nth-child(3) {
  top: 24px;
}

.ns-mobile-menu-toggle.active {
  background: var(--ns-red);
  border-color: var(--ns-red);
}

.ns-mobile-menu-toggle.active span {
  background: #fff;
}

.ns-mobile-menu-toggle.active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.ns-mobile-menu-toggle.active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.ns-submenu-toggle {
  display: none;
}

.ns-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ns-red);
  color: #fff;
  box-shadow: var(--ns-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.22s ease;
}

.ns-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ns-back-to-top:hover {
  background: var(--ns-red-dark);
  color: #fff;
}

.ns-back-to-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ns-topbar-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ns-topbar-date-separator {
  opacity: 0.45;
}

.ns-topbar-bangla-date {
  opacity: 0.95;
}
/* =========================================================
   BREAKING TICKER
========================================================= */

.ns-breaking-ticker {
  background: #fff;
  border-bottom: 1px solid var(--ns-border);
}

.ns-breaking-inner {
  height: 44px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.ns-breaking-label {
  height: 30px;
  padding: 0 13px;
  border-radius: 4px;
  background: var(--ns-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.ns-breaking-label .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

.ns-breaking-track-wrap {
  min-width: 0;
  overflow: hidden;
}

.ns-breaking-track {
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
  animation: nsTicker 32s linear infinite;
}

.ns-breaking-slow .ns-breaking-track {
  animation-duration: 45s;
}

.ns-breaking-fast .ns-breaking-track {
  animation-duration: 22s;
}

.ns-breaking-track:hover {
  animation-play-state: paused;
}

.ns-breaking-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 14px;
  font-weight: 700;
}

.ns-breaking-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ns-red);
  flex: 0 0 auto;
}

@keyframes nsTicker {
  from {
    transform: translateX(20%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* =========================================================
   SPONSORS / IMAGE ADS
========================================================= */

.ns-sponsor {
  display: block;
  overflow: hidden;
  border-radius: var(--ns-radius-md);
  color: #fff;
  box-shadow: var(--ns-shadow-sm);
}

.ns-sponsor a {
  display: block;
}

.ns-sponsor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ns-sponsor-wide {
  margin: 22px 0;
}

.ns-sidebar-sponsor {
  margin-bottom: 22px;
}

.ns-sponsor-placeholder,
.ns-sponsor-placeholder-wrap {
  display: none !important;
}

/* =========================================================
   HOMEPAGE HERO
========================================================= */

.ns-homepage .ns-main-layout,
.news-site-home .ns-main-layout,
.home .ns-homepage .ns-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.ns-homepage .ns-hero-grid,
.news-site-home .ns-hero-grid,
.home .ns-homepage .ns-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 0;
}

.ns-homepage .ns-hero-grid.has-special-posts:not(.has-lead-posts),
.news-site-home .ns-hero-grid.has-special-posts:not(.has-lead-posts),
.home .ns-homepage .ns-hero-grid.has-special-posts:not(.has-lead-posts) {
  grid-template-columns: minmax(0, 1fr);
}

.ns-homepage .ns-hero-grid.has-lead-posts:not(.has-special-posts),
.news-site-home .ns-hero-grid.has-lead-posts:not(.has-special-posts),
.home .ns-homepage .ns-hero-grid.has-lead-posts:not(.has-special-posts) {
  grid-template-columns: minmax(0, 1fr);
}

.ns-hero-grid.has-lead-posts:not(.has-special-posts) .ns-hero-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
}

.ns-featured-slider,
.ns-featured-slides {
  position: relative;
  height: 100%;
}

.ns-featured-slider {
  touch-action: pan-y;
}

.ns-featured-slide {
  display: none;
  height: 100%;
}

.ns-featured-slide.active {
  display: block;
}

.ns-featured-card {
  display: block;
  position: relative;
  height: 430px;
  min-height: 430px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  background: #111;
  box-shadow: var(--ns-shadow-sm);
}

.ns-featured-card:hover {
  color: #fff;
}

.ns-featured-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: 0.35s ease;
}

.ns-featured-card:hover img {
  transform: scale(1.04);
}

.ns-featured-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 120px 30px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96), transparent);
}

.ns-tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 10px;
  background: var(--ns-red);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.ns-featured-title {
  max-width: 680px;
  margin: 0;
  font-size: 32px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.ns-featured-meta {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.ns-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.ns-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.65);
}

.ns-slider-dots button.active {
  background: var(--ns-red);
}

.ns-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 38px;
  height: 46px;
  transform: translateY(-50%);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: 0.2s ease;
}

.ns-featured-slider:hover .ns-slider-arrow {
  opacity: 1;
}

.ns-slider-prev {
  left: 14px;
}

.ns-slider-next {
  right: 14px;
}

.ns-slider-arrow:hover {
  background: var(--ns-red);
}

.ns-hero-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
}

.ns-mini-post {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 13px;
  min-height: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ns-border);
}

.ns-mini-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ns-mini-thumb,
.ns-category-mini-thumb,
.ns-sidebar-news-thumb,
.ns-video-list-thumb {
  overflow: hidden;
  display: block;
  background: var(--ns-light);
}

.ns-mini-thumb {
  width: 112px;
  height: 86px;
  border-radius: 7px;
}

.ns-mini-thumb img,
.ns-category-mini-thumb img,
.ns-sidebar-news-thumb img,
.ns-video-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ns-mini-category {
  display: block;
  color: var(--ns-red);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 2px;
}

.ns-mini-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.34;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.ns-date {
  margin-top: 5px;
  display: block;
  font-size: 12px;
  color: var(--ns-muted);
}

/* =========================================================
   SECTION HEADERS
========================================================= */

.ns-section-header {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ns-section-title,
.ns-sidebar-news-title {
  margin: 0;
  position: relative;
  padding-left: 13px;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.ns-sidebar-news-title {
  margin-bottom: 16px;
  font-size: 19px;
}

.ns-section-title::before,
.ns-sidebar-news-title::before {
  content: "";
  width: 4px;
  height: 21px;
  background: var(--ns-red);
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 1px;
}

.ns-see-all {
  color: var(--ns-muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.ns-see-all:hover {
  color: var(--ns-red);
}

/* =========================================================
   POST CARDS / CATEGORY BLOCKS
========================================================= */

.ns-post-card,
.ns-category-card,
.ns-video-archive-card,
.ns-gallery-card,
.ns-epaper-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--ns-radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
  transition: 0.2s ease;
}

.ns-post-card:hover,
.ns-video-archive-card:hover,
.ns-gallery-card:hover,
.ns-epaper-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ns-shadow-sm);
}

.ns-post-card-thumb,
.ns-category-card-thumb {
  overflow: hidden;
  background: var(--ns-light);
  display: block;
}

.ns-post-card-thumb {
  height: 150px;
}

.ns-category-card-thumb {
  height: 175px;
}

.ns-post-card-thumb img,
.ns-category-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.ns-post-card:hover .ns-post-card-thumb img {
  transform: scale(1.04);
}

.ns-post-card-body {
  padding: 10px 12px 12px;
}

.ns-category-card-body {
  padding: 12px 14px 14px;
}

.ns-post-card-category {
  display: block;
  margin-bottom: 4px;
  color: var(--ns-red);
  font-size: 12px;
  font-weight: 900;
}

.ns-post-card-title,
.ns-category-card-title {
  margin: 0;
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.ns-post-card-title {
  font-size: 15px;
}

.ns-category-card-title {
  font-size: 19px;
}

.ns-homepage .ns-category-grid,
.news-site-home .ns-category-grid,
.home .ns-homepage .ns-category-grid {
  gap: 28px;
}

.ns-category-block {
  min-width: 0;
}

.ns-category-mini-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ns-category-mini-post {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ns-border);
}

.ns-category-mini-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ns-category-mini-thumb {
  width: 86px;
  height: 72px;
  border-radius: 8px;
}

.ns-category-mini-post h4 {
  margin: 0;
  font-size: 15px;
  line-height: 1.38;
  font-weight: 900;
}

.ns-category-empty {
  padding: 18px;
  border: 1px dashed var(--ns-border);
  border-radius: 8px;
  color: var(--ns-muted);
  font-size: 14px;
  background: #fafafa;
}

/* =========================================================
   SIDEBAR
========================================================= */

.ns-sidebar {
  align-self: start;
}

.ns-sidebar-widget {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--ns-radius-md);
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
  margin-bottom: 22px;
}

.ns-widget-title,
.ns-popular-title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 950;
}

.ns-popular-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ns-popular-title::before {
  content: "🔥";
  font-size: 24px;
}

.ns-sidebar-news-list,
.ns-popular-list,
.ns-video-list {
  display: flex;
  flex-direction: column;
}

.ns-sidebar-news-list,
.ns-popular-list {
  gap: 13px;
}

.ns-sidebar-news-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 11px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--ns-border);
}

.ns-sidebar-news-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ns-sidebar-news-thumb {
  width: 86px;
  height: 68px;
  border-radius: 7px;
}

.ns-sidebar-news-item h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.38;
  font-weight: 900;
}

.ns-popular-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--ns-border);
}

.ns-popular-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ns-popular-number {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ns-green);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.ns-popular-item h3,
.ns-popular-item h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 850;
  letter-spacing: -0.2px;
}

.ns-sidebar-button {
  margin-top: 16px;
  min-height: 42px;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #555;
  font-size: 13px;
  font-weight: 850;
}

.ns-sidebar-button:hover {
  color: #fff;
  background: var(--ns-red);
  border-color: var(--ns-red);
}

.ns-sidebar .widget_search,
.ns-sidebar .widget_recent_entries,
.ns-sidebar .widget_recent_comments,
.ns-sidebar .widget_recent-posts,
.ns-sidebar .widget_recent-comments {
  display: none !important;
}

/* =========================================================
   WEBSITE TV / VIDEO COMPONENTS
========================================================= */

.ns-video-card {
  border-radius: var(--ns-radius-md);
  overflow: hidden;
  background: #080808;
  color: #fff;
}

.ns-video-card a {
  color: #fff;
}

.ns-video-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
  display: block;
}

.ns-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ns-live-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ns-red);
  color: #fff;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.ns-play-circle {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.ns-play-circle::before,
.ns-tv-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.ns-video-body {
  padding: 14px;
}

.ns-video-title {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 850;
  letter-spacing: -0.2px;
}

.ns-video-button {
  min-height: 40px;
  border-radius: 6px;
  background: var(--ns-red);
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 950;
}

.ns-video-list {
  margin-top: 15px;
  gap: 12px;
}

.ns-video-list-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 11px;
  align-items: start;
}

.ns-video-list-thumb {
  height: 58px;
  border-radius: var(--ns-radius-sm);
  position: relative;
}

.ns-video-duration {
  position: absolute;
  right: 4px;
  bottom: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 10px;
}

.ns-video-list-title {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.ns-video-page-grid,
.ns-gallery-page-grid,
.ns-epaper-grid {
  margin-top: 22px;
}

.ns-video-archive-thumb,
.ns-gallery-thumb,
.ns-epaper-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ns-light);
}

.ns-video-archive-thumb {
  height: 220px;
  background: #000;
}

.ns-gallery-thumb {
  height: 220px;
}

.ns-epaper-cover {
  height: 260px;
}

.ns-video-archive-thumb img,
.ns-gallery-thumb img,
.ns-epaper-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ns-video-archive-body,
.ns-gallery-body,
.ns-epaper-body {
  padding: 14px;
}

.ns-video-archive-title,
.ns-gallery-title,
.ns-epaper-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
}

.ns-gallery-badge,
.ns-epaper-badge {
  position: absolute;
  padding: 5px 10px;
  background: var(--ns-red);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.ns-gallery-badge {
  left: 12px;
  bottom: 12px;
}

.ns-epaper-badge {
  left: 12px;
  top: 12px;
}

.ns-gallery-meta,
.ns-epaper-meta {
  margin-top: 8px;
  color: var(--ns-muted);
  font-size: 13px;
}

/* =========================================================
   WIDE / SPECIAL CARDS
========================================================= */

.ns-wide-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ns-wide-card {
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  background: #fff;
}

.ns-wide-card-thumb {
  height: 130px;
  overflow: hidden;
  display: block;
}

.ns-wide-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ns-wide-card-body {
  padding: 14px;
}

.ns-wide-card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
}

.ns-bullets {
  margin-top: 10px;
}

.ns-bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: #333;
  margin-top: 4px;
}

.ns-bullets li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--ns-green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* =========================================================
   SINGLE POST / SINGLE CUSTOM POSTS
========================================================= */

.ns-single-wrap,
.ns-page-wrap {
  margin-top: 24px;
}

.ns-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}

.ns-single-category {
  display: inline-flex;
  color: var(--ns-red);
  font-weight: 950;
  margin-bottom: 8px;
}

.ns-single-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.ns-single-subtitle {
  margin: 12px 0 0;
  color: #444;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.ns-single-meta {
  margin-top: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ns-border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--ns-muted);
  font-size: 14px;
}

.ns-single-sponsor {
  margin: 20px 0;
}

.ns-single-featured {
  margin-top: 22px;
  border-radius: var(--ns-radius-md);
  overflow: hidden;
}

.ns-single-featured img {
  width: 100%;
  height: auto;
}

.ns-news-highlights {
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: var(--ns-radius-md);
  background: #fff7f7;
  border-left: 4px solid var(--ns-red);
}

.ns-news-highlights h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 950;
}

.ns-news-highlights li {
  position: relative;
  padding-left: 18px;
  margin-top: 8px;
  font-weight: 700;
}

.ns-news-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ns-red);
}

.ns-single-video {
  margin-top: 24px;
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--ns-radius-md);
  overflow: hidden;
  background: #000;
}

.ns-single-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ns-single-content,
.ns-page-content {
  margin-top: 24px;
  line-height: 1.85;
}

.ns-single-content {
  font-size: 18px;
}

.ns-page-content {
  font-size: 17px;
}

.ns-single-content p {
  margin-bottom: 18px;
}

.ns-single-content h2,
.ns-single-content h3,
.ns-single-content h4,
.ns-page-content h2,
.ns-page-content h3 {
  line-height: 1.35;
  margin: 28px 0 14px;
}

.ns-single-content img {
  border-radius: var(--ns-radius-sm);
}

.ns-single-share {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.ns-single-share span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-weight: 950;
  line-height: 1;
}

.ns-single-share a,
.ns-single-share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 6px;
  background: var(--ns-light);
  color: #111;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.ns-single-share a:hover,
.ns-single-share button:hover {
  background: var(--ns-red);
  color: #fff;
}

.ns-single-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ns-single-tags a {
  padding: 6px 10px;
  background: var(--ns-light);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

.ns-post-navigation {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--ns-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  font-weight: 850;
}

.ns-next-post {
  text-align: right;
}

.ns-video-live-meta {
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--ns-red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.ns-gallery-single-item {
  display: block;
  height: 230px;
  overflow: hidden;
  border-radius: var(--ns-radius-md);
  background: var(--ns-light);
  box-shadow: var(--ns-shadow-sm);
}

.ns-gallery-single-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.ns-gallery-single-item:hover img {
  transform: scale(1.05);
}

.ns-epaper-single-box {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-md);
  background: #fff;
  box-shadow: var(--ns-shadow-sm);
}

.ns-epaper-single-cover {
  overflow: hidden;
  border-radius: var(--ns-radius-md);
  background: var(--ns-light);
}

.ns-epaper-single-cover img {
  width: 100%;
  height: auto;
}

.ns-epaper-single-content h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 950;
}

.ns-epaper-single-content p {
  color: var(--ns-muted);
  font-size: 16px;
}

.ns-epaper-single-content .ns-empty-state {
  margin-top: 18px;
  padding: 20px;
}

/* =========================================================
   ARCHIVE / SEARCH / PAGE / 404
========================================================= */

.ns-page-header {
  margin-top: 24px;
  padding: 24px;
  background: var(--ns-light);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-md);
}

.ns-page-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 950;
}

.ns-page-description {
  margin-top: 10px;
  color: var(--ns-muted);
}

.ns-pagination {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.ns-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ns-pagination .page-numbers {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-sm);
  font-weight: 850;
}

.ns-pagination .current,
.ns-pagination .page-numbers:hover {
  background: var(--ns-red);
  color: #fff;
  border-color: var(--ns-red);
}

.ns-empty-state {
  padding: 36px;
  background: var(--ns-light);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-md);
}

.ns-empty-state h2 {
  margin-top: 0;
}

.ns-empty-state a {
  color: var(--ns-red);
  font-weight: 900;
}

.ns-page-featured {
  margin-top: 22px;
  border-radius: var(--ns-radius-md);
  overflow: hidden;
}

.ns-error-wrap {
  padding: 40px 0;
}

.ns-error-page {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 46px 24px;
  border-radius: var(--ns-radius-lg);
  background: var(--ns-light);
  border: 1px solid var(--ns-border);
}

.ns-error-code {
  font-size: 96px;
  line-height: 1;
  font-weight: 950;
  color: var(--ns-red);
}

.ns-error-title {
  margin: 12px 0 8px;
  font-size: 34px;
  font-weight: 950;
}

.ns-error-text {
  color: var(--ns-muted);
}

.ns-error-home-btn {
  margin-top: 18px;
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--ns-red);
  color: #fff;
  font-weight: 950;
}

.ns-error-home-btn:hover {
  color: #fff;
  background: var(--ns-red-dark);
}

/* =========================================================
   SEARCH OVERLAY
========================================================= */

.ns-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ns-search-overlay.active {
  display: flex;
}

.ns-search-box {
  width: min(100%, 620px);
  background: #fff;
  border-radius: var(--ns-radius-lg);
  padding: 28px;
  position: relative;
}

.ns-search-box h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 950;
}

.ns-search-close {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 28px;
  color: #111;
}

.ns-search-form {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.ns-search-form input {
  flex: 1;
  height: 48px;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-sm);
  padding: 0 14px;
  outline: none;
}

.ns-search-form input:focus {
  border-color: var(--ns-red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}

.ns-search-form button {
  height: 48px;
  padding: 0 22px;
  border-radius: var(--ns-radius-sm);
  background: var(--ns-red);
  color: #fff;
  font-weight: 950;
}

/* =========================================================
   CONTACT / ADVERTISE / E-PAPER ACTIONS
========================================================= */

.ns-contact-page,
.ns-advertise-hero {
  display: grid;
  gap: 24px;
}

.ns-contact-page {
  grid-template-columns: 0.9fr 1.1fr;
}

.ns-contact-info-panel,
.ns-contact-content-panel,
.ns-advertise-card {
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-md);
  padding: 24px;
  box-shadow: var(--ns-shadow-sm);
}

.ns-contact-info-panel h2,
.ns-contact-form-placeholder h2 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 950;
}

.ns-contact-page-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ns-contact-page-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.ns-contact-page-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ns-red);
  color: #fff;
  display: grid;
  place-items: center;
}

.ns-contact-page-item strong {
  display: block;
  margin-bottom: 4px;
}

.ns-contact-page-item p {
  margin: 0;
  color: var(--ns-muted);
}

.ns-contact-socials {
  margin-top: 28px;
}

.ns-contact-socials h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.ns-contact-socials div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ns-contact-socials a {
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--ns-light);
  font-size: 13px;
  font-weight: 900;
}

.ns-placeholder-form {
  display: grid;
  gap: 12px;
}

.ns-placeholder-form input,
.ns-placeholder-form textarea {
  width: 100%;
  border: 1px solid var(--ns-border);
  border-radius: 6px;
  padding: 12px;
  background: var(--ns-light);
}

.ns-placeholder-form textarea {
  min-height: 120px;
}

.ns-placeholder-form button {
  min-height: 44px;
  border-radius: 6px;
  background: var(--ns-red);
  color: #fff;
  font-weight: 900;
  opacity: 0.7;
}

.ns-advertise-hero {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 34px;
  border-radius: var(--ns-radius-lg);
  background:
    radial-gradient(circle at 80% 20%, rgba(227, 6, 19, 0.18), transparent 30%),
    linear-gradient(135deg, #080808, #1b1b1b);
  color: #fff;
}

.ns-advertise-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--ns-red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ns-advertise-hero h2 {
  margin: 14px 0 12px;
  max-width: 640px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 950;
}

.ns-advertise-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.ns-advertise-actions,
.ns-epaper-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ns-advertise-primary,
.ns-advertise-secondary,
.ns-epaper-read-btn,
.ns-epaper-download-btn {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.ns-advertise-primary,
.ns-epaper-read-btn {
  background: var(--ns-red);
  color: #fff;
}

.ns-advertise-primary:hover,
.ns-epaper-read-btn:hover {
  color: #fff;
  background: var(--ns-red-dark);
}

.ns-advertise-secondary,
.ns-epaper-download-btn {
  background: #fff;
  color: #111;
}

.ns-advertise-preview {
  display: grid;
  gap: 12px;
}

.ns-ad-preview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ns-ad-preview-card {
  min-height: 120px;
  padding: 18px;
  border-radius: var(--ns-radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.38);
  display: grid;
  place-items: center;
  text-align: center;
}

.ns-ad-preview-wide {
  min-height: 90px;
}

.ns-ad-preview-card span {
  font-size: 13px;
  opacity: 0.8;
}

.ns-ad-preview-card strong {
  display: block;
  font-size: 24px;
  color: var(--ns-gold);
}

.ns-advertise-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 950;
}

.ns-advertise-card p {
  color: var(--ns-muted);
}

.ns-advertise-card strong {
  color: var(--ns-red);
  font-size: 22px;
}

.ns-advertise-content-box {
  padding: 26px;
  background: var(--ns-light);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-md);
}

.ns-advertise-content-box h2 {
  margin-top: 0;
}

.ns-advertise-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.ns-advertise-list li {
  position: relative;
  padding-left: 20px;
}

.ns-advertise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ns-red);
}

/* =========================================================
   CATEGORY PAGES / FILTERS
========================================================= */

.ns-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-md);
  box-shadow: var(--ns-shadow-sm);
}

.ns-category-tabs a {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--ns-light);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

.ns-category-tabs a:hover,
.ns-category-tabs a.active {
  background: var(--ns-red);
  color: #fff;
}

.ns-district-filter {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-md);
  box-shadow: var(--ns-shadow-sm);
}

.ns-district-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 180px;
  gap: 12px;
}

.ns-district-filter select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-weight: 600;
  outline: none;
}

.ns-district-filter select:focus {
  border-color: var(--ns-red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}

.ns-district-filter button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--ns-red);
  color: #fff;
  font-weight: 900;
}

.ns-district-filter button:hover {
  background: var(--ns-red-dark);
}

.ns-filter-active {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #fff7f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 14px;
}

.ns-filter-active strong,
.ns-filter-active a {
  color: var(--ns-red);
  font-weight: 900;
}

/* =========================================================
   CONTENT UTILITIES
========================================================= */

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin-top: 8px;
  color: var(--ns-muted);
  font-size: 13px;
  text-align: center;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0 18px 14px 0;
}

.alignright {
  float: right;
  margin: 0 0 14px 18px;
}

.ns-single-content table,
.ns-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.ns-single-content th,
.ns-single-content td,
.ns-page-content th,
.ns-page-content td {
  border: 1px solid var(--ns-border);
  padding: 10px;
}

.ns-single-content th,
.ns-page-content th {
  background: var(--ns-light);
  font-weight: 900;
}

.ns-single-content blockquote,
.ns-page-content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--ns-red);
  background: #fff7f7;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

/* =========================================================
   FOOTER
========================================================= */

.ns-footer {
  margin-top: 30px;
  background:
    radial-gradient(circle at 62% 45%, rgba(255, 255, 255, 0.06), transparent 25%),
    linear-gradient(135deg, #080808, #171717);
  color: #fff;
}

.ns-footer-main {
  padding: 42px 0 34px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 42px;
}

.ns-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ns-footer-logo img {
  max-height: 82px;
  width: auto;
}

.ns-footer-logo .ns-text-logo {
  color: #fff;
  font-size: 40px;
  letter-spacing: -0.8px;
}

.ns-footer-about {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
}

.ns-footer-socials {
  margin-top: 18px;
  gap: 10px;
}

.ns-footer-socials a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.ns-footer-socials a svg {
  width: 16px;
  height: 16px;
}

.ns-footer-socials a:hover {
  background: var(--ns-red);
  border-color: var(--ns-red);
  color: #fff;
}

.ns-footer-heading {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 950;
}

.ns-footer-menu li {
  margin-bottom: 8px;
}

.ns-footer-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.ns-footer-menu a:hover {
  color: var(--ns-red);
}

.ns-footer-menu.has-arrow a::before {
  content: "›";
  margin-right: 8px;
  color: var(--ns-red);
  font-weight: 950;
}

.ns-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ns-contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.ns-contact-item a {
  color: rgba(255, 255, 255, 0.82);
}

.ns-contact-item a:hover {
  color: var(--ns-red);
}

.ns-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ns-red);
}

.ns-contact-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

.ns-footer-contact-text {
  gap: 8px;
}

.ns-footer-contact-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.65;
}

.ns-footer-contact-text strong {
  color: #fff;
  font-weight: 850;
}

.ns-footer-contact-text a {
  color: rgba(255, 255, 255, 0.84);
}

.ns-footer-contact-text a:hover {
  color: var(--ns-red);
}

.ns-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-align: center;
}

.ns-footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ns-footer-bottom-inner span {
  text-align: center;
}

.ns-footer-bottom-inner a {
  color: #fff;
  font-weight: 800;
}

.ns-footer-bottom-inner a:hover {
  color: var(--ns-red);
}

/* =========================================================
   DARK MODE
========================================================= */

html.ns-dark-mode {
  color-scheme: dark;
  --ns-black: #f8fafc;
  --ns-dark: #f8fafc;
  --ns-text: #e5e7eb;
  --ns-muted: #a1a1aa;
  --ns-light: #1b2029;
  --ns-border: #303743;
  --ns-white: #111827;
  --ns-header-topbar-bg: #101820;
  --ns-shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.28);
  --ns-shadow-md: 0 14px 34px rgba(0, 0, 0, 0.36);
}

html.ns-dark-mode body {
  background: #0b1117;
  color: var(--ns-text);
}

html.ns-dark-mode a:hover {
  color: #ff5964;
}

html.ns-dark-mode .ns-red-header,
html.ns-dark-mode .ns-red-header-main,
html.ns-dark-mode .ns-header,
html.ns-dark-mode .ns-brand-area,
html.ns-dark-mode .ns-breaking-ticker,
html.ns-dark-mode .ns-search-overlay,
html.ns-dark-mode .ns-red-nav-wrap .ns-menu > li > .sub-menu,
html.ns-dark-mode .ns-menu .sub-menu,
html.ns-dark-mode .ns-post-card,
html.ns-dark-mode .ns-category-card,
html.ns-dark-mode .ns-sidebar-widget,
html.ns-dark-mode .ns-contact-info-panel,
html.ns-dark-mode .ns-contact-content-panel,
html.ns-dark-mode .ns-advertise-card,
html.ns-dark-mode .ns-single-article,
html.ns-dark-mode .ns-related-posts,
html.ns-dark-mode .ns-video-archive-body,
html.ns-dark-mode .ns-gallery-body,
html.ns-dark-mode .ns-epaper-body,
html.ns-dark-mode .ns-wide-card-body,
html.ns-dark-mode .ns-page-header,
html.ns-dark-mode .ns-page-article {
  background: #111827;
  color: var(--ns-text);
}

html.ns-dark-mode .ns-footer {
  background: #07100d;
}

html.ns-dark-mode .ns-red-search-form,
html.ns-dark-mode .ns-socials a,
html.ns-dark-mode .ns-red-socials a,
html.ns-dark-mode .ns-live-button,
html.ns-dark-mode .ns-color-mode-toggle,
html.ns-dark-mode .ns-search-form input,
html.ns-dark-mode .ns-contact-form-placeholder input,
html.ns-dark-mode .ns-contact-form-placeholder textarea,
html.ns-dark-mode .ns-single-share {
  background: #0f1720;
  color: var(--ns-text);
  border-color: var(--ns-border);
}

html.ns-dark-mode .ns-red-search-form {
  background: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

html.ns-dark-mode .ns-red-search-form input {
  color: #111;
}

html.ns-dark-mode .ns-red-search-form input::placeholder {
  color: #6b7280;
}

html.ns-dark-mode input::placeholder,
html.ns-dark-mode textarea::placeholder {
  color: #8b949e;
}

html.ns-dark-mode .ns-color-mode-toggle .ns-color-mode-icon::after {
  background: #0f1720;
}

html.ns-dark-mode .ns-color-mode-toggle:hover,
html.ns-dark-mode .ns-red-socials a:hover,
html.ns-dark-mode .ns-live-button:hover {
  background: #172332;
}

html.ns-dark-mode .ns-menu a,
html.ns-dark-mode .ns-menu .sub-menu a,
html.ns-dark-mode .ns-single-content,
html.ns-dark-mode .ns-single-content p,
html.ns-dark-mode .ns-post-card-title a,
html.ns-dark-mode .ns-category-card-title a,
html.ns-dark-mode .ns-mini-title a,
html.ns-dark-mode .ns-sidebar-news-title a,
html.ns-dark-mode .ns-footer-menu a,
html.ns-dark-mode .ns-page-content,
html.ns-dark-mode .ns-page-content p {
  color: var(--ns-text);
}

html.ns-dark-mode .ns-post-card-category,
html.ns-dark-mode .ns-mini-category,
html.ns-dark-mode .ns-section-title,
html.ns-dark-mode .ns-widget-title,
html.ns-dark-mode .ns-footer-heading {
  color: #ff5964;
}

html.ns-dark-mode .ns-breaking-item,
html.ns-dark-mode .ns-single-meta,
html.ns-dark-mode .ns-date,
html.ns-dark-mode .ns-post-card-meta,
html.ns-dark-mode .ns-category-card-meta,
html.ns-dark-mode .ns-footer-about,
html.ns-dark-mode .ns-footer-bottom-inner span {
  color: var(--ns-muted);
}

html.ns-dark-mode .ns-menu .sub-menu a:hover,
html.ns-dark-mode .ns-single-tags a,
html.ns-dark-mode .ns-single-share a,
html.ns-dark-mode .ns-single-share button,
html.ns-dark-mode .ns-related-posts,
html.ns-dark-mode .ns-page-links,
html.ns-dark-mode .ns-news-highlights,
html.ns-dark-mode .ns-single-content th,
html.ns-dark-mode .ns-single-content blockquote,
html.ns-dark-mode .ns-mini-thumb,
html.ns-dark-mode .ns-category-mini-thumb,
html.ns-dark-mode .ns-sidebar-news-thumb,
html.ns-dark-mode .ns-video-list-thumb,
html.ns-dark-mode .ns-post-card-thumb,
html.ns-dark-mode .ns-category-card-thumb {
  background: var(--ns-light);
}

html.ns-dark-mode .ns-single-content th,
html.ns-dark-mode .ns-single-content td,
html.ns-dark-mode .ns-single-content table,
html.ns-dark-mode .ns-single-share,
html.ns-dark-mode .ns-single-meta,
html.ns-dark-mode .ns-mini-post,
html.ns-dark-mode .ns-sidebar-news-item,
html.ns-dark-mode .ns-footer-menu li,
html.ns-dark-mode .ns-post-navigation {
  border-color: var(--ns-border);
}

html.ns-dark-mode .ns-single-share a:hover,
html.ns-dark-mode .ns-single-share button:hover,
html.ns-dark-mode .ns-single-tags a:hover {
  background: var(--ns-red);
  color: #fff;
}

html.ns-dark-mode .ns-red-logo .ns-text-logo,
html.ns-dark-mode .ns-footer-logo .ns-text-logo {
  color: var(--ns-text);
}

html.ns-dark-mode .ns-red-nav-wrap .ns-menu > li + li > a {
  border-left-color: transparent;
}

html.ns-dark-mode .ns-menu .sub-menu a {
  border-bottom-color: transparent;
}

html.ns-dark-mode .ns-logo-link.has-dark-logo .ns-logo-img-light {
  display: none;
}

html.ns-dark-mode .ns-logo-link .ns-logo-img-dark {
  display: block;
}

html.ns-dark-mode .ns-post-card,
html.ns-dark-mode .ns-category-card,
html.ns-dark-mode .ns-video-archive-card,
html.ns-dark-mode .ns-gallery-card,
html.ns-dark-mode .ns-epaper-card,
html.ns-dark-mode .ns-sidebar-widget,
html.ns-dark-mode .ns-contact-info-panel,
html.ns-dark-mode .ns-contact-content-panel,
html.ns-dark-mode .ns-advertise-card,
html.ns-dark-mode .ns-single-share,
html.ns-dark-mode .ns-page-header,
html.ns-dark-mode .ns-page-article {
  border-color: transparent;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1300px) {
  .ns-container {
    width: min(100% - 40px, var(--ns-container));
  }

  .ns-main-layout,
  .ns-homepage .ns-main-layout,
  .news-site-home .ns-main-layout,
  .home .ns-homepage .ns-main-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
  }

  .ns-homepage .ns-hero-grid,
  .news-site-home .ns-hero-grid,
  .home .ns-homepage .ns-hero-grid {
    grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.4fr);
  }

  .ns-mini-post {
    grid-template-columns: 105px 1fr;
  }

  .ns-mini-thumb {
    width: 105px;
    height: 82px;
  }
}

@media (max-width: 1180px) {
  .ns-brand-row {
    grid-template-columns: 280px 1fr 220px;
  }

  .ns-main-layout,
  .ns-single-layout,
  .ns-homepage .ns-main-layout,
  .news-site-home .ns-main-layout,
  .home .ns-homepage .ns-main-layout {
    grid-template-columns: 1fr;
  }

  .ns-homepage .ns-hero-grid,
  .news-site-home .ns-hero-grid,
  .home .ns-homepage .ns-hero-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .ns-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .ns-footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .ns-red-header-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0 14px;
    text-align: center;
  }

  .ns-red-logo {
    width: 100%;
    justify-content: center;
  }

  .ns-red-logo img {
    max-height: 78px;
  }

  .ns-red-header-banner {
    display: none;
  }

  .ns-red-header-tools {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .ns-red-search-form {
    width: min(100%, 220px);
    height: 32px;
    grid-template-columns: minmax(0, 1fr) 36px;
    margin: 0 auto;
  }

  .ns-red-search-form input,
  .ns-red-search-form button {
    height: 32px;
  }

  .ns-red-search-form button {
    width: 36px;
  }

  .ns-red-socials {
    justify-content: center;
    gap: 8px;
    margin-top: 0;
  }

  .ns-color-mode-toggle {
    height: 32px;
  }

  .ns-live-button {
    display: inline-flex;
  }

  .ns-red-nav-wrap .ns-nav {
    height: 58px;
    min-height: 58px;
    background: var(--ns-navbar-bg);
  }

  .ns-red-nav-wrap .ns-nav-inner {
    height: 58px;
    min-height: 58px;
    justify-content: flex-start;
    gap: 0;
  }

  .ns-red-nav-wrap .ns-container {
    width: 100%;
    padding: 0 14px;
  }

  .ns-topbar-inner {
    height: auto;
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .ns-topbar-left,
  .ns-topbar-right {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .ns-homepage .ns-hero-grid,
  .news-site-home .ns-hero-grid,
  .home .ns-homepage .ns-hero-grid,
  .ns-contact-page,
  .ns-advertise-hero,
  .ns-epaper-single-box {
    grid-template-columns: 1fr;
  }

  .ns-category-grid,
  .ns-archive-grid,
  .ns-grid-5,
  .ns-grid-4,
  .ns-grid-3,
  .ns-video-page-grid,
  .ns-gallery-page-grid,
  .ns-epaper-grid,
  .ns-advertise-grid,
  .ns-gallery-single-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-wide-feature-grid {
    grid-template-columns: 1fr;
  }

  .ns-district-filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ns-district-filter button {
    grid-column: 1 / -1;
  }

  .ns-footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .ns-container {
    width: min(100% - 24px, var(--ns-container));
  }

  body.admin-bar .ns-header {
    margin-top: 46px;
  }

  .ns-text-logo {
    font-size: 34px;
  }

  .ns-logo-link img {
    max-height: 64px;
  }

  .ns-tv-button {
    width: 100%;
    justify-content: center;
  }

  .ns-breaking-inner {
    height: auto;
    padding: 8px 0;
    grid-template-columns: 1fr;
  }

  .ns-breaking-label {
    width: max-content;
  }

  .ns-featured-card,
  .ns-featured-card img {
    height: 340px;
    min-height: 340px;
  }

  .ns-featured-overlay {
    padding: 80px 18px 22px;
  }

  .ns-featured-title {
    font-size: 25px;
  }

  .ns-sidebar,
  .ns-category-grid,
  .ns-archive-grid,
  .ns-grid-5,
  .ns-grid-4,
  .ns-grid-3,
  .ns-video-page-grid,
  .ns-gallery-page-grid,
  .ns-epaper-grid,
  .ns-advertise-grid,
  .ns-gallery-single-grid,
  .ns-district-filter-grid {
    grid-template-columns: 1fr;
  }

  .ns-wide-card {
    grid-template-columns: 1fr;
  }

  .ns-wide-card-thumb {
    height: 190px;
  }

  .ns-single-title {
    font-size: 30px;
  }

  .ns-single-subtitle {
    font-size: 17px;
  }

  .ns-single-content {
    font-size: 16px;
    line-height: 1.75;
  }

  .ns-post-navigation {
    grid-template-columns: 1fr;
  }

  .ns-next-post {
    text-align: left;
  }

  .ns-search-form {
    flex-direction: column;
  }

  .ns-search-form button {
    width: 100%;
  }

  .ns-footer-main {
    grid-template-columns: 1fr;
  }

  .ns-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ns-category-tabs {
    gap: 8px;
  }

  .ns-category-tabs a {
    width: calc(50% - 4px);
    padding: 0 10px;
    font-size: 13px;
  }

  .ns-district-filter,
  .ns-contact-info-panel,
  .ns-contact-content-panel {
    padding: 16px;
  }

  .ns-filter-active {
    flex-direction: column;
    align-items: flex-start;
  }

  .ns-video-archive-thumb,
  .ns-gallery-thumb {
    height: 210px;
  }

  .ns-epaper-cover {
    height: 240px;
  }

  .ns-advertise-hero {
    padding: 24px 18px;
  }

  .ns-advertise-hero h2 {
    font-size: 25px;
  }

  .ns-ad-preview-row {
    grid-template-columns: 1fr;
  }

  .ns-gallery-single-item {
    height: 230px;
  }

  .ns-epaper-single-box {
    padding: 18px;
  }

  .ns-epaper-single-content h2 {
    font-size: 23px;
  }
}

@media (max-width: 560px) {
  .ns-red-header-inner {
    padding: 14px 0 12px;
    gap: 10px;
  }

  .ns-red-logo img {
    max-height: 70px;
  }

  .ns-red-search-form {
    width: min(52vw, 200px);
  }

  .ns-red-nav-wrap .ns-container {
    padding: 0 12px;
  }

  .ns-back-to-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }

  .ns-topbar-date {
    flex-wrap: wrap;
    gap: 5px;
  }
}

@media (max-width: 520px) {
  .ns-red-header-tools {
    gap: 7px;
  }

  .ns-red-search-form {
    width: min(100%, 190px);
  }

  .ns-color-mode-toggle {
    width: 34px;
    min-width: 34px;
    padding: 0;
  }

  .ns-color-mode-toggle .ns-color-mode-text {
    display: none;
  }

  .ns-container {
    width: min(100% - 20px, var(--ns-container));
  }

  .ns-topbar {
    font-size: 12px;
  }

  .ns-topbar-left,
  .ns-topbar-right {
    gap: 6px 10px;
  }

  .ns-text-logo {
    font-size: 30px;
  }

  .ns-tv-button {
    padding: 12px 14px;
  }

  .ns-tv-title {
    font-size: 17px;
  }

  .ns-tv-play {
    width: 40px;
    height: 40px;
  }

  .ns-featured-card,
  .ns-featured-card img {
    height: 310px;
    min-height: 310px;
  }

  .ns-featured-title {
    font-size: 22px;
  }

  .ns-featured-meta,
  .ns-single-meta {
    font-size: 12px;
  }

  .ns-section-title {
    font-size: 17px;
  }

  .ns-post-card-thumb,
  .ns-category-card-thumb {
    height: 190px;
  }

  .ns-page-header {
    padding: 18px;
  }

  .ns-page-title {
    font-size: 25px;
  }

  .ns-single-title {
    font-size: 26px;
  }

  .ns-single-share {
    align-items: stretch;
    flex-direction: column;
  }

  .ns-single-share a,
  .ns-single-share button {
    width: 100%;
    display: grid;
    place-items: center;
  }

  .ns-error-code {
    font-size: 72px;
  }

  .ns-error-title {
    font-size: 26px;
  }

  .ns-mini-post {
    grid-template-columns: 100px 1fr;
  }

  .ns-mini-thumb {
    width: 100px;
    height: 78px;
  }
}

@media print {
  .ns-topbar,
  .ns-nav,
  .ns-breaking-ticker,
  .ns-sponsor,
  .ns-sidebar,
  .ns-footer,
  .ns-single-share,
  .ns-post-navigation,
  .ns-related-posts {
    display: none !important;
  }

  .ns-container,
  .ns-single-layout {
    width: 100%;
    display: block;
  }

  .ns-single-title {
    font-size: 30px;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* =========================================================
   MOBILE MENU DRILLDOWN LAYOUT
========================================================= */

@media (max-width: 980px) {
  body.ns-mobile-menu-open {
    overflow: hidden !important;
  }

  body.ns-mobile-menu-open .ns-site-main,
  body.ns-mobile-menu-open .ns-breaking-ticker,
  body.ns-mobile-menu-open .ns-sponsor,
  body.ns-mobile-menu-open .ns-footer {
    pointer-events: none !important;
  }

  .ns-red-nav-wrap,
  .ns-red-nav-wrap .ns-nav,
  .ns-red-nav-wrap .ns-nav-inner {
    position: relative !important;
    z-index: 99999 !important;
  }

  .ns-mobile-menu-toggle,
  .ns-red-nav-wrap .ns-mobile-menu-toggle {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.58) !important;
    display: grid !important;
    place-items: center !important;
    background: transparent !important;
  }

  .ns-red-nav-wrap .ns-mobile-menu-toggle span {
    background: #fff !important;
    left: 11px !important;
    width: 20px !important;
  }

  .ns-red-nav-wrap .ns-mobile-menu-toggle span:nth-child(1) {
    top: 16px !important;
  }

  .ns-red-nav-wrap .ns-mobile-menu-toggle span:nth-child(2) {
    top: 21px !important;
  }

  .ns-red-nav-wrap .ns-mobile-menu-toggle span:nth-child(3) {
    top: 26px !important;
  }

  .ns-red-nav-wrap .ns-mobile-menu-toggle.active {
    background: #fff !important;
    border-color: #fff !important;
  }

  .ns-red-nav-wrap .ns-mobile-menu-toggle.active span {
    background: var(--ns-navbar-bg) !important;
  }

  .ns-red-nav-wrap .ns-mobile-menu-toggle.active span:nth-child(1),
  .ns-red-nav-wrap .ns-mobile-menu-toggle.active span:nth-child(3) {
    top: 21px !important;
  }

  .ns-red-nav-wrap .ns-menu {
    position: fixed !important;
    top: var(--ns-mobile-menu-list-top, 100px) !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100000 !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    pointer-events: auto !important;
    display: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-content: start !important;
    column-gap: 22px !important;
    row-gap: 0 !important;
    padding: 0 22px calc(110px + env(safe-area-inset-bottom, 0px)) !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
  }

  .ns-red-nav-wrap .ns-menu.active {
    display: grid !important;
  }

  .ns-red-nav-wrap .ns-menu > li {
    position: relative !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    background: #fff !important;
    border-bottom: 1px solid #e7e7e7 !important;
  }

  .ns-red-nav-wrap .ns-menu a {
    min-height: 44px !important;
    padding: 10px 36px 10px 0 !important;
    border-bottom: 0 !important;
    color: #111 !important;
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
  }

  .ns-red-nav-wrap .ns-submenu-toggle {
    position: absolute !important;
    top: 6px !important;
    right: -4px !important;
    z-index: 60 !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--ns-red) !important;
    border-radius: 0 !important;
  }

  .ns-red-nav-wrap .ns-submenu-toggle::before {
    content: "" !important;
    display: block !important;
    width: 8px !important;
    height: 8px !important;
    border-right: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;
    transform: rotate(-45deg) !important;
  }

  .ns-red-nav-wrap .ns-menu li.is-open > .ns-submenu-toggle {
    background: transparent !important;
  }

  .ns-red-nav-wrap .ns-menu li.is-open > .ns-submenu-toggle::before {
    transform: rotate(-45deg) !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu {
    display: none !important;
  }

  .ns-red-nav-wrap .ns-menu.ns-menu-drilldown-active > li {
    display: none !important;
  }

  .ns-red-nav-wrap .ns-menu.ns-menu-drilldown-active li.ns-drilldown-path,
  .ns-red-nav-wrap .ns-menu.ns-menu-drilldown-active li.ns-drilldown-current {
    display: contents !important;
    grid-column: 1 / -1 !important;
    border-bottom: 0 !important;
  }

  .ns-red-nav-wrap .ns-menu.ns-menu-drilldown-active li.ns-drilldown-path > a,
  .ns-red-nav-wrap .ns-menu.ns-menu-drilldown-active li.ns-drilldown-path > .ns-submenu-toggle,
  .ns-red-nav-wrap .ns-menu.ns-menu-drilldown-active li.ns-drilldown-current > a,
  .ns-red-nav-wrap .ns-menu.ns-menu-drilldown-active li.ns-drilldown-current > .ns-submenu-toggle {
    display: none !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.ns-drilldown-path-menu {
    display: contents !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.ns-drilldown-path-menu > li {
    display: none !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.ns-drilldown-path-menu > li.ns-drilldown-path,
  .ns-red-nav-wrap .ns-menu .sub-menu.ns-drilldown-path-menu > li.ns-drilldown-current {
    display: contents !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current {
    position: fixed !important;
    top: var(--ns-mobile-menu-list-top, 100px) !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100002 !important;
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-content: start !important;
    column-gap: 22px !important;
    row-gap: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    padding: 0 22px calc(110px + env(safe-area-inset-bottom, 0px)) !important;
    background: #fff !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current > li {
    display: block !important;
    min-width: 0 !important;
    border-bottom: 1px solid #e7e7e7 !important;
    background: #fff !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current > li > a {
    min-height: 44px !important;
    padding: 10px 36px 10px 0 !important;
    background: transparent !important;
    border-bottom: 0 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current > li.menu-item-has-children > a {
    padding-right: 42px !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current > li > .ns-submenu-toggle {
    color: var(--ns-red) !important;
    right: 2px !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current > .ns-submenu-head {
    grid-column: 1 / -1 !important;
    min-height: 60px !important;
    display: grid !important;
    grid-template-columns: 44px 1fr 44px !important;
    align-items: center !important;
    border-bottom: 1px solid #e7e7e7 !important;
  }

  .ns-submenu-back {
    width: 40px !important;
    height: 40px !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    color: #111 !important;
    background: transparent !important;
    border: 0 !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current > .ns-submenu-head span {
    grid-column: 3 !important;
    justify-self: end !important;
    color: #111 !important;
    font-size: 16px !important;
    font-weight: 850 !important;
  }
}

html.ns-dark-mode body {
  background: #0b1117 !important;
}

@media (max-width: 980px) {
  html.ns-dark-mode .ns-red-nav-wrap .ns-menu,
  html.ns-dark-mode .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current {
    background: #111827 !important;
  }

  html.ns-dark-mode .ns-red-nav-wrap .ns-menu > li,
  html.ns-dark-mode .ns-red-nav-wrap .ns-menu li,
  html.ns-dark-mode .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current > li {
    background: #111827 !important;
    border-color: transparent !important;
  }

  html.ns-dark-mode .ns-red-nav-wrap .ns-menu a,
  html.ns-dark-mode .ns-submenu-back,
  html.ns-dark-mode .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current > .ns-submenu-head span {
    color: var(--ns-text) !important;
  }

  html.ns-dark-mode .ns-red-nav-wrap .ns-menu .sub-menu.is-drilldown-current > .ns-submenu-head {
    border-color: transparent !important;
  }
}

