/* ================================================================
   Sakarbharat — Home Newsroom CSS  (Premium Redesign)
   Theme: Red · Black · White · Gold
   Fonts: Noto Serif Devanagari, Noto Sans Devanagari, Source Sans 3
   ================================================================ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --sbn-red:         #c01b1b;
  --sbn-red-dark:    #991414;
  --sbn-red-light:   rgba(192,27,27,.09);
  --sbn-gold:        #c9940a;
  --sbn-gold-light:  rgba(201,148,10,.12);
  --sbn-ink:         #0f172a;
  --sbn-ink-soft:    #374151;
  --sbn-muted:       #6b7280;
  --sbn-border:      #e5e7eb;
  --sbn-bg:          #f7f8fa;
  --sbn-white:       #ffffff;
  --sbn-shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --sbn-shadow-md:   0 4px 14px rgba(0,0,0,.10);
  --sbn-shadow-lg:   0 8px 28px rgba(0,0,0,.13);
  --sbn-radius:      10px;
  --sbn-shell-max:   1280px;
  --sbn-font-sans:   'Source Sans 3', 'Noto Sans Devanagari', system-ui, sans-serif;
  --sbn-font-serif:  'Noto Serif Devanagari', 'Libre Baskerville', Georgia, serif;
}

/* ── Dark Mode Tokens ─────────────────────────────────────────── */

/* ── Shell ─────────────────────────────────────────────────────── */
.sbn-shell {
  max-width: var(--sbn-shell-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Global link reset inside newsroom ─────────────────────────── */
.sbn-home a { color: inherit; }

/* ══════════════════════════════════════════════════════════════
   TOP UTILITY BAR
══════════════════════════════════════════════════════════════ */
.sbn-topbar {
  background: #0d1117;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  height: 34px;
  overflow: hidden;
}
.sbn-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}
.sbn-topbar__left,
.sbn-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sbn-topbar a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .02em;
  transition: color .15s;
}
.sbn-topbar a:hover { color: var(--sbn-gold); }
.sbn-edition {
  background: var(--sbn-red);
  color: #fff;
  padding: 2px 9px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .sbn-topbar__right { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   MASTHEAD
══════════════════════════════════════════════════════════════ */
.sbn-masthead {
  background: var(--sbn-white);
  border-bottom: 3px solid var(--sbn-red);
}
.sbn-masthead__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.sbn-masthead__date {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sbn-date-hi {
  font-size: 13px;
  font-weight: 700;
  color: var(--sbn-ink);
  font-family: var(--sbn-font-sans);
}
.sbn-date-en {
  font-size: 11px;
  color: var(--sbn-muted);
}
.sbn-location {
  font-size: 10.5px;
  color: var(--sbn-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 1px;
}

/* Logo */
.sbn-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.sbn-logo__name {
  font-family: var(--sbn-font-serif);
  font-size: 38px;
  font-weight: 900;
  color: var(--sbn-red);
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(192,27,27,.15);
}
.sbn-logo__rule {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
}
.sbn-logo__rule span {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--sbn-gold), transparent);
  max-width: 80px;
}
.sbn-logo__rule i {
  width: 6px;
  height: 6px;
  background: var(--sbn-gold);
  border-radius: 50%;
  display: block;
  font-style: normal;
  box-shadow: 0 0 0 2px rgba(201,148,10,.2);
}
.sbn-logo__tag {
  font-size: 9.5px;
  color: var(--sbn-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

/* Search + action buttons */
.sbn-masthead__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.sbn-search {
  display: flex;
  border: 1.5px solid var(--sbn-border);
  border-radius: 8px;
  overflow: hidden;
  width: 270px;
  background: var(--sbn-bg);
  transition: border-color .2s, box-shadow .2s;
}
.sbn-search:focus-within {
  border-color: var(--sbn-red);
  box-shadow: 0 0 0 3px rgba(192,27,27,.1);
}
.sbn-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 13px;
  background: transparent;
  color: var(--sbn-ink);
  font-family: var(--sbn-font-sans);
}
.sbn-search input::placeholder { color: var(--sbn-muted); }
.sbn-search button {
  background: var(--sbn-red);
  border: none;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-search button:hover { background: var(--sbn-red-dark); }
.sbn-mast-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sbn-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all .15s;
  font-family: var(--sbn-font-sans);
  white-space: nowrap;
}
.sbn-btn--red { background: var(--sbn-red); color: #fff; }
.sbn-btn--red:hover { background: var(--sbn-red-dark); transform: translateY(-1px); }
.sbn-btn--outline {
  border: 1.5px solid var(--sbn-border);
  color: var(--sbn-ink);
  background: transparent;
}
.sbn-btn--outline:hover { border-color: var(--sbn-red); color: var(--sbn-red); }
.sbn-btn--gold {
  background: linear-gradient(135deg, var(--sbn-gold), #e6aa0d);
  color: #fff;
}
.sbn-btn--gold:hover { opacity: .92; transform: translateY(-1px); }

/* Dark mode button */
.sbn-dark-toggle {
  background: none;
  border: 1.5px solid var(--sbn-border);
  border-radius: 6px;
  width: 34px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--sbn-muted);
  transition: all .15s;
  flex-shrink: 0;
}
.sbn-dark-toggle:hover { border-color: var(--sbn-gold); color: var(--sbn-gold); }

@media (max-width: 900px) {
  .sbn-masthead__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    padding: 12px 0;
  }
  .sbn-masthead__date { align-items: center; }
  .sbn-masthead__actions { align-items: center; }
  .sbn-search { width: 100%; max-width: 340px; }
}

/* ══════════════════════════════════════════════════════════════
   PRIMARY NAV (sticky)
══════════════════════════════════════════════════════════════ */
.sbn-nav {
  background: var(--sbn-red);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(192,27,27,.3);
}
.sbn-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
.sbn-nav__core {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  height: 100%;
}
.sbn-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px 8px 4px;
}
.sbn-nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .2s;
}
.sbn-nav__home {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 0 14px;
  height: 100%;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: background .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-nav__home:hover { background: rgba(0,0,0,.15); }
.sbn-home-ico { font-size: 16px; }
.sbn-home-lbl { font-size: 12.5px; }
.sbn-nav__links {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.sbn-nav__links > a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  padding: 0 10px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-nav__links > a:hover,
.sbn-nav__links > a.is-active {
  background: rgba(0,0,0,.18);
  border-bottom-color: var(--sbn-gold);
  color: #fff;
}
.sbn-nav__tools {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  height: 100%;
}
.sbn-nav-tool {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-nav-tool:hover { background: rgba(0,0,0,.2); }
.sbn-nav-lang {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.35);
  letter-spacing: .04em;
  transition: all .15s;
}
.sbn-nav-lang:hover { background: rgba(0,0,0,.2); border-color: rgba(255,255,255,.6); }

/* Sections dropdown */
.sbn-sections { position: relative; }
.sbn-sections__btn {
  background: rgba(0,0,0,.18);
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-sections__btn:hover,
.sbn-sections__btn[aria-expanded="true"] { background: rgba(0,0,0,.32); }
.sbn-sections__caret { font-style: normal; font-size: 9px; transition: transform .2s; }
.sbn-sections__btn[aria-expanded="true"] .sbn-sections__caret { transform: rotate(180deg); }
.sbn-sections__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--sbn-white);
  border: 1px solid var(--sbn-border);
  border-radius: 12px;
  box-shadow: var(--sbn-shadow-lg);
  width: 360px;
  padding: 8px;
  z-index: 400;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s, transform .18s;
}
.sbn-sections__panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.sbn-sections__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 11px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--sbn-ink);
  transition: background .15s;
}
.sbn-sections__item:hover { background: var(--sbn-red-light); }
.sbn-sections__item strong {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--sbn-font-sans);
}
.sbn-sections__item span {
  font-size: 11px;
  color: var(--sbn-muted);
}

/* Mobile drawer */
.sbn-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
}
.sbn-drawer.is-open { display: block; }
.sbn-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
}
.sbn-drawer__panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  max-width: 88vw;
  background: #fff;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 32px rgba(0,0,0,.25);
}
.sbn-drawer.is-open .sbn-drawer__panel { transform: none; }

/* ── Drawer head ─────────────────────────────────────────────── */
.sbn-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  background: #0f172a;
  color: #fff;
  flex-shrink: 0;
  border-bottom: 3px solid #c01b1b;
}
.sbn-drawer__head strong {
  font-size: 22px;
  font-weight: 900;
  font-family: var(--sbn-font-serif);
  color: #fff;
  letter-spacing: -.3px;
}
.sbn-drawer__close {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.sbn-drawer__close:hover { background: rgba(255,255,255,.22); }

/* ── Drawer nav links ────────────────────────────────────────── */
.sbn-drawer__links {
  display: flex;
  flex-direction: column;
  padding: 10px 10px 4px;
}
.sbn-drawer__links a {
  padding: 12px 14px;
  border-radius: 9px;
  text-decoration: none;
  color: #1a1a2e;
  font-size: 15.5px;
  font-weight: 700;
  transition: background .15s, color .15s;
  font-family: var(--sbn-font-sans);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid transparent;
}
.sbn-drawer__links a:hover,
.sbn-drawer__links a.is-active {
  background: #fff5f5;
  color: #c01b1b;
  border-left-color: #c01b1b;
}

/* ── Section title ───────────────────────────────────────────── */
.sbn-drawer__sec-title {
  margin: 12px 16px 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #aaa;
  font-family: var(--sbn-font-sans);
}

/* ── Sections grid ───────────────────────────────────────────── */
.sbn-drawer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px 10px 10px;
}
.sbn-drawer__grid a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 11px;
  border-radius: 10px;
  background: #f7f8fc;
  text-decoration: none;
  transition: background .15s, box-shadow .15s;
  border: 1px solid rgba(0,0,0,.05);
}
.sbn-drawer__grid a:hover {
  background: #fff0f0;
  box-shadow: 0 2px 8px rgba(192,27,27,.1);
  border-color: rgba(192,27,27,.15);
}
.sbn-drawer__grid a strong {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a2e;
  font-family: var(--sbn-font-sans);
}
.sbn-drawer__grid a span { font-size: 10.5px; color: #999; font-family: var(--sbn-font-sans); }

/* ── Footer ──────────────────────────────────────────────────── */
.sbn-drawer__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 20px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

/* ── Mobile: panel starts below fixed navbar+strip ───────────── */
@media (max-width: 767px) {
  .sbn-drawer { z-index: 900; }
  .sbn-drawer__panel {
    top: calc(54px + 42px);
    width: 85vw;
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .sbn-nav__burger { display: flex; }
  .sbn-nav__links { display: none; }
  .sbn-sections,
  .sbn-nav-tool { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   CITY BAR
══════════════════════════════════════════════════════════════ */
.sbn-citybar {
  background: var(--sbn-white);
  border-bottom: 1px solid var(--sbn-border);
}
.sbn-citybar__inner {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sbn-citybar__inner::-webkit-scrollbar { display: none; }
.sbn-city-lbl {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sbn-muted);
  flex-shrink: 0;
  padding-right: 10px;
  margin-right: 6px;
  border-right: 1px solid var(--sbn-border);
  white-space: nowrap;
}
.sbn-city-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sbn-ink-soft);
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-city-link:hover { color: var(--sbn-red); background: var(--sbn-red-light); }

/* ══════════════════════════════════════════════════════════════
   SEO INTRO BLOCK
══════════════════════════════════════════════════════════════ */
.sbn-intro {
  background: linear-gradient(135deg, #fff8f8 0%, var(--sbn-white) 60%, #fffef5 100%);
  border-bottom: 1px solid var(--sbn-border);
  padding: 18px 0;
}
.sbn-intro__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--sbn-white);
  border: 1px solid var(--sbn-border);
  border-left: 4px solid var(--sbn-red);
  border-radius: var(--sbn-radius);
  padding: 16px 20px;
  box-shadow: var(--sbn-shadow-sm);
}
.sbn-intro__eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--sbn-red);
  margin-bottom: 5px;
}
.sbn-intro__card h1 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--sbn-ink);
  line-height: 1.4;
  font-family: var(--sbn-font-serif);
}
.sbn-intro__card p {
  margin: 0;
  font-size: 13px;
  color: var(--sbn-ink-soft);
  line-height: 1.65;
}
.sbn-intro__links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}
.sbn-intro__links a {
  padding: 5px 13px;
  border-radius: 20px;
  background: var(--sbn-bg);
  color: var(--sbn-ink-soft);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--sbn-border);
  transition: all .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-intro__links a:hover { background: var(--sbn-red); color: #fff; border-color: var(--sbn-red); }
@media (max-width: 700px) {
  .sbn-intro__card { flex-direction: column; gap: 12px; }
}

/* ══════════════════════════════════════════════════════════════
   BREAKING NEWS TICKER
══════════════════════════════════════════════════════════════ */
.sbn-ticker {
  background: #0d1117;
  color: #fff;
  height: 40px;
  overflow: hidden;
  position: relative;
}
.sbn-ticker__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.sbn-ticker__badge {
  background: var(--sbn-red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  font-family: var(--sbn-font-sans);
}
.sbn-ticker__badge::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  border-left: 10px solid var(--sbn-red);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.sbn-ticker__track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 16px;
}
.sbn-ticker__items {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.sbn-ticker__item {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding-right: 40px;
  display: inline-flex;
  align-items: center;
  transition: color .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-ticker__item::before {
  content: '●';
  font-size: 7px;
  color: var(--sbn-gold);
  margin-right: 10px;
  flex-shrink: 0;
}
.sbn-ticker__item:hover { color: var(--sbn-gold); }

/* ══════════════════════════════════════════════════════════════
   QUICK NAV (mobile sticky scroll)
══════════════════════════════════════════════════════════════ */
.sbn-quicknav {
  background: var(--sbn-white);
  border-bottom: 1px solid var(--sbn-border);
  overflow: hidden;
  display: none;
  box-shadow: var(--sbn-shadow-sm);
}
.sbn-quicknav__row {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  height: 44px;
  padding: 0 4px;
}
.sbn-quicknav__row::-webkit-scrollbar { display: none; }
.sbn-quicknav__row a {
  color: var(--sbn-ink-soft);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1.5px solid var(--sbn-border);
  transition: all .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-quicknav__row a:hover { background: var(--sbn-red); color: #fff; border-color: var(--sbn-red); }
@media (max-width: 900px) {
  .sbn-quicknav { display: block; }
}

/* ══════════════════════════════════════════════════════════════
   MAIN CONTENT AREA
══════════════════════════════════════════════════════════════ */
.sbn-main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 26px 0 40px;
}

/* ── Section Header ─────────────────────────────────────────── */
.sbn-sec-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--sbn-red);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.sbn-sec-head__label { flex: 1; min-width: 0; }
.sbn-sec-head__label h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  color: var(--sbn-ink);
  padding-left: 11px;
  border-left: 4px solid var(--sbn-red);
  line-height: 1.2;
  font-family: var(--sbn-font-serif);
}
.sbn-sec-head__tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.sbn-sec-head__tabs button {
  background: none;
  border: 1.5px solid var(--sbn-border);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sbn-muted);
  cursor: pointer;
  transition: all .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-sec-head__tabs button:hover,
.sbn-sec-head__tabs button.is-active {
  background: var(--sbn-red);
  border-color: var(--sbn-red);
  color: #fff;
}
.sbn-sec-head__more {
  color: var(--sbn-red);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-sec-head__more:hover { color: var(--sbn-red-dark); text-decoration: underline; }

/* ── Category badge ─────────────────────────────────────────── */
.sbn-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sbn-red);
  margin-bottom: 4px;
  font-family: var(--sbn-font-sans);
}

/* ── Meta row ───────────────────────────────────────────────── */
.sbn-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: var(--sbn-muted);
  margin-top: 7px;
  flex-wrap: wrap;
  font-family: var(--sbn-font-sans);
}
.sbn-meta-row a {
  color: var(--sbn-red);
  text-decoration: none;
  font-weight: 700;
  transition: color .15s;
}
.sbn-meta-row a:hover { color: var(--sbn-red-dark); text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.sbn-hero {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 18px;
}
@media (max-width: 820px) {
  .sbn-hero { grid-template-columns: 1fr; }
}

.sbn-hero__main {
  display: flex;
  flex-direction: column;
  border-radius: var(--sbn-radius);
  overflow: hidden;
  background: var(--sbn-white);
  box-shadow: var(--sbn-shadow-md);
  transition: box-shadow .2s;
}
.sbn-hero__main:hover { box-shadow: var(--sbn-shadow-lg); }
.sbn-hero__img-wrap {
  position: relative;
  display: block;
  height: 300px;
  background: #1a1a2e;
  overflow: hidden;
  flex-shrink: 0;
}
.sbn-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.sbn-hero__main:hover .sbn-hero__img-wrap img { transform: scale(1.04); }
.sbn-hero__cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sbn-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 11px;
  border-radius: 20px;
  font-family: var(--sbn-font-sans);
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.sbn-hero__body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sbn-hero__title {
  font-family: var(--sbn-font-serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--sbn-ink);
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 10px;
  display: block;
  transition: color .15s;
}
.sbn-hero__title:hover { color: var(--sbn-red); }
.sbn-hero__excerpt {
  margin: 0 0 auto;
  font-size: 14px;
  color: var(--sbn-ink-soft);
  line-height: 1.65;
  font-family: var(--sbn-font-sans);
}
.sbn-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 12px;
  color: var(--sbn-muted);
  font-family: var(--sbn-font-sans);
}
.sbn-hero__read {
  color: var(--sbn-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sbn-hero__read:hover { text-decoration: underline; }

/* Hero right stack */
.sbn-hero__stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sbn-side-story {
  display: flex;
  flex-direction: column;
  background: var(--sbn-white);
  border-radius: var(--sbn-radius);
  overflow: hidden;
  box-shadow: var(--sbn-shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.sbn-side-story:hover { box-shadow: var(--sbn-shadow-md); transform: translateY(-2px); }
.sbn-side-story--img .sbn-side-story__img {
  display: block;
  height: 140px;
  overflow: hidden;
  background: #f3f4f6;
}
.sbn-side-story--img .sbn-side-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.sbn-side-story--img:hover .sbn-side-story__img img { transform: scale(1.06); }
.sbn-side-story--text {
  flex-direction: row;
  align-items: flex-start;
}
.sbn-side-story__thumb {
  width: 90px;
  height: 70px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f3f4f6;
  display: block;
}
.sbn-side-story__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sbn-side-story__body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.sbn-side-story__title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sbn-ink);
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
}
.sbn-side-story__title--lg { font-size: 14.5px; -webkit-line-clamp: 2; line-clamp: 2; }
.sbn-side-story__title:hover { color: var(--sbn-red); }

/* ══════════════════════════════════════════════════════════════
   CENTER SUB-ROW  (4 cards)
══════════════════════════════════════════════════════════════ */
.sbn-sub-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .sbn-sub-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sbn-sub-row { grid-template-columns: 1fr 1fr; gap: 10px; } }

.sbn-sub-card {
  background: var(--sbn-white);
  border-radius: var(--sbn-radius);
  overflow: hidden;
  box-shadow: var(--sbn-shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.sbn-sub-card:hover { box-shadow: var(--sbn-shadow-md); transform: translateY(-2px); }
.sbn-sub-card__img {
  display: block;
  height: 130px;
  overflow: hidden;
  background: #f3f4f6;
}
.sbn-sub-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.sbn-sub-card:hover .sbn-sub-card__img img { transform: scale(1.06); }
.sbn-sub-card__body { padding: 10px 12px 12px; }
.sbn-sub-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sbn-ink);
  text-decoration: none;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
}
.sbn-sub-card__title:hover { color: var(--sbn-red); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT SLOT (Vastuguruji)
══════════════════════════════════════════════════════════════ */
.sbn-product-slot {
  background: linear-gradient(135deg, #fffdf8, var(--sbn-white));
  border: 1px solid #e8d9a0;
  border-left: 4px solid var(--sbn-gold);
  border-radius: var(--sbn-radius);
  overflow: hidden;
  box-shadow: var(--sbn-shadow-sm);
}
.sbn-product-slot__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #f0e5b8;
}
.sbn-product-slot__kicker {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--sbn-gold);
  background: var(--sbn-gold-light);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--sbn-font-sans);
}
.sbn-product-slot__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--sbn-ink);
  font-family: var(--sbn-font-serif);
}
.sbn-product-slot__body { padding: 14px 16px; }

/* ══════════════════════════════════════════════════════════════
   JUST PUBLISHED RAIL
══════════════════════════════════════════════════════════════ */
.sbn-published-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}
.sbn-pub-card {
  background: var(--sbn-white);
  border-radius: var(--sbn-radius);
  padding: 12px 14px;
  box-shadow: var(--sbn-shadow-sm);
  border-left: 3px solid var(--sbn-red);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: box-shadow .2s, transform .2s;
}
.sbn-pub-card:hover { box-shadow: var(--sbn-shadow-md); transform: translateY(-2px); }
.sbn-pub-card__title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sbn-ink);
  text-decoration: none;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
}
.sbn-pub-card__title:hover { color: var(--sbn-red); }

/* ══════════════════════════════════════════════════════════════
   LATEST NEWS GRID
══════════════════════════════════════════════════════════════ */
.sbn-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}
@media (max-width: 600px) { .sbn-latest-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.sbn-lcard {
  background: var(--sbn-white);
  border-radius: var(--sbn-radius);
  overflow: hidden;
  box-shadow: var(--sbn-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.sbn-lcard:hover { box-shadow: var(--sbn-shadow-md); transform: translateY(-2px); }
.sbn-lcard__img {
  display: block;
  height: 180px;
  background: #f3f4f6;
  overflow: hidden;
}
.sbn-lcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.sbn-lcard:hover .sbn-lcard__img img { transform: scale(1.06); }
.sbn-lcard__body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sbn-lcard__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--sbn-ink);
  text-decoration: none;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
}
.sbn-lcard__title:hover { color: var(--sbn-red); }
.sbn-lcard__excerpt {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--sbn-ink-soft);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
}

/* ══════════════════════════════════════════════════════════════
   AD STRIP
══════════════════════════════════════════════════════════════ */
.sbn-adstrip {
  text-align: center;
  padding: 8px 0;
}
.sbn-ad-slot {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 100%;
}
.sbn-ad-slot__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--sbn-muted);
  font-family: var(--sbn-font-sans);
}
.sbn-ad-placeholder {
  background: var(--sbn-bg);
  border: 1px dashed var(--sbn-border);
  border-radius: 8px;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sbn-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  font-family: var(--sbn-font-sans);
}
.sbn-ad-placeholder span { font-size: 11.5px; font-weight: 400; }
.sbn-adstrip__house {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--sbn-ink);
}
.sbn-adstrip__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sbn-adstrip__copy strong { font-size: 14px; color: var(--sbn-ink); }
.sbn-adstrip__copy small { font-size: 12px; color: var(--sbn-muted); }

/* ══════════════════════════════════════════════════════════════
   FEATURED / DISCOVER RAIL
══════════════════════════════════════════════════════════════ */
.sbn-featured-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .sbn-featured-grid { grid-template-columns: 1fr 1fr; }
  .sbn-fcard.is-lead { grid-column: span 2; }
}
@media (max-width: 520px) {
  .sbn-featured-grid { grid-template-columns: 1fr; }
  .sbn-fcard.is-lead { grid-column: auto; }
}
.sbn-fcard {
  background: var(--sbn-white);
  border-radius: var(--sbn-radius);
  overflow: hidden;
  box-shadow: var(--sbn-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.sbn-fcard:hover { box-shadow: var(--sbn-shadow-md); transform: translateY(-2px); }
.sbn-fcard__img {
  display: block;
  height: 160px;
  background: #f3f4f6;
  overflow: hidden;
}
.sbn-fcard.is-lead .sbn-fcard__img { height: 250px; }
.sbn-fcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.sbn-fcard:hover .sbn-fcard__img img { transform: scale(1.06); }
.sbn-fcard__body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sbn-fcard__title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sbn-ink);
  text-decoration: none;
  line-height: 1.45;
  margin: 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
}
.sbn-fcard.is-lead .sbn-fcard__title {
  font-size: 19px;
  font-family: var(--sbn-font-serif);
  -webkit-line-clamp: 2; line-clamp: 2;
}
.sbn-fcard__title:hover { color: var(--sbn-red); }
.sbn-fcard__excerpt {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--sbn-ink-soft);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
}
.sbn-fcard__date { font-size: 11px; color: var(--sbn-muted); }

/* ══════════════════════════════════════════════════════════════
   CONTENT + SIDEBAR (More News)
══════════════════════════════════════════════════════════════ */
.sbn-content-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 980px) {
  .sbn-content-sidebar { grid-template-columns: 1fr; }
}

/* Feature panels */
.sbn-feature-panel { display: none; }
.sbn-feature-panel.is-active { display: block; }
.sbn-feature-panel-intro {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: var(--sbn-bg);
  border-radius: 8px;
  border-left: 3px solid var(--sbn-gold);
}
.sbn-feature-panel-intro strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--sbn-ink);
  font-family: var(--sbn-font-serif);
}
.sbn-feature-panel-intro span { font-size: 12px; color: var(--sbn-muted); }
.sbn-feature-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: start;
}
.sbn-feature-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sbn-red);
  margin-bottom: 12px;
}
.sbn-feature-col-head h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--sbn-ink);
  font-family: var(--sbn-font-serif);
}
.sbn-col-count {
  background: var(--sbn-red-light);
  color: var(--sbn-red);
  font-size: 11px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sbn-font-sans);
}
.sbn-col-lead { margin-bottom: 12px; }
.sbn-col-lead__img {
  display: block;
  height: 130px;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f4f6;
  margin-bottom: 8px;
}
.sbn-col-lead__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.sbn-col-lead:hover .sbn-col-lead__img img { transform: scale(1.05); }

/* Sidebar */
.sbn-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ══════════════════════════════════════════════════════════════
   PHOTO GALLERY
══════════════════════════════════════════════════════════════ */
.sbn-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
@media (max-width: 540px) { .sbn-photo-grid { grid-template-columns: 1fr 1fr; } }

.sbn-photo-card {
  display: block;
  background: var(--sbn-white);
  border-radius: var(--sbn-radius);
  overflow: hidden;
  box-shadow: var(--sbn-shadow-sm);
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.sbn-photo-card:hover { box-shadow: var(--sbn-shadow-md); transform: translateY(-2px); }
.sbn-photo-card__img {
  height: 150px;
  overflow: hidden;
  background: #f3f4f6;
  position: relative;
}
.sbn-photo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.sbn-photo-card:hover .sbn-photo-card__img img { transform: scale(1.07); }
.sbn-photo-card__body { padding: 8px 10px 10px; }
.sbn-photo-card__title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sbn-ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
}

/* ══════════════════════════════════════════════════════════════
   WEB STORIES (Story bubbles)
══════════════════════════════════════════════════════════════ */
.sbn-stories-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0 12px;
}
.sbn-stories-grid::-webkit-scrollbar { display: none; }

.sbn-story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 140px;
  height: 245px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: transform .22s, box-shadow .22s;
  background: #1a1a2e;
  border: 3px solid transparent;
}
.sbn-story-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  border-color: var(--sbn-gold);
}
.sbn-story-card__media {
  position: absolute;
  inset: 0;
}
.sbn-story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sbn-story-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}
.sbn-story-card__tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sbn-gold);
  margin-bottom: 4px;
  font-family: var(--sbn-font-sans);
}
.sbn-story-card__title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR CARDS (shared elements)
══════════════════════════════════════════════════════════════ */
.sbn-sidecard {
  background: var(--sbn-white);
  border-radius: var(--sbn-radius);
  border: 1px solid var(--sbn-border);
  box-shadow: var(--sbn-shadow-sm);
  overflow: hidden;
}
.sbn-sidecard__head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--sbn-border);
  background: linear-gradient(180deg, #fffdfa, #faf6ef);
}
.sbn-sidecard__title {
  margin: 0;
  padding-left: 8px;
  border-left: 3px solid var(--sbn-red);
  font-size: 15px;
  font-weight: 800;
  color: var(--sbn-ink);
  font-family: var(--sbn-font-serif);
}
.sbn-sidecard__body { padding: 12px 14px; }

/* ══════════════════════════════════════════════════════════════
   DARK MODE OVERRIDES
══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
@keyframes sbn-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.sbn-main > * {
  animation: sbn-fade-in .35s ease both;
}
.sbn-main > *:nth-child(1) { animation-delay: .04s; }
.sbn-main > *:nth-child(2) { animation-delay: .08s; }
.sbn-main > *:nth-child(3) { animation-delay: .12s; }
.sbn-main > *:nth-child(4) { animation-delay: .16s; }

/* ══════════════════════════════════════════════════════════════
   WHATSAPP SHARE BUTTON
══════════════════════════════════════════════════════════════ */
.sbn-wa-share {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
  z-index: 300;
  transition: transform .2s, box-shadow .2s;
  font-size: 24px;
}
.sbn-wa-share:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.5); }

/* ══════════════════════════════════════════════════════════════
   NOTIFICATION BUTTON (top utility)
══════════════════════════════════════════════════════════════ */
.sbn-notify-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sbn-font-sans);
}
.sbn-notify-btn:hover { background: var(--sbn-red); border-color: var(--sbn-red); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — COMPLETE COVERAGE
   Breakpoints: 1280 · 1024 · 900 · 768 · 600 · 480 · 360
══════════════════════════════════════════════════════════════ */

/* ── Large desktop (1280px+) ─────────────────────────────────── */
@media (min-width: 1280px) {
  .sbn-shell { padding: 0 24px; }
  .sbn-hero__img-wrap { height: 340px; }
  .sbn-hero__title { font-size: 26px; }
  .sbn-main { gap: 40px; padding: 30px 0 50px; }
}

/* ── Mid desktop (1025–1280px) ───────────────────────────────── */
@media (max-width: 1280px) and (min-width: 1025px) {
  .sbn-nav__links > a { padding: 0 8px; font-size: 12px; }
  .sbn-logo__name { font-size: 34px; }
}

/* ── Small desktop / large tablet landscape (901–1024px) ─────── */
@media (max-width: 1024px) and (min-width: 901px) {
  .sbn-content-sidebar { grid-template-columns: 1fr 300px; }
  .sbn-latest-grid { grid-template-columns: repeat(3, 1fr); }
  .sbn-sub-row { grid-template-columns: repeat(4, 1fr); }
  .sbn-feature-cols { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

/* ── Tablet portrait (769–900px) ─────────────────────────────── */
@media (max-width: 900px) {
  /* Shell tighter */
  .sbn-shell { padding: 0 14px; }

  /* Masthead: logo top-center, date + search below side by side */
  .sbn-masthead__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px 16px;
    text-align: left;
    padding: 12px 0;
  }
  .sbn-logo {
    grid-column: 1 / -1;
    align-items: center;
  }
  .sbn-masthead__date { align-items: flex-start; }
  .sbn-masthead__actions {
    align-items: flex-end;
  }
  .sbn-search { width: 100%; }

  /* Content layout */
  .sbn-main { gap: 28px; padding: 20px 0 36px; }
  .sbn-hero { gap: 14px; }
  .sbn-hero__stack { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .sbn-side-story--text { flex-direction: column; }
  .sbn-side-story__thumb { width: 100%; height: 110px; }

  .sbn-featured-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sbn-fcard.is-lead { grid-column: span 2; }
  .sbn-fcard.is-lead .sbn-fcard__img { height: 220px; }

  .sbn-content-sidebar { grid-template-columns: 1fr; gap: 20px; }
  .sbn-feature-cols { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
  .sbn-published-rail { grid-template-columns: repeat(2, 1fr); }
  .sbn-latest-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* Section header: hide tabs, keep heading + more */
  .sbn-sec-head { flex-wrap: nowrap; gap: 8px; margin-bottom: 14px; }
  .sbn-sec-head__tabs { display: none; }
  .sbn-sec-head__label h2 { font-size: 17px; }

  /* Sections panel full-width on tablet */
  .sbn-sections__panel { width: 320px; }
}

/* ── Large phone / small tablet (601–768px) ─────────────────── */
@media (max-width: 768px) {
  .sbn-shell { padding: 0 12px; }

  /* Masthead: full stack */
  .sbn-masthead__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0;
    text-align: center;
  }
  .sbn-masthead__date { align-items: center; }
  .sbn-masthead__actions { align-items: center; width: 100%; }
  .sbn-search { width: 100%; max-width: 360px; }
  .sbn-mast-btns { justify-content: center; }
  .sbn-logo__name { font-size: 32px; }
  .sbn-logo__tag { font-size: 9px; }

  /* Hero: single column, stack below */
  .sbn-hero { grid-template-columns: 1fr; gap: 12px; }
  .sbn-hero__stack { display: flex; flex-direction: column; gap: 8px; }
  .sbn-hero__img-wrap { height: 240px; }
  .sbn-hero__title { font-size: 20px; }
  .sbn-hero__body { padding: 14px; }
  .sbn-side-story--text { flex-direction: row; }
  .sbn-side-story__thumb { width: 90px; height: 70px; }

  /* Grids */
  .sbn-sub-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sbn-sub-card__img { height: 110px; }
  .sbn-latest-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sbn-lcard__img { height: 150px; }
  .sbn-photo-grid { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .sbn-photo-card__img { height: 120px; }
  .sbn-published-rail { grid-template-columns: 1fr 1fr; }

  .sbn-featured-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sbn-fcard.is-lead { grid-column: span 2; }
  .sbn-fcard.is-lead .sbn-fcard__img { height: 200px; }
  .sbn-fcard__img { height: 130px; }

  .sbn-feature-cols { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Main spacing */
  .sbn-main { gap: 24px; padding: 16px 0 32px; }
  .sbn-sec-head__label h2 { font-size: 16px; }

  /* Ticker smaller text */
  .sbn-ticker__item { font-size: 12px; }
  .sbn-ticker__badge { font-size: 10px; padding: 0 12px; }

  /* Quick nav */
  .sbn-quicknav__row { gap: 5px; }
  .sbn-quicknav__row a { padding: 5px 11px; font-size: 12px; }
}

/* ── Phone (≤600px) ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .sbn-shell { padding: 0 10px; }

  /* Topbar: only edition + 1-2 links */
  .sbn-topbar__right { display: none; }
  .sbn-topbar__left { gap: 10px; }
  .sbn-topbar a { font-size: 11px; }

  /* Masthead compact */
  .sbn-logo__name { font-size: 28px; }
  .sbn-date-en { display: none; }

  /* Hero */
  .sbn-hero__img-wrap { height: 210px; }
  .sbn-hero__title { font-size: 18px; line-height: 1.35; }
  .sbn-hero__excerpt { display: none; }
  .sbn-hero__body { padding: 12px; }
  .sbn-hero__cat-badge { font-size: 9px; padding: 3px 9px; }

  /* Side story on mobile: always thumbnail-row */
  .sbn-side-story--img { flex-direction: row; }
  .sbn-side-story--img .sbn-side-story__img {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
  }

  /* Grids */
  .sbn-sub-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sbn-sub-card__img { height: 100px; }
  .sbn-sub-card__body { padding: 8px 10px 10px; }
  .sbn-sub-card__title { font-size: 12px; }

  .sbn-latest-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sbn-lcard__img { height: 130px; }
  .sbn-lcard__body { padding: 10px 12px 12px; }
  .sbn-lcard__title { font-size: 13.5px; }
  .sbn-lcard__excerpt { display: none; }

  .sbn-published-rail { grid-template-columns: 1fr; }
  .sbn-pub-card { padding: 10px 12px; }

  .sbn-featured-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sbn-fcard.is-lead { grid-column: span 2; }
  .sbn-fcard.is-lead .sbn-fcard__img { height: 180px; }
  .sbn-fcard__img { height: 120px; }
  .sbn-fcard__body { padding: 10px 12px 12px; }
  .sbn-fcard.is-lead .sbn-fcard__title { font-size: 16px; }

  .sbn-photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sbn-photo-card__img { height: 110px; }

  .sbn-feature-cols { grid-template-columns: 1fr; }

  .sbn-content-sidebar { gap: 16px; }

  /* Stories */
  .sbn-story-card { width: 120px; height: 210px; }

  /* Section header */
  .sbn-sec-head { gap: 6px; padding-bottom: 8px; margin-bottom: 12px; }
  .sbn-sec-head__label h2 { font-size: 15px; padding-left: 8px; border-left-width: 3px; }
  .sbn-sec-head__more { font-size: 12px; }

  /* Intro */
  .sbn-intro { padding: 12px 0; }
  .sbn-intro__card { padding: 12px 14px; flex-direction: column; gap: 8px; }
  .sbn-intro__card h1 { font-size: 14px; }
  .sbn-intro__card p { font-size: 12.5px; }
  .sbn-intro__links a { padding: 5px 11px; font-size: 11.5px; }

  /* Ad placeholder compact */
  .sbn-ad-placeholder { padding: 14px 20px; font-size: 13px; }

  .sbn-main { gap: 20px; padding: 14px 0 28px; }
}

/* ── Small phone (≤480px) ────────────────────────────────────── */
@media (max-width: 480px) {
  /* Touch targets: min 44px height on interactive items */
  .sbn-drawer__links a { min-height: 44px; display: flex; align-items: center; }
  .sbn-quicknav__row a { min-height: 36px; display: inline-flex; align-items: center; }
  .sbn-nav__burger { padding: 10px 10px 10px 6px; }

  .sbn-logo__name { font-size: 26px; }
  .sbn-logo__rule span { max-width: 50px; }

  .sbn-hero__img-wrap { height: 190px; }
  .sbn-hero__title { font-size: 17px; }

  /* Sub-row: 2 cols with compact images */
  .sbn-sub-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sbn-sub-card__img { height: 90px; }

  /* Latest: 1 col on very small */
  .sbn-latest-grid { grid-template-columns: 1fr; }
  .sbn-lcard { flex-direction: row; }
  .sbn-lcard__img { width: 110px; height: auto; min-height: 90px; flex-shrink: 0; }
  .sbn-lcard__body { padding: 10px; }
  .sbn-lcard__title { font-size: 13px; -webkit-line-clamp: 3; line-clamp: 3; }

  /* Featured: 1 col */
  .sbn-featured-grid { grid-template-columns: 1fr; }
  .sbn-fcard.is-lead { grid-column: auto; }
  .sbn-fcard.is-lead .sbn-fcard__img { height: 180px; }

  /* Photo: 2 cols */
  .sbn-photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sbn-photo-card__img { height: 100px; }

  /* Ticker */
  .sbn-ticker { height: 36px; }
  .sbn-ticker__badge::after {
    border-top-width: 18px;
    border-bottom-width: 18px;
  }

  .sbn-main { gap: 18px; padding: 12px 0 24px; }
}

/* ── Very small phone (≤360px) ───────────────────────────────── */
@media (max-width: 360px) {
  .sbn-shell { padding: 0 8px; }
  .sbn-logo__name { font-size: 22px; }
  .sbn-logo__tag { display: none; }

  /* Nav even more compact */
  .sbn-nav__home { padding: 0 10px; }
  .sbn-home-lbl { display: none; }

  /* Sub-row: 2 cols but very compact */
  .sbn-sub-card__img { height: 80px; }
  .sbn-sub-card__title { font-size: 11.5px; }

  /* Hero */
  .sbn-hero__img-wrap { height: 170px; }
  .sbn-hero__title { font-size: 15px; }
  .sbn-hero__body { padding: 10px; }

  /* lcard stays row */
  .sbn-lcard__img { width: 90px; min-height: 75px; }
  .sbn-lcard__title { font-size: 12.5px; }

  /* Drawer full-width */
  .sbn-drawer__panel { width: 100%; }

  /* Ticker text smaller */
  .sbn-ticker__item { font-size: 11px; padding-right: 28px; }
  .sbn-ticker__badge { padding: 0 10px; font-size: 9.5px; }

  /* Photo grid 2 col forced */
  .sbn-photo-grid { grid-template-columns: 1fr 1fr; }
  .sbn-photo-card__img { height: 90px; }

  .sbn-sec-head__label h2 { font-size: 14px; }
  .sbn-main { gap: 16px; }
}

/* ── Landscape phone (height ≤ 420px) ────────────────────────── */
@media (max-height: 420px) and (max-width: 900px) {
  .sbn-masthead { display: none; }
  .sbn-topbar { display: none; }
  .sbn-hero__img-wrap { height: 160px; }
  .sbn-nav { position: relative; }
}

/* ── High DPI / retina adjustments ──────────────────────────── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .sbn-logo__rule span { height: 1px; }
  .sbn-logo__rule i { width: 5px; height: 5px; }
}

/* ── Reduce motion preference ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .sbn-home *,
  .sbn-home *::before,
  .sbn-home *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .sbn-ticker__items { will-change: auto; }
}

/* ════════════════════════════════════════════════════════════════
   BENTO LAYOUT + FILTER CHIPS + WIDGETS + FOOTER
   (classes used by current newsroom partials)
════════════════════════════════════════════════════════════════ */

/* ── Top Banner Ad ──────────────────────────────────────────── */
.sbn-topbanner {
  background: var(--sbn-white);
  padding: 10px 0;
  border-bottom: 1px solid var(--sbn-border);
  text-align: center;
}

/* ── Mobile-only nav elements ───────────────────────────────── */
.sbn-nav__mobile-logo {
  display: none;
  color: #fff;
  text-decoration: none;
  font-family: var(--sbn-font-serif);
  font-size: 18px;
  font-weight: 900;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px;
}
.sbn-nav__mob-search {
  display: none;
  color: #fff;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background .15s;
  flex-shrink: 0;
}
.sbn-nav__mob-search:hover { background: rgba(0,0,0,.2); }
.sbn-nav__mob-epaper {
  display: none;
  background: var(--sbn-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .03em;
  font-family: var(--sbn-font-sans);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .sbn-nav__mobile-logo { display: block; }
  .sbn-nav__mob-search  { display: flex; }
  .sbn-nav__mob-epaper  { display: block; }
}

/* ── Section Cat Header ─────────────────────────────────────── */
.sbn-cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sbn-red);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.sbn-cat-header__inner { flex: 1; min-width: 0; }
.sbn-cat-header__title {
  margin: 0 0 3px;
  font-size: 20px;
  font-weight: 900;
  color: var(--sbn-ink);
  padding-left: 12px;
  border-left: 4px solid var(--sbn-red);
  font-family: var(--sbn-font-serif);
  line-height: 1.2;
}
.sbn-cat-header__desc {
  margin: 4px 0 0 16px;
  font-size: 12.5px;
  color: var(--sbn-muted);
  line-height: 1.4;
  font-family: var(--sbn-font-sans);
}
.sbn-cat-header__more {
  color: var(--sbn-red);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .15s;
  font-family: var(--sbn-font-sans);
}
.sbn-cat-header__more:hover { color: var(--sbn-red-dark); text-decoration: underline; }

/* ── Filter Chips ───────────────────────────────────────────── */
.sbn-filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.sbn-filter-chips::-webkit-scrollbar { display: none; }
.sbn-filter-chip {
  background: none;
  border: 1.5px solid var(--sbn-border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sbn-muted);
  cursor: pointer;
  transition: all .15s;
  font-family: var(--sbn-font-sans);
  white-space: nowrap;
  flex-shrink: 0;
}
.sbn-filter-chip:hover,
.sbn-filter-chip--active {
  background: var(--sbn-red);
  border-color: var(--sbn-red);
  color: #fff;
}

/* ── Bento Grid ─────────────────────────────────────────────── */
.sbn-bento {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.sbn-bento-hero {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  border-radius: var(--sbn-radius);
  overflow: hidden;
  background: var(--sbn-white);
  box-shadow: var(--sbn-shadow-md);
  text-decoration: none;
  transition: box-shadow .2s;
}
.sbn-bento-hero:hover { box-shadow: var(--sbn-shadow-lg); }
.sbn-bento-hero__img-wrap {
  position: relative;
  display: block;
  flex-shrink: 0;
  height: 260px;
  overflow: hidden;
  background: #1a1a2e;
}
.sbn-bento-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.sbn-bento-hero:hover .sbn-bento-hero__img-wrap img { transform: scale(1.04); }
.sbn-bento-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 48px;
  background: #1a1a2e;
}
.sbn-bento-hero__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sbn-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 11px;
  border-radius: 20px;
  font-family: var(--sbn-font-sans);
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.sbn-bento-hero__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sbn-bento-hero__title {
  margin: 0 0 8px;
  font-family: var(--sbn-font-serif);
  font-size: 21px;
  font-weight: 900;
  color: var(--sbn-ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}
.sbn-bento-hero:hover .sbn-bento-hero__title { color: var(--sbn-red); }
.sbn-bento-hero__excerpt {
  margin: 0 0 auto;
  font-size: 13.5px;
  color: var(--sbn-ink-soft);
  line-height: 1.6;
  font-family: var(--sbn-font-sans);
  display: -webkit-box;
  -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sbn-bento-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--sbn-muted);
  font-family: var(--sbn-font-sans);
  flex-wrap: wrap;
}
.sbn-bento-hero__cat { color: var(--sbn-red); font-weight: 700; }

.sbn-bento-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--sbn-radius);
  overflow: hidden;
  background: var(--sbn-white);
  box-shadow: var(--sbn-shadow-sm);
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.sbn-bento-card:hover { box-shadow: var(--sbn-shadow-md); transform: translateY(-2px); }
.sbn-bento-card__img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f3f4f6;
  transition: transform .35s;
}
.sbn-bento-card:hover .sbn-bento-card__img { transform: scale(1.05); }
.sbn-bento-card__placeholder {
  height: 140px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.sbn-bento-card__body {
  padding: 10px 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sbn-bento-card__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sbn-red);
  font-family: var(--sbn-font-sans);
}
.sbn-bento-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sbn-ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
}
.sbn-bento-card:hover .sbn-bento-card__title { color: var(--sbn-red); }
.sbn-bento-card__time {
  font-size: 11px;
  color: var(--sbn-muted);
  margin-top: auto;
  font-family: var(--sbn-font-sans);
}

/* ── Home List ──────────────────────────────────────────────── */
.sbn-home-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 4px;
}
.sbn-home-list-item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sbn-white);
  box-shadow: var(--sbn-shadow-sm);
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.sbn-home-list-item:hover { box-shadow: var(--sbn-shadow-md); transform: translateY(-2px); }
.sbn-home-list-item__thumb {
  display: block;
  width: 100%;
  height: 110px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform .35s;
}
.sbn-home-list-item:hover .sbn-home-list-item__thumb { transform: scale(1.05); }
.sbn-home-list-item__body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sbn-home-list-item__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sbn-red);
  font-family: var(--sbn-font-sans);
}
.sbn-home-list-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sbn-ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
}
.sbn-home-list-item:hover .sbn-home-list-item__title { color: var(--sbn-red); }
.sbn-home-list-item__time {
  font-size: 10.5px;
  color: var(--sbn-muted);
  font-family: var(--sbn-font-sans);
}

/* ── Content Main (flex container for feature section) ─────── */
.sbn-content-main { min-width: 0; }

/* ── Col Lead sub-elements ──────────────────────────────────── */
.sbn-col-lead__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sbn-ink);
  text-decoration: none;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
  margin-bottom: 5px;
}
.sbn-col-lead__title:hover { color: var(--sbn-red); }
.sbn-col-lead__excerpt {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--sbn-ink-soft);
  line-height: 1.5;
  font-family: var(--sbn-font-sans);
  display: -webkit-box;
  -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sbn-col-lead__date {
  margin-top: 5px;
  font-size: 11px;
  color: var(--sbn-muted);
  font-family: var(--sbn-font-sans);
  display: block;
}

/* ── Thumb (small thumbnail article row) ───────────────────── */
.sbn-thumb {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--sbn-border);
}
.sbn-thumb:last-child { border-bottom: none; }
.sbn-thumb__img {
  display: block;
  width: 72px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f3f4f6;
}
.sbn-thumb__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.sbn-thumb:hover .sbn-thumb__img img { transform: scale(1.07); }
.sbn-thumb__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sbn-thumb__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sbn-ink);
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
}
.sbn-thumb__title:hover { color: var(--sbn-red); }
.sbn-thumb__date {
  font-size: 11px;
  color: var(--sbn-muted);
  font-family: var(--sbn-font-sans);
}

/* ── Sidebar Widget ─────────────────────────────────────────── */
.sbn-widget {
  background: var(--sbn-white);
  border: 1px solid var(--sbn-border);
  border-radius: var(--sbn-radius);
  padding: 14px 16px;
  box-shadow: var(--sbn-shadow-sm);
}
.sbn-widget h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--sbn-ink);
  padding-left: 9px;
  border-left: 3px solid var(--sbn-red);
  font-family: var(--sbn-font-serif);
}
.sbn-widget--ad { text-align: center; }
.sbn-widget--ad h3 { text-align: left; }

/* ── ePaper Widget ──────────────────────────────────────────── */
.sbn-epaper-widget {
  background: linear-gradient(135deg, #0d1117, #1a2332);
  border-radius: var(--sbn-radius);
  padding: 20px 16px;
  text-align: center;
  color: #fff;
}
.sbn-epaper-widget__icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.sbn-epaper-widget h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  font-family: var(--sbn-font-serif);
  border: none;
  padding: 0;
}
.sbn-epaper-widget p {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-family: var(--sbn-font-sans);
}
.sbn-epaper-widget a {
  display: inline-block;
  background: var(--sbn-red);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 6px;
  font-family: var(--sbn-font-sans);
  transition: background .15s;
}
.sbn-epaper-widget a:hover { background: var(--sbn-red-dark); }

/* ── Trending ───────────────────────────────────────────────── */
.sbn-trending {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--sbn-border);
  text-decoration: none;
  color: inherit;
}
.sbn-trending:last-child { border-bottom: none; }
.sbn-trending:hover .sbn-trending__title { color: var(--sbn-red); }
.sbn-trending__num {
  font-size: 20px;
  font-weight: 900;
  color: var(--sbn-red);
  font-family: var(--sbn-font-serif);
  line-height: 1;
  flex-shrink: 0;
  width: 26px;
  opacity: .7;
}
.sbn-trending__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.sbn-trending__title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sbn-ink);
  line-height: 1.4;
  font-family: var(--sbn-font-sans);
  display: -webkit-box;
  -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}
.sbn-trending__meta {
  font-size: 11px;
  color: var(--sbn-muted);
  font-family: var(--sbn-font-sans);
}

/* ── Category Grid (sidebar) ────────────────────────────────── */
.sbn-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.sbn-cat-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 8px;
  background: var(--sbn-bg);
  text-decoration: none;
  font-family: var(--sbn-font-sans);
  transition: background .15s;
  text-align: center;
}
.sbn-cat-grid__item:hover { background: var(--sbn-red-light); }
.sbn-cat-grid__item span { font-size: 22px; line-height: 1; }
.sbn-cat-grid__item strong {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sbn-ink);
  transition: color .15s;
}
.sbn-cat-grid__item:hover strong { color: var(--sbn-red); }

/* ── Footer ─────────────────────────────────────────────────── */
.sbn-footer {
  background: #0d1117;
  color: rgba(255,255,255,.65);
  font-family: var(--sbn-font-sans);
  margin-top: 12px;
}
.sbn-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding-top: 36px;
  padding-bottom: 28px;
}
.sbn-footer__logo {
  font-family: var(--sbn-font-serif);
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.sbn-footer__tag {
  font-size: 10.5px;
  color: var(--sbn-gold);
  letter-spacing: .06em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sbn-footer__brand p {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin: 0;
}
.sbn-footer__col { display: flex; flex-direction: column; gap: 7px; }
.sbn-footer__col h4 {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.4);
  margin: 0 0 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sbn-footer__col a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s;
  line-height: 1.4;
}
.sbn-footer__col a:hover { color: var(--sbn-gold); }
.sbn-footer__rni {
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  line-height: 1.8;
}
.sbn-footer__rni-badge {
  display: inline-block;
  background: var(--sbn-red);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 8px;
  font-family: var(--sbn-font-sans);
}
.sbn-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}
.sbn-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sbn-footer__bottom-links a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  transition: color .15s;
}
.sbn-footer__bottom-links a:hover { color: var(--sbn-gold); }

/* ── Responsive for bento + footer + new classes ────────────── */

/* Tablet landscape 901–1024px */
@media (max-width: 1024px) and (min-width: 901px) {
  .sbn-bento { grid-template-columns: 58% 1fr; }
  .sbn-bento-hero__img-wrap { height: 230px; }
  .sbn-bento-hero__title { font-size: 19px; }
  .sbn-home-list { grid-template-columns: repeat(4, 1fr); }
  .sbn-footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
}

/* Tablet portrait ≤ 900px */
@media (max-width: 900px) {
  .sbn-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .sbn-bento-hero {
    grid-column: 1 / -1;
    grid-row: 1;
    flex-direction: row;
  }
  .sbn-bento-hero__img-wrap { width: 44%; height: 100%; min-height: 180px; flex-shrink: 0; }
  .sbn-bento-hero__title { font-size: 17px; }
  .sbn-bento-hero__excerpt { display: none; }
  .sbn-home-list { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .sbn-footer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .sbn-footer__brand { grid-column: 1 / -1; }
  .sbn-cat-header__desc { display: none; }
}

/* Large phone ≤ 768px */
@media (max-width: 768px) {
  .sbn-bento-hero { flex-direction: column; }
  .sbn-bento-hero__img-wrap { width: 100%; height: 220px; min-height: 0; }
  .sbn-bento-card__img { height: 120px; }
  .sbn-home-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .sbn-home-list-item__thumb { height: 90px; }
  .sbn-cat-header__title { font-size: 17px; }
}

/* Phone ≤ 600px */
@media (max-width: 600px) {
  .sbn-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .sbn-bento-hero { grid-column: 1; grid-row: auto; }
  .sbn-bento-hero__img-wrap { height: 200px; }
  .sbn-bento-hero__title { font-size: 16px; }
  .sbn-bento-card__img { height: 140px; }
  .sbn-home-list { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sbn-home-list-item__thumb { height: 80px; }
  .sbn-filter-chips { gap: 6px; margin-bottom: 12px; }
  .sbn-filter-chip { padding: 4px 12px; font-size: 12px; }
  .sbn-footer__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sbn-cat-header__title { font-size: 16px; }
}

/* Small phone ≤ 480px */
@media (max-width: 480px) {
  .sbn-bento { gap: 10px; }
  .sbn-bento-hero__img-wrap { height: 185px; }
  .sbn-bento-hero__title { font-size: 15px; }
  .sbn-bento-card__img { height: 120px; }
  .sbn-home-list { grid-template-columns: 1fr; }
  .sbn-home-list-item {
    flex-direction: row;
    align-items: stretch;
  }
  .sbn-home-list-item__thumb {
    width: 100px;
    height: auto;
    min-height: 80px;
    flex-shrink: 0;
    object-fit: cover;
  }
  .sbn-footer__grid { grid-template-columns: 1fr; gap: 14px; }
  .sbn-footer__col { flex-direction: row; flex-wrap: wrap; gap: 6px 14px; }
  .sbn-footer__col h4 { width: 100%; }
}

/* Very small ≤ 360px */
@media (max-width: 360px) {
  .sbn-bento-hero__img-wrap { height: 165px; }
  .sbn-bento-hero__title { font-size: 14px; }
  .sbn-bento-card__img { height: 110px; }
  .sbn-home-list-item__thumb { width: 80px; }
  .sbn-footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .sbn-cat-header__title { font-size: 14px; }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE APP DESIGN  (≤ 767px)
   Compact fixed nav · Full-bleed hero · Category sections · Bottom nav
════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── 1. Hide desktop-only chrome ─────────────────────────── */
  .sbn-topbar,
  .sbn-masthead,
  .sbn-citybar,
  .sbn-quicknav,
  .sbn-intro { display: none !important; }

  /* ── 2. Fixed compact nav bar (52px) ─────────────────────── */
  .sbn-nav {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 52px;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
  }
  .sbn-nav__inner { height: 52px; padding: 0 4px; gap: 0; }
  .sbn-nav__home  { display: none !important; }
  .sbn-nav__links { display: none !important; }
  .sbn-nav__mob-epaper { display: none !important; }
  .sbn-nav__mob-search { display: flex !important; width: 42px; height: 42px; }
  .sbn-nav__mobile-logo {
    display: block !important;
    flex: 1;
    text-align: center;
    font-family: var(--sbn-font-serif);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: .01em;
    color: #fff;
    padding: 0;
    overflow: visible;
  }
  .sbn-sections,
  .sbn-nav-tool,
  .sbn-nav-lang { display: none !important; }
  .sbn-nav__tools { gap: 0; }
  .sbn-nav__burger { padding: 0 6px; }

  /* ── 3. Push content below fixed nav ─────────────────────── */
  .sbn-ticker { margin-top: 52px; }
  .sbn-home { padding-bottom: 62px; }
  .sbn-main { gap: 0; padding: 8px 0 20px; }
  .sbn-shell { padding: 0 12px; }

  /* ── 4. Breaking ticker ──────────────────────────────────── */
  .sbn-ticker { height: 38px; }
  .sbn-ticker__badge { font-size: 10px; padding: 0 12px; }
  .sbn-ticker__badge::after { border-top-width: 19px; border-bottom-width: 19px; }
  .sbn-ticker__item { font-size: 12.5px; padding-right: 32px; }

  /* ── 5. Cat header ───────────────────────────────────────── */
  .sbn-cat-header {
    padding: 10px 14px 8px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--sbn-red);
  }
  .sbn-cat-header__title { font-size: 16px; }
  .sbn-cat-header__desc { display: none; }
  .sbn-cat-header__more { font-size: 12px; }

  /* ── 6. Filter chips: horizontal scroll pill row ─────────── */
  .sbn-filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 6px 14px;
    margin: 0 0 4px;
    gap: 6px;
    background: var(--sbn-white);
    border-bottom: 1px solid var(--sbn-border);
  }
  .sbn-filter-chip { padding: 5px 13px; font-size: 12px; flex-shrink: 0; }

  /* ── 7. Bento grid: hero full-width, 2 cards below ────────── */
  .sbn-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    background: var(--sbn-border);
    margin-bottom: 8px;
  }
  .sbn-bento-hero {
    grid-column: 1 / -1;
    grid-row: 1;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 1px;
    flex-direction: column;
  }
  .sbn-bento-hero__img-wrap { width: 100% !important; height: 230px; border-radius: 0; min-height: 0; }
  .sbn-bento-hero__body { padding: 12px 14px 14px; background: var(--sbn-white); }
  .sbn-bento-hero__title { font-size: 17px; -webkit-line-clamp: 2; line-clamp: 2; margin-bottom: 6px; }
  .sbn-bento-hero__excerpt { display: none; }
  .sbn-bento-hero__meta { margin-top: 6px; }

  .sbn-bento-card {
    grid-row: 2;
    border-radius: 0;
    box-shadow: none;
    background: var(--sbn-white);
    flex-direction: column;
  }
  .sbn-bento-card + .sbn-bento-card { border-left: 1px solid var(--sbn-border); }
  .sbn-bento-card__img { height: 95px; }
  .sbn-bento-card__body { padding: 7px 10px 9px; }
  .sbn-bento-card__title { font-size: 12.5px; -webkit-line-clamp: 2; line-clamp: 2; }

  /* ── 8. Home list: 2-col tile grid ───────────────────────── */
  .sbn-home-list {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--sbn-border);
    margin-bottom: 8px;
  }
  .sbn-home-list-item { border-radius: 0; box-shadow: none; background: var(--sbn-white); flex-direction: column; }
  .sbn-home-list-item__thumb { width: 100%; height: 80px; flex-shrink: 0; }
  .sbn-home-list-item__body { padding: 6px 8px 8px; }
  .sbn-home-list-item__title { font-size: 11.5px; -webkit-line-clamp: 2; line-clamp: 2; }

  /* ── 9. Section headers ──────────────────────────────────── */
  .sbn-sec-head { padding: 10px 0 8px; margin-bottom: 0; gap: 8px; }
  .sbn-sec-head__label h2 { font-size: 15px; }
  .sbn-sec-head__tabs { display: none; }
  .sbn-sec-head__more { font-size: 12px; }

  /* ── 10. Content+sidebar: show sidebar trending first ────── */
  .sbn-content-sidebar { display: flex; flex-direction: column; gap: 0; }
  .sbn-sidebar { order: -1; }
  .sbn-content-main { order: 1; }

  /* Show only trending widget in sidebar on mobile */
  .sbn-sidebar > .sbn-epaper-widget { display: none; }
  .sbn-sidebar > .sbn-widget--ad { display: none; }
  .sbn-sidebar > section:nth-child(4),
  .sbn-sidebar > section:nth-child(5) { display: none; }

  /* Trending widget style */
  .sbn-sidebar > .sbn-widget {
    border-radius: 0;
    border: none;
    border-bottom: 8px solid var(--sbn-bg);
    box-shadow: none;
    padding: 0;
  }
  .sbn-widget h3 {
    font-size: 15px;
    padding: 10px 14px 8px;
    margin-bottom: 0;
    border-left: 3px solid var(--sbn-red);
    border-bottom: 1px solid var(--sbn-border);
    margin-left: 0; margin-right: 0;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .sbn-widget h3::after { content: ' ↗'; font-size: 13px; color: var(--sbn-muted); }
  .sbn-trending {
    padding: 8px 14px;
    border-bottom: 1px solid var(--sbn-border);
  }
  .sbn-trending:last-child { border-bottom: none; }
  .sbn-trending__num { font-size: 20px; width: 28px; }
  .sbn-trending__title { font-size: 13px; -webkit-line-clamp: 2; line-clamp: 2; }
  .sbn-trending__meta { font-size: 10.5px; }

  /* ── 11. Feature panel / more news ───────────────────────── */
  .sbn-sec-head__summary { display: none; }
  .sbn-feature-panel-intro { display: none; }
  .sbn-feature-cols { grid-template-columns: 1fr; gap: 0; }
  .sbn-feature-col {
    border-bottom: 8px solid var(--sbn-bg);
    padding-bottom: 0; margin-bottom: 0;
  }
  .sbn-feature-col:last-child { border-bottom: none; }
  .sbn-feature-col-head {
    padding: 10px 14px 8px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--sbn-red);
    border-top: none;
    background: var(--sbn-white);
  }
  .sbn-feature-col-head h3 { font-size: 15px; }
  .sbn-col-count { display: none; }

  /* Col lead: full-width image */
  .sbn-col-lead { margin-bottom: 0; }
  .sbn-col-lead__img { height: 200px; border-radius: 0; margin-bottom: 0; }
  .sbn-col-lead .sbn-cat { padding: 8px 14px 2px; display: block; margin-bottom: 0; }
  .sbn-col-lead__title { padding: 4px 14px 8px; font-size: 15px; display: block; }
  .sbn-col-lead__excerpt,
  .sbn-col-lead__date { display: none; }

  /* Thumb items: stacked horizontal cards */
  .sbn-thumb {
    padding: 9px 14px;
    border-bottom: 1px solid var(--sbn-border);
    background: var(--sbn-white);
  }
  .sbn-thumb:last-child { border-bottom: none; }
  .sbn-thumb__img { width: 72px; height: 58px; border-radius: 5px; }
  .sbn-thumb__title { font-size: 12.5px; }
  .sbn-thumb__date { display: none; }

  /* ── 12. Published rail ──────────────────────────────────── */
  .sbn-published-rail { grid-template-columns: 1fr; gap: 0; }
  .sbn-pub-card {
    border-radius: 0;
    box-shadow: none;
    border-left: 3px solid var(--sbn-red);
    border-bottom: 1px solid var(--sbn-border);
    padding: 10px 14px;
  }
  .sbn-pub-card:last-child { border-bottom: none; }

  /* ── 13. Latest grid ─────────────────────────────────────── */
  .sbn-latest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--sbn-border);
  }
  .sbn-lcard { border-radius: 0; box-shadow: none; background: var(--sbn-white); }
  .sbn-lcard__img { height: 120px; }
  .sbn-lcard__excerpt { display: none; }
  .sbn-lcard__body { padding: 8px 10px 10px; }
  .sbn-lcard__title { font-size: 13px; }

  /* ── 14. Featured / discover grid ───────────────────────── */
  .sbn-featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--sbn-border);
  }
  .sbn-fcard { border-radius: 0; box-shadow: none; background: var(--sbn-white); }
  .sbn-fcard.is-lead { grid-column: 1 / -1; }
  .sbn-fcard.is-lead .sbn-fcard__img { height: 200px; }
  .sbn-fcard__img { height: 120px; }
  .sbn-fcard__body { padding: 8px 10px 10px; }
  .sbn-fcard.is-lead .sbn-fcard__title { font-size: 16px; }
  .sbn-fcard__excerpt { display: none; }

  /* ── 15. Photo grid ──────────────────────────────────────── */
  .sbn-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--sbn-border);
  }
  .sbn-photo-card { border-radius: 0; box-shadow: none; }
  .sbn-photo-card__img { height: 120px; }
  .sbn-photo-card__body { padding: 6px 10px 8px; }
  .sbn-photo-card__title { font-size: 12px; }

  /* ── 16. Ad strip ────────────────────────────────────────── */
  .sbn-adstrip { padding: 6px 0; }
  .sbn-ad-placeholder { padding: 10px 14px; border-radius: 0; font-size: 12.5px; }
  .sbn-topbanner { display: none; }

  /* ── 17. Web stories ─────────────────────────────────────── */
  .sbn-stories-grid { padding: 4px 14px 10px; margin: 0 -14px; }
  .sbn-story-card { width: 110px; height: 190px; border-radius: 10px; }

  /* ── 18. Product slot ────────────────────────────────────── */
  .sbn-product-slot { border-radius: 0; border-left: 4px solid var(--sbn-gold); }

  /* ── 19. Footer ──────────────────────────────────────────── */
  .sbn-footer { margin-top: 0; }
  .sbn-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .sbn-footer__brand { grid-column: 1 / -1; text-align: center; }
  .sbn-footer__logo { font-size: 22px; }
  .sbn-footer__tag { font-size: 10px; }
  .sbn-footer__brand p { font-size: 12px; }
  .sbn-footer__col { flex-direction: row; flex-wrap: wrap; gap: 4px 12px; }
  .sbn-footer__col h4 { width: 100%; margin-bottom: 0; }
  .sbn-footer__col a { font-size: 12px; }
  .sbn-footer__rni { font-size: 10px; line-height: 1.7; }
  .sbn-footer__bottom { flex-direction: column; align-items: center; gap: 6px; text-align: center; padding: 10px 0; }
  .sbn-footer__bottom-links { gap: 8px; justify-content: center; }
  .sbn-footer__bottom-links a { font-size: 11px; }

  /* ── 20. Dark mode adjustments ───────────────────────────── */
}

/* ── Bottom Navigation Bar ─────────────────────────────────── */
.sbn-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 58px;
  background: var(--sbn-white);
  border-top: 1px solid var(--sbn-border);
  display: flex;
  align-items: stretch;
  z-index: 900;
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
}
.sbn-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--sbn-muted);
  text-decoration: none;
  font-size: 9.5px;
  font-weight: 700;
  font-family: var(--sbn-font-sans);
  transition: color .15s;
  padding: 6px 0;
  border: none;
  background: none;
  cursor: pointer;
}
.sbn-bottom-nav__item svg { transition: color .15s; }
.sbn-bottom-nav__item:hover,
.sbn-bottom-nav__item.is-active { color: var(--sbn-red); }

/* ── Floating notification bell (repositioned for bottom nav) ── */
@media (max-width: 767px) {
  .sbn-notify-btn { display: none; }
  .sbn-wa-share { bottom: 72px; right: 16px; width: 46px; height: 46px; }
}

/* ════════════════════════════════════════════════════════════════
   v3 — Premium Visual Redesign
   Appended layer: overrides refine the base styles above.
════════════════════════════════════════════════════════════════ */

/* ─── 1. Token upgrades ─────────────────────────────────────── */
:root {
  --sbn-radius:    12px;
  --sbn-radius-sm: 8px;
  --sbn-shadow-sm: 0 1px 4px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --sbn-shadow-md: 0 4px 20px rgba(0,0,0,.11), 0 1px 4px rgba(0,0,0,.06);
  --sbn-shadow-lg: 0 10px 36px rgba(0,0,0,.15), 0 2px 8px rgba(0,0,0,.07);
}

/* ─── 2. Page background ───────────────────────────────────── */
.sbn-home { background: #f4f5f7; }

/* ─── 3. Topbar — deeper dark ──────────────────────────────── */
.sbn-topbar {
  background: linear-gradient(135deg, #07090f 0%, #0d1421 100%);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

/* ─── 4. Logo — gradient text ──────────────────────────────── */
.sbn-logo__name {
  background: linear-gradient(160deg, #d42020 0%, #c01b1b 55%, #9e1515 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  font-size: 42px;
  letter-spacing: -1.5px;
}

/* ─── 5. Nav — gradient depth ──────────────────────────────── */
.sbn-nav {
  background: linear-gradient(180deg, #cc1e1e 0%, var(--sbn-red) 60%, #b81818 100%);
  box-shadow: 0 3px 14px rgba(192,27,27,.4), 0 1px 3px rgba(0,0,0,.12);
}
.sbn-nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(192,27,27,.45), 0 2px 6px rgba(0,0,0,.15);
}
.sbn-nav__links > a:hover,
.sbn-nav__links > a.is-active {
  background: rgba(0,0,0,.22);
  border-bottom-color: #ffd280;
  color: #fff;
}

/* ─── 6. Ticker — tighter line ─────────────────────────────── */
.sbn-ticker { border-bottom: 1px solid rgba(0,0,0,.07); }

/* ─── 7. Section headers — pennant ribbon ──────────────────── */
.sbn-sec-head {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 20px;
  align-items: flex-end;
}
.sbn-sec-head::after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--sbn-red) 0%, rgba(192,27,27,.2) 60%, transparent 100%);
  margin-top: 10px;
  grid-column: 1 / -1;
  order: 10;
}
.sbn-sec-head__label h2 {
  display: inline-flex;
  align-items: center;
  background: var(--sbn-red);
  color: #fff;
  padding: 5px 28px 5px 14px;
  border-left: none;
  border-radius: 3px 0 0 3px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .01em;
}
.sbn-sec-head__tabs button {
  background: var(--sbn-white);
  box-shadow: var(--sbn-shadow-sm);
}
.sbn-sec-head__tabs button:hover,
.sbn-sec-head__tabs button.is-active {
  background: var(--sbn-red);
  border-color: var(--sbn-red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(192,27,27,.3);
}

/* ─── 8. Cat header — same pennant style ───────────────────── */
.sbn-cat-header {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 20px;
  align-items: flex-end;
  position: relative;
}
.sbn-cat-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sbn-red) 0%, rgba(192,27,27,.2) 60%, transparent 100%);
}
.sbn-cat-header__title {
  display: inline-flex;
  align-items: center;
  background: var(--sbn-red);
  color: #fff;
  padding: 5px 28px 5px 14px;
  border-left: none;
  border-radius: 3px 0 0 3px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  font-size: 17px;
  line-height: 1.3;
}
.sbn-cat-header__desc { margin-left: 0; }

/* ─── 9. Filter chips ───────────────────────────────────────── */
.sbn-filter-chip {
  background: var(--sbn-white);
  box-shadow: var(--sbn-shadow-sm);
  padding: 5px 16px;
  font-size: 12.5px;
  border-width: 1.5px;
  transition: all .2s;
}
.sbn-filter-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(192,27,27,.18);
}
.sbn-filter-chip--active {
  box-shadow: 0 2px 8px rgba(192,27,27,.28);
}

/* ─── 10. Bento hero — CINEMATIC OVERLAY ───────────────────── */
.sbn-bento-hero {
  position: relative;
  height: 390px;
  background: #0f1219;
}
.sbn-bento-hero__img-wrap {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  width: 100% !important;
  flex-shrink: 0;
}
.sbn-bento-hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,.04)  30%,
    rgba(0,0,0,.48)  60%,
    rgba(0,0,0,.80)  82%,
    rgba(0,0,0,.92)  100%
  );
  pointer-events: none;
}
.sbn-bento-hero__body {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  padding: 22px 22px 26px !important;
  background: transparent !important;
  z-index: 2;
  flex: unset !important;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
}
.sbn-bento-hero__cat { color: #ffd280 !important; }
.sbn-bento-hero__title {
  color: #ffffff !important;
  font-size: 23px !important;
  text-shadow: 0 1px 6px rgba(0,0,0,.55);
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
}
.sbn-bento-hero:hover .sbn-bento-hero__title { color: #ffd280 !important; }
.sbn-bento-hero__excerpt {
  color: rgba(255,255,255,.70) !important;
  font-size: 13px !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
}
.sbn-bento-hero__meta { color: rgba(255,255,255,.52) !important; margin-top: 4px !important; }
.sbn-bento-hero__badge { z-index: 3; }

/* ─── 11. Bento cards ───────────────────────────────────────── */
.sbn-bento-card {
  border-radius: var(--sbn-radius);
  transition: box-shadow .22s, transform .22s;
}
.sbn-bento-card:hover { transform: translateY(-3px); box-shadow: var(--sbn-shadow-md); }
.sbn-bento-card__body {
  padding: 11px 13px 14px;
  border-top: 2px solid var(--sbn-bg);
}
.sbn-bento-card__title { font-size: 14.5px; }

/* ─── 12. Home list grid ────────────────────────────────────── */
.sbn-home-list { gap: 14px; }
.sbn-home-list-item {
  border-radius: 10px;
  transition: box-shadow .22s, transform .22s;
}
.sbn-home-list-item:hover { transform: translateY(-3px); }
.sbn-home-list-item__thumb { height: 120px; }
.sbn-home-list-item__body { padding: 9px 11px 12px; gap: 4px; }
.sbn-home-list-item__title { font-size: 13.5px; }

/* ─── 13. Widget headers — pennant ──────────────────────────── */
.sbn-widget h3 {
  display: inline-flex;
  align-items: center;
  background: var(--sbn-red);
  color: #fff;
  margin: 0 0 14px;
  padding: 6px 22px 6px 12px;
  font-size: 13.5px;
  font-weight: 900;
  font-family: var(--sbn-font-serif);
  border-radius: 3px 0 0 3px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  letter-spacing: .02em;
  line-height: 1.3;
}

/* ─── 14. Trending numbers — styled badge ───────────────────── */
.sbn-trending__num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--sbn-red);
  color: #fff !important;
  opacity: 1 !important;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  font-family: var(--sbn-font-sans);
  font-style: normal;
}
.sbn-trending:nth-child(1) .sbn-trending__num { background: #c9940a; }
.sbn-trending:nth-child(2) .sbn-trending__num { background: #7c9ab0; }
.sbn-trending:nth-child(3) .sbn-trending__num { background: #b36220; }

/* ─── 15. Thumbnail rows ────────────────────────────────────── */
.sbn-thumb { transition: background .15s; border-radius: 8px; padding: 9px 8px; }
.sbn-thumb:hover { background: rgba(192,27,27,.04); }
.sbn-thumb__img { border-radius: 8px; overflow: hidden; }
.sbn-thumb__img img { transition: transform .35s; }
.sbn-thumb:hover .sbn-thumb__img img { transform: scale(1.08); }

/* ─── 16. Col lead ──────────────────────────────────────────── */
.sbn-col-lead__img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sbn-shadow-sm);
}

/* ─── 17. Category grid ─────────────────────────────────────── */
.sbn-cat-grid__item {
  border-radius: 10px;
  border: 1.5px solid var(--sbn-border);
  background: var(--sbn-white);
  transition: all .2s;
}
.sbn-cat-grid__item:hover {
  border-color: var(--sbn-red);
  transform: translateY(-2px);
  box-shadow: var(--sbn-shadow-sm);
}

/* ─── 18. EPaper widget ─────────────────────────────────────── */
.sbn-epaper-widget { border-radius: var(--sbn-radius); overflow: hidden; }

/* ─── 19. Ad placeholder — warmer ──────────────────────────── */
.sbn-ad-placeholder {
  background: linear-gradient(135deg, #fdf5f5 0%, #fffbf0 100%);
  border: 2px dashed rgba(192,27,27,.18);
  border-radius: 8px;
  color: #b08080;
}

/* ─── 20. Adstrip ───────────────────────────────────────────── */
.sbn-adstrip { border-radius: var(--sbn-radius); overflow: hidden; }

/* ─── 21. Sections dropdown items ──────────────────────────── */
.sbn-sections__item { border-radius: 10px; }
.sbn-sections__item:hover { background: var(--sbn-red-light); transform: translateX(2px); transition: all .15s; }

/* ─── 22. Topbanner ─────────────────────────────────────────── */
.sbn-topbanner {
  background: var(--sbn-white);
  border-bottom: 1px solid var(--sbn-border);
}

/* ─── 23. Main breathing room ───────────────────────────────── */
.sbn-main { gap: 42px; padding: 30px 0 52px; }
.sbn-bento { gap: 16px; }
.sbn-content-sidebar { gap: 28px; }

/* ─── 24. Footer top accent ─────────────────────────────────── */
.sbn-footer { border-top: 3px solid var(--sbn-red); }

/* ─── 25. Responsive: revert overlay at ≤ 900px (row layout) ── */
@media (max-width: 900px) {
  .sbn-bento-hero {
    height: auto;
    flex-direction: row !important;
    background: var(--sbn-white);
  }
  .sbn-bento-hero__img-wrap {
    position: relative !important;
    inset: unset !important;
    width: 44% !important;
    height: 100% !important;
    min-height: 180px;
    flex-shrink: 0 !important;
  }
  .sbn-bento-hero__body {
    position: relative !important;
    bottom: auto !important; left: auto !important; right: auto !important;
    background: var(--sbn-white) !important;
    flex: 1 !important;
    padding: 14px 16px !important;
  }
  .sbn-bento-hero__title { color: var(--sbn-ink) !important; font-size: 16px !important; text-shadow: none; }
  .sbn-bento-hero:hover .sbn-bento-hero__title { color: var(--sbn-red) !important; }
  .sbn-bento-hero__cat    { color: var(--sbn-red) !important; }
  .sbn-bento-hero__excerpt { color: var(--sbn-ink-soft) !important; }
  .sbn-bento-hero__meta   { color: var(--sbn-muted) !important; }

  .sbn-sec-head__label h2 { font-size: 15px; }
  .sbn-cat-header__title  { font-size: 15px; }
}

/* ─── 26. Responsive: column layout ≤ 768px ────────────────── */
@media (max-width: 768px) {
  .sbn-bento-hero {
    flex-direction: column !important;
  }
  .sbn-bento-hero__img-wrap {
    position: relative !important;
    inset: unset !important;
    width: 100% !important;
    height: 220px !important;
    flex-shrink: 0 !important;
  }
  .sbn-bento-hero__body {
    position: relative !important;
    bottom: auto !important; left: auto !important; right: auto !important;
    background: var(--sbn-white) !important;
    flex: unset !important;
    padding: 13px 14px !important;
  }
  .sbn-bento-hero__title  { color: var(--sbn-ink) !important; font-size: 16px !important; text-shadow: none; }
  .sbn-bento-hero__cat    { color: var(--sbn-red) !important; }
  .sbn-bento-hero__excerpt { color: var(--sbn-ink-soft) !important; }
  .sbn-bento-hero__meta   { color: var(--sbn-muted) !important; }
}

/* ─── 27. Small phone ≤ 600px ───────────────────────────────── */
@media (max-width: 600px) {
  .sbn-sec-head__label h2 { font-size: 13px; padding: 4px 22px 4px 10px; }
  .sbn-cat-header__title  { font-size: 13px; padding: 4px 22px 4px 10px; }
  .sbn-widget h3          { font-size: 12.5px; }
}

/* ── Filter: bento without hero ─────────────────────────────── */
.sbn-bento--no-hero {
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto !important;
}
.sbn-bento--no-hero .sbn-bento-card {
  grid-column: auto !important;
  grid-row: auto !important;
  height: auto !important;
}
/* restore card heights when not in overlay context */
.sbn-bento--no-hero .sbn-bento-card__img { height: 160px; }

/* ── Fix: active chip & section header text ─────────────────── */
/* Premium block set .sbn-filter-chip{background:#fff} which overwrote
   the earlier .sbn-filter-chip--active{background:red} at equal
   specificity. Re-declare active + hover with the same specificity
   but later position to win the cascade. */
.sbn-filter-chip--active,
.sbn-filter-chip:hover {
  background: var(--sbn-red) !important;
  border-color: var(--sbn-red) !important;
  color: #fff !important;
}
.sbn-filter-chip--active {
  box-shadow: 0 2px 8px rgba(192,27,27,.30) !important;
}

/* Section header pennant: h2 is inline-flex so text is rendered
   inside a red box — color must be white */
.sbn-sec-head__label h2,
.sbn-cat-header__title {
  color: #fff !important;
}

/* ── Feature col: single-column fills width gracefully ──────── */
/* When auto-fit has only 1 col it grows to 1fr (full width).
   Show the col content in a 2-column side-by-side layout so
   it doesn't look like a thin column stretched wide. */
.sbn-feature-cols:has(> .sbn-feature-col:only-child) {
  grid-template-columns: 1fr !important;
}
.sbn-feature-cols:has(> .sbn-feature-col:only-child) .sbn-feature-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0 20px;
  align-items: start;
}
.sbn-feature-cols:has(> .sbn-feature-col:only-child) .sbn-feature-col-head {
  grid-column: 1 / -1;
}
.sbn-feature-cols:has(> .sbn-feature-col:only-child) .sbn-col-lead {
  grid-column: 1;
}
.sbn-feature-cols:has(> .sbn-feature-col:only-child) .sbn-col-lead__img {
  height: 170px;
}
.sbn-feature-cols:has(> .sbn-feature-col:only-child) .sbn-thumb {
  grid-column: 2;
}

/* Fallback for browsers without :has() — just hide the blank space */
@supports not selector(:has(*)) {
  .sbn-feature-cols {
    grid-template-columns: repeat(auto-fit, minmax(260px, 360px)) !important;
  }
}

/* 2-col feature group: make panel intro more compact */
.sbn-feature-panel-intro {
  display: none;
}

/* ── Fix: blank space below single-section feature col ──────── */
/* When only 1 category column is shown (e.g. छत्तीसगढ़), the
   feature panel / content-main can inherit height from the taller
   sidebar column. Clamp everything to natural content height. */
.sbn-content-main        { align-self: start; }
.sbn-feature-panel       { height: auto; min-height: 0; }
.sbn-feature-cols        { align-content: start; align-items: start; }
.sbn-feature-col         { align-self: start; }
.sbn-feature-sections    { align-items: start; }

/* ── Fix: mobile gap reset (premium block overrides gap:0) ──── */
/* The premium block adds .sbn-main{gap:42px} without a media
   query. It comes after the mobile @media rule so it wins.
   Re-assert gap:0 for mobile here at the very end. */
@media (max-width: 767px) {
  .sbn-main              { gap: 0 !important; }
  .sbn-cat-header        { margin-bottom: 0 !important; }
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR v4 — Premium Dark Edition
   Transforms flat-red bar → authoritative dark header
   ══════════════════════════════════════════════════════════════ */

/* ── 1. Topbar: deeper dark ─────────────────────────────────── */
.sbn-topbar {
  background: #080c12 !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  height: 32px !important;
}
.sbn-topbar a { color: rgba(255,255,255,.5) !important; font-size: 11px !important; }
.sbn-topbar a:hover { color: var(--sbn-gold) !important; }
.sbn-edition {
  background: var(--sbn-red) !important;
  font-size: 10px !important;
  letter-spacing: .08em !important;
}

/* ── 2. Masthead: polished white ────────────────────────────── */
.sbn-masthead {
  background: #fff !important;
  border-top: 3px solid var(--sbn-red) !important;
  border-bottom: 1px solid rgba(0,0,0,.07) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.05) !important;
}
.sbn-logo__name {
  font-size: 44px !important;
  letter-spacing: -1.5px !important;
  color: transparent !important;
  background: linear-gradient(135deg, #b01515 0%, #c01b1b 40%, #8b0000 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: none !important;
}
.sbn-logo__rule span {
  background: linear-gradient(90deg, transparent, #c9940a 30%, #c9940a 70%, transparent) !important;
}
.sbn-logo__rule i {
  background: #c9940a !important;
  width: 7px !important; height: 7px !important;
  box-shadow: 0 0 0 3px rgba(201,148,10,.15) !important;
}
.sbn-logo__tag {
  color: #999 !important;
  letter-spacing: .14em !important;
  font-size: 9px !important;
}

/* ── 3. Primary nav: deep charcoal ─────────────────────────── */
.sbn-nav {
  background: #111827 !important;
  border-bottom: 2.5px solid var(--sbn-red) !important;
  box-shadow: none !important;
  transition: box-shadow .25s ease, background .25s ease !important;
}
.sbn-nav.is-scrolled {
  background: #0a0f1a !important;
  box-shadow: 0 4px 28px rgba(0,0,0,.55) !important;
}
.sbn-nav__inner { height: 54px !important; }

/* ── 4. Nav links on dark bg ────────────────────────────────── */
.sbn-nav__home {
  color: rgba(255,255,255,.88) !important;
  border-right: 1px solid rgba(255,255,255,.09) !important;
  padding: 0 16px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: -.2px !important;
}
.sbn-nav__home:hover {
  background: rgba(255,255,255,.06) !important;
  color: #fff !important;
}
.sbn-nav__links > a {
  color: rgba(255,255,255,.68) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  padding: 0 11px !important;
  border-bottom: 3px solid transparent !important;
  letter-spacing: .01em !important;
  transition: color .15s, border-color .15s !important;
}
.sbn-nav__links > a:hover,
.sbn-nav__links > a.is-active {
  color: #fff !important;
  background: none !important;
  border-bottom-color: var(--sbn-red) !important;
}

/* ── 5. Right-side tools ────────────────────────────────────── */
.sbn-nav-tool {
  color: rgba(255,255,255,.68) !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  padding: 5px 10px !important;
  font-weight: 600 !important;
}
.sbn-nav-tool:hover {
  background: rgba(255,255,255,.09) !important;
  color: #fff !important;
}
.sbn-nav-lang {
  color: rgba(255,255,255,.75) !important;
  border-color: rgba(255,255,255,.2) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
}
.sbn-nav-lang:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.45) !important;
  color: #fff !important;
}

/* ── 6. Sections dropdown ───────────────────────────────────── */
.sbn-sections__btn {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  letter-spacing: .01em !important;
  transition: background .15s, border-color .15s, color .15s !important;
}
.sbn-sections__btn:hover {
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.28) !important;
  color: #fff !important;
}
.sbn-sections__caret { opacity: .65; font-size: 11px; }

/* ── 7. Mobile nav bar ──────────────────────────────────────── */
.sbn-nav__mobile-logo {
  color: #fff !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  letter-spacing: -.4px !important;
  font-family: var(--sbn-font-serif) !important;
}
.sbn-nav__burger span {
  background: rgba(255,255,255,.9) !important;
  width: 22px !important;
  height: 2px !important;
  border-radius: 2px !important;
}
.sbn-nav__mob-search {
  color: rgba(255,255,255,.85) !important;
}
.sbn-nav__mob-search:hover {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
}
.sbn-nav__mob-epaper {
  background: var(--sbn-red) !important;
  color: #fff !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  padding: 4px 10px !important;
  border-radius: 5px !important;
  letter-spacing: .04em !important;
  box-shadow: 0 1px 6px rgba(192,27,27,.45) !important;
}

/* ── 8. Quicknav category pill bar ─────────────────────────── */
.sbn-quicknav {
  background: #1a2035 !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.2) !important;
}
.sbn-quicknav__row a {
  color: rgba(255,255,255,.62) !important;
  border-color: rgba(255,255,255,.12) !important;
  background: rgba(255,255,255,.04) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.sbn-quicknav__row a:hover,
.sbn-quicknav__row a.is-active {
  background: var(--sbn-red) !important;
  color: #fff !important;
  border-color: var(--sbn-red) !important;
}

/* ── 9. Mobile-specific nav overrides ──────────────────────── */
@media (max-width: 767px) {
  .sbn-nav {
    background: #111827 !important;
    height: 54px !important;
    border-bottom: 2px solid var(--sbn-red) !important;
  }
  .sbn-quicknav {
    top: 54px !important;
    background: #1a2035 !important;
  }
  .sbn-quicknav__row { height: 42px !important; }
  .sbn-ticker { margin-top: 54px !important; }
}

/* ══════════════════════════════════════════════════════════════
   SNV — New Navbar  (replaces sbn-nav / sbn-quicknav)
   Classes: .snv  .snv__bar  .snv__logo  .snv__links  .snv__strip
   .snv__d = desktop-only   .snv__m = mobile-only
   ══════════════════════════════════════════════════════════════ */

/* ── Base reset ─────────────────────────────────────────────── */
.snv { position: sticky; top: 0; z-index: 500; }

/* ── Bar ────────────────────────────────────────────────────── */
.snv__bar {
  background: #0f172a;
  border-bottom: 3px solid #c01b1b;
  box-shadow: 0 3px 18px rgba(0,0,0,.4);
}
.snv__inner {
  display: flex;
  align-items: center;
  height: 58px;
  gap: 0;
}

/* ── Burger ─────────────────────────────────────────────────── */
.snv__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px 8px 0;
  flex-shrink: 0;
}
.snv__burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.88);
  border-radius: 2px;
  transition: all .2s;
}

/* ── Logo ───────────────────────────────────────────────────── */
.snv__logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  flex-shrink: 0;
  padding-right: 20px;
  margin-right: 4px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.snv__logo-text {
  font-family: var(--sbn-font-serif);
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.4px;
  line-height: 1;
  white-space: nowrap;
}
.snv__logo-dot {
  width: 8px; height: 8px;
  background: #c01b1b;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(192,27,27,.25), 0 0 8px rgba(192,27,27,.5);
}

/* ── Desktop nav links ──────────────────────────────────────── */
.snv__links {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  overflow: hidden;
  min-width: 0;
}
.snv__link {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  padding: 0 11px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  font-family: var(--sbn-font-sans);
  letter-spacing: .01em;
  transition: color .15s, border-color .15s;
}
.snv__link:hover,
.snv__link.is-active {
  color: #fff;
  border-bottom-color: #c01b1b;
}

/* ── Right tools container ──────────────────────────────────── */
.snv__tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  height: 100%;
  padding-left: 6px;
}
.snv__d { display: flex; align-items: center; }
.snv__m { display: none; }

/* ── Sections dropdown ──────────────────────────────────────── */
.snv__sections { position: relative; }
.snv__sec-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sbn-font-sans);
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
.snv__sec-btn:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.snv__sec-btn i { font-style: normal; font-size: 10px; opacity: .65; }
.snv__sec-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
  min-width: 240px;
  padding: 8px;
  z-index: 600;
}
.snv__sec-panel.is-open { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.snv__sec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 11px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .12s;
}
.snv__sec-item:hover { background: #fff0f0; }
.snv__sec-item strong { font-size: 12.5px; color: #1a1a1a; font-weight: 800; font-family: var(--sbn-font-sans); }
.snv__sec-item span   { font-size: 10.5px; color: #888; font-family: var(--sbn-font-sans); }

/* ── Icon button (search) ───────────────────────────────────── */
.snv__icon-btn {
  color: rgba(255,255,255,.72);
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.snv__icon-btn:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── ePaper pill ────────────────────────────────────────────── */
.snv__epaper {
  background: #c01b1b;
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .03em;
  font-family: var(--sbn-font-sans);
  box-shadow: 0 2px 10px rgba(192,27,27,.4);
  transition: background .15s, box-shadow .15s;
}
.snv__epaper:hover { background: #a01515; box-shadow: 0 4px 14px rgba(192,27,27,.6); }

/* ── Language toggle ────────────────────────────────────────── */
.snv__lang {
  color: rgba(255,255,255,.75);
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 11px;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: .04em;
  font-family: var(--sbn-font-sans);
  transition: all .15s;
}
.snv__lang:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.45); color: #fff; }

/* ── Category strip ─────────────────────────────────────────── */
.snv__strip {
  background: #1b2640;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: none;
}
.snv__strip-row {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  height: 42px;
  gap: 6px;
  padding: 0 14px;
}
.snv__strip-row::-webkit-scrollbar { display: none; }
.snv__strip-link {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1.5px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  flex-shrink: 0;
  font-family: var(--sbn-font-sans);
  transition: all .15s;
}
.snv__strip-link:hover,
.snv__strip-link.is-active {
  background: #c01b1b;
  color: #fff;
  border-color: #c01b1b;
  box-shadow: 0 2px 8px rgba(192,27,27,.4);
}

/* ── Tablet ≤ 900px ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .snv__burger { display: flex; }
  .snv__links  { display: none; }
  .snv__d      { display: none !important; }
  .snv__strip  { display: block; }
}

/* ── Mobile ≤ 767px (fixed) ─────────────────────────────────── */
@media (max-width: 767px) {
  .snv {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
  }
  .snv__inner { height: 54px; }
  /* Logo center on mobile */
  .snv__logo {
    flex: 1;
    justify-content: center;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  .snv__logo-text { font-size: 19px; }
  /* Show mobile-only items */
  .snv__m { display: flex !important; }
  /* Mobile ePaper pill */
  .snv__m.snv__epaper {
    font-size: 10.5px;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(192,27,27,.45);
  }
  /* Strip still fixed below bar */
  .snv__strip {
    position: fixed;
    top: 54px; left: 0; right: 0;
    z-index: 999;
  }
  /* Push page content below fixed nav (54px bar) + strip (42px) */
  .sbn-ticker { margin-top: calc(54px + 42px) !important; }
}

/* ── Hide old sbn-nav (replaced by .snv) ───────────────────── */
.sbn-nav     { display: none !important; }
.sbn-quicknav{ display: none !important; }

/* ══════════════════════════════════════════════════════════════
   HEADER LIGHT THEME — remove dark colours
   ══════════════════════════════════════════════════════════════ */

/* Topbar: lighter utility strip */
.sbn-topbar {
  background: #f4f4f6 !important;
  border-bottom: 1px solid #e0e0e8 !important;
  height: 32px !important;
}
.sbn-topbar a          { color: #555 !important; }
.sbn-topbar a:hover    { color: #c01b1b !important; }
.sbn-edition           { background: #c01b1b !important; color: #fff !important; }
.sbn-topbar__left,
.sbn-topbar__right     { color: #555 !important; }

/* Navbar bar: white */
.snv__bar {
  background: #ffffff !important;
  border-bottom: 3px solid #c01b1b !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.08) !important;
}
.snv.is-scrolled .snv__bar {
  box-shadow: 0 4px 20px rgba(0,0,0,.14) !important;
}

/* Logo: red text */
.snv__logo-text {
  color: #c01b1b !important;
}
.snv__logo-dot {
  background: #c01b1b !important;
  box-shadow: 0 0 0 3px rgba(192,27,27,.15) !important;
}
.snv__logo { border-right-color: #e5e7eb !important; }

/* Nav links: dark text */
.snv__link           { color: #333 !important; border-bottom-color: transparent !important; }
.snv__link:hover,
.snv__link.is-active { color: #c01b1b !important; border-bottom-color: #c01b1b !important; }

/* Sections button */
.snv__sec-btn {
  background: #f4f4f6 !important;
  border-color: #ddd !important;
  color: #333 !important;
}
.snv__sec-btn:hover {
  background: #ffe8e8 !important;
  border-color: #c01b1b !important;
  color: #c01b1b !important;
}

/* Search icon */
.snv__icon-btn        { color: #444 !important; }
.snv__icon-btn:hover  { background: #f4f4f6 !important; color: #c01b1b !important; }

/* Language toggle */
.snv__lang        { color: #444 !important; border-color: #ccc !important; }
.snv__lang:hover  { background: #f4f4f6 !important; border-color: #c01b1b !important; color: #c01b1b !important; }

/* Hamburger: dark lines */
.snv__burger span { background: #333 !important; }

/* Mobile logo text */
.snv__logo-text { color: #c01b1b !important; }

/* Mobile ePaper pill — keep red */
.snv__epaper { background: #c01b1b !important; color: #fff !important; }

/* Category strip: light gray */
.snv__strip {
  background: #f8f9fc !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.06) !important;
}
.snv__strip-link {
  color: #444 !important;
  border-color: #ddd !important;
  background: #fff !important;
}
.snv__strip-link:hover,
.snv__strip-link.is-active {
  background: #c01b1b !important;
  color: #fff !important;
  border-color: #c01b1b !important;
  box-shadow: 0 2px 8px rgba(192,27,27,.3) !important;
}

/* Drawer head: white instead of dark navy */
.sbn-drawer__head {
  background: #fff !important;
  border-bottom: 3px solid #c01b1b !important;
}
.sbn-drawer__head strong  { color: #c01b1b !important; }
.sbn-drawer__close {
  background: #f4f4f6 !important;
  border-color: #ddd !important;
  color: #333 !important;
}
