@import url("https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Hindi:ital@0;1&display=swap");

:root {
  --news-red: #e21d2b;
  --news-red-dark: #b90f1c;
  --ink: #12141a;
  --muted: #68707d;
  --paper: #fff;
  --soft: #f5f6f8;
  --line: #e6e8ec;
  --navy: #0c1f3d;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, .07);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, .14);
  --font-news: "Tiro Devanagari Hindi", "Nirmala UI", "Mangal", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-news);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1100;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 0 0 8px 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.top-strip {
  padding: 7px 0;
  color: #fff;
  background: #101216;
  font-size: .78rem;
  letter-spacing: .02em;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #ff3949;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,57,73,.16);
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 50% { opacity: .45; transform: scale(.85); } }

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 6px 24px rgba(15,23,42,.04);
  backdrop-filter: blur(12px);
}
.navbar { min-height: 76px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  display: block;
  width: 190px;
  height: 58px;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--news-red);
  border-radius: 4px;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-2deg);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong { font-size: 1.2rem; font-weight: 800; letter-spacing: -.015em; }
.brand-copy small {
  margin-top: 5px;
  color: var(--news-red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .35em;
}
.nav-link {
  position: relative;
  margin: 0 2px;
  color: #2c3038;
  font-size: .92rem;
  font-weight: 650;
}
.nav-link:hover, .nav-link.active { color: var(--news-red); }
.nav-link.active::after {
  position: absolute;
  right: 12px;
  bottom: 2px;
  left: 12px;
  height: 2px;
  background: var(--news-red);
  content: "";
}
.menu-parent {
  position: relative;
  display: flex;
  align-items: center;
}
.submenu-toggle {
  width: 22px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
}
.submenu-toggle span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #59606b;
  border-bottom: 2px solid #59606b;
  transform: translateY(-2px) rotate(45deg);
}
.menu-dropdown .dropdown-menu {
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(15,23,42,.14);
}
.menu-dropdown .dropdown-item {
  padding: 9px 12px;
  border-radius: 7px;
  font-size: .9rem;
  font-weight: 650;
}
.menu-dropdown .dropdown-item:hover,
.menu-dropdown .dropdown-item.active {
  color: var(--news-red);
  background: rgba(226,29,43,.08);
}
@media (min-width: 992px) {
  .menu-parent > .nav-link {
    z-index: 2;
    padding-right: 4px;
  }
  .menu-parent > .submenu-toggle {
    position: relative;
    z-index: 2;
    flex: 0 0 22px;
  }
  .menu-dropdown .dropdown-menu,
  .menu-dropdown .dropdown-menu[data-bs-popper] {
    top: calc(100% + 8px) !important;
    right: auto !important;
    left: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }
  .menu-dropdown .dropdown-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 10px;
    content: "";
  }
  .menu-dropdown:hover .dropdown-menu {
    display: block;
  }
}
.icon-btn {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: var(--soft);
  border: 0;
  border-radius: 50%;
}
.icon-btn:hover { color: #fff; background: var(--news-red); }
.icon-btn svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(226,29,43,.2); }
.search-panel {
  display: grid;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid transparent;
  transition: max-height .3s ease, border-color .3s ease;
}
.search-panel.open { max-height: 100px; border-color: var(--line); }
.search-box { display: flex; gap: 10px; max-width: 720px; margin: auto; }
.form-control {
  min-height: 48px;
  border-color: var(--line);
  border-radius: 4px;
}
.form-control:focus {
  border-color: var(--news-red);
  box-shadow: 0 0 0 .2rem rgba(226,29,43,.12);
}
.btn-news {
  padding-inline: 24px;
  color: #fff;
  background: var(--news-red);
  border-radius: 4px;
  font-weight: 700;
}
.btn-news:hover { color: #fff; background: var(--news-red-dark); }
.category-load-more { margin-top: 30px; text-align: center; }
.category-load-more p { min-height: 24px; margin: 10px 0 0; color: var(--muted); font-size: .85rem; }
.category-load-more .btn:disabled { cursor: wait; opacity: .75; }

.ticker {
  color: #fff;
  background: var(--news-red);
  overflow: hidden;
}
.ticker-label {
  z-index: 1;
  flex: 0 0 auto;
  padding: 12px 20px 11px 0;
  background: var(--news-red);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.ticker-window { overflow: hidden; }
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.ticker-track span {
  position: relative;
  padding: 12px 44px;
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 600;
}
.ticker-track span::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}
@keyframes ticker { to { transform: translateX(-55%); } }

.hero-section { padding: 34px 0 18px; }
.hero-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #16253a;
  border-radius: 12px;
}
.hero-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,9,19,.92) 0%, rgba(4,9,19,.62) 50%, rgba(4,9,19,.12) 100%);
}
.hero-content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 720px;
  padding: clamp(24px, 6vw, 58px);
}
.category-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px 5px;
  color: #fff;
  background: var(--news-red);
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 800;
}
.hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.03em;
}
.hero-content p { max-width: 620px; margin-bottom: 22px; color: rgba(255,255,255,.82); font-size: 1rem; }
.news-meta { display: flex; gap: 20px; color: rgba(255,255,255,.68); font-size: .78rem; font-weight: 600; }
.news-meta span + span { position: relative; }
.news-meta span + span::before { position: absolute; top: 50%; left: -12px; width: 3px; height: 3px; background: currentColor; border-radius: 50%; content: ""; }
.news-meta.dark { color: #8a9099; }

.side-stories { display: grid; height: 100%; gap: 18px; grid-template-rows: 1fr 1fr; }
.side-story {
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 28px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  border-radius: 12px;
}
.side-story::after {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  border: 35px solid rgba(255,255,255,.07);
  border-radius: 50%;
  content: "";
}
.story-blue { background: linear-gradient(135deg, #0a2b59, #145da0); }
.story-gold { background: linear-gradient(135deg, #9e4b08, #df8a17); }
.side-story .category-pill { align-self: flex-start; }
.side-story h2 { position: relative; z-index: 1; margin-bottom: 20px; font-size: 1.55rem; font-weight: 800; line-height: 1.3; }

.content-section { padding: 72px 0; }
.section-muted { background: var(--soft); }
.section-heading {
  display: flex;
  margin-bottom: 30px;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.section-heading.compact { align-items: center; }
.section-heading h2, .popular-panel h2 { margin: 2px 0 0; font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 900; }
.section-heading h2::after {
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 9px;
  background: var(--news-red);
  content: "";
}
.eyebrow {
  color: var(--news-red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: #ffb5ba; }
.view-all { color: var(--news-red); font-size: .88rem; font-weight: 800; white-space: nowrap; }
.view-all:hover { color: var(--news-red-dark); }

.news-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(21,29,43,.1); }
.card-visual {
  position: relative;
  display: flex;
  height: 180px;
  padding: 18px;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.card-visual img,
.related-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-visual:has(img)::before,
.card-visual:has(img)::after {
  display: none;
}
.related-visual {
  position: relative;
  overflow: hidden;
}
.ticker-track a {
  color: inherit;
  text-decoration: none;
}
.article-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 28px auto;
  border-radius: 10px;
  object-fit: cover;
}
.card-visual::before, .card-visual::after { position: absolute; content: ""; border-radius: 50%; }
.card-visual::before { width: 190px; height: 190px; right: -35px; top: -60px; border: 35px solid rgba(255,255,255,.12); }
.card-visual::after { width: 90px; height: 90px; left: 25px; top: 25px; background: rgba(255,255,255,.1); }
.card-visual span { z-index: 1; font-size: 1.45rem; font-weight: 900; }
.visual-weather { background: linear-gradient(145deg, #18599b, #5bb8df); }
.visual-tech { background: linear-gradient(145deg, #2f1b69, #824bc8); }
.visual-city { background: linear-gradient(145deg, #064f45, #20a17b); }
.visual-health { background: linear-gradient(145deg, #941d4b, #e34b72); }
.card-body { padding: 22px; }
.card-category { color: var(--news-red); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.news-card h3 { margin: 8px 0 10px; font-size: 1.15rem; font-weight: 800; line-height: 1.42; }
.news-card h3 a:hover, .list-story h3 a:hover, .popular-list a:hover { color: var(--news-red); }
.news-card p, .list-story p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

.story-list { background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.list-story { display: grid; padding: 26px; gap: 22px; grid-template-columns: auto 1fr; }
.list-story + .list-story { border-top: 1px solid var(--line); }
.story-number { color: #d5d9df; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.list-story h3 { margin: 5px 0 7px; font-size: 1.25rem; font-weight: 800; }
.list-story p { margin: 0; }
.popular-panel {
  padding: 30px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
}
.popular-panel h2 { margin-bottom: 24px; }
.popular-list { margin: 0; padding-left: 28px; }
.popular-list li { padding: 14px 0 14px 10px; border-top: 1px solid rgba(255,255,255,.12); }
.popular-list li::marker { color: #ff6d76; font-size: 1.15rem; font-weight: 900; }
.popular-list a { font-size: .94rem; font-weight: 700; line-height: 1.5; }

.newsletter { padding: 60px 0; color: #fff; background: var(--news-red); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.newsletter h2 { margin: 5px 0 8px; font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 900; }
.newsletter p { margin: 0; color: rgba(255,255,255,.78); }
.newsletter-form { display: flex; width: min(100%, 470px); flex: 0 0 auto; gap: 10px; }
.newsletter-form .form-control { border: 0; }
.newsletter-form .btn { padding-inline: 24px; white-space: nowrap; }
.whatsapp-newsletter {
  padding: 42px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, #08783f 0%, #0da35a 56%, #066b37 100%);
}
.whatsapp-newsletter .newsletter-inner {
  padding: 24px 28px;
  background: rgba(0,56,31,.22);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(0,0,0,.16);
}
.whatsapp-newsletter .newsletter-inner > div:not(.whatsapp-newsletter-copy),
.whatsapp-newsletter .newsletter-form {
  display: none;
}
.whatsapp-newsletter-copy {
  max-width: 760px;
}
.whatsapp-newsletter-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 5px 9px 3px;
  color: #d9ffeb;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  letter-spacing: .08em;
}
.whatsapp-newsletter-copy h2 {
  margin-bottom: 7px;
}
.whatsapp-newsletter-copy p {
  color: rgba(255,255,255,.82);
}
.whatsapp-subscribe-btn {
  display: inline-flex;
  min-height: 56px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #075f33;
  background: #fff;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0,0,0,.2);
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-subscribe-btn svg {
  width: 24px;
  height: 24px;
  color: #13a85d;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.whatsapp-subscribe-btn:hover {
  color: #075f33;
  background: #eafff4;
  box-shadow: 0 22px 45px rgba(0,0,0,.24);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  padding: 50px 0 22px;
  color: #bbc0ca;
  background:
    linear-gradient(180deg, #111520 0%, #090c13 100%);
  border-top: 5px solid var(--news-red);
}
.site-footer > .container {
  width: calc(100% - 64px);
  max-width: 1560px;
}
.mobile-bottom-nav { display: none; }
.push-subscribe-fab {
  position: fixed;
  z-index: 1210;
  right: 16px;
  bottom: 20px;
  display: inline-flex;
  min-height: 44px;
  padding: 10px 15px;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #e21d2b;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(226,29,43,.28);
  font-size: .82rem;
  font-weight: 850;
}
.push-subscribe-fab svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.push-subscribe-fab.is-hidden { display: none; }
.push-subscribe-fab:disabled {
  cursor: wait;
  opacity: .7;
}
.push-subscribe-sheet {
  position: fixed;
  z-index: 1220;
  right: 0;
  top: 0;
  bottom: auto;
  left: 0;
  padding: calc(14px + env(safe-area-inset-top)) 16px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 70%, rgba(255,255,255,0));
}
.push-subscribe-sheet[hidden] {
  display: none;
}
.push-subscribe-card {
  display: grid;
  max-width: 620px;
  margin: 0 auto;
  padding: 22px 18px;
  align-items: center;
  gap: 18px;
  grid-template-columns: 86px 1fr;
  background: #fff;
  box-shadow: 0 -18px 38px rgba(15,23,42,.14);
}
.push-subscribe-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.push-subscribe-copy h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.2rem;
  font-weight: 900;
}
.push-subscribe-copy p {
  margin: 0 0 18px;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.45;
}
.push-subscribe-status {
  min-height: 22px;
  margin: -8px 0 16px;
  color: #d11928;
  font-size: .9rem;
  font-weight: 750;
}
.push-subscribe-status:empty {
  display: none;
}
.push-subscribe-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.push-later-btn,
.push-confirm-btn {
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 750;
}
.push-later-btn {
  color: #2774b8;
  background: transparent;
}
.push-confirm-btn {
  min-width: 150px;
  color: #fff;
  background: #1479d4;
  box-shadow: 0 10px 22px rgba(20,121,212,.2);
}
.push-confirm-btn:disabled {
  cursor: wait;
  opacity: .7;
}
.footer-grid {
  display: grid;
  gap: clamp(36px, 5vw, 86px);
  grid-template-columns: minmax(360px, 1.35fr) repeat(3, minmax(150px, .55fr));
  align-items: start;
}
.footer-brand { color: #fff; }
.footer-logo {
  width: 230px;
  height: auto;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.footer-grid p { max-width: 430px; margin: 22px 0 0; color: #c8d0db; line-height: 1.85; }
.footer-contact-details {
  max-width: 520px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-editor-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-contact-details p { margin: 0 0 10px; color: #aeb5c0; font-size: .75rem; line-height: 1.55; }
.footer-contact-details strong { color: #fff; }
.footer-contact-details a { color: #d9dde4; overflow-wrap: anywhere; }
.footer-contact-details a:hover { color: #fff; }
.footer-addresses { margin-top: 8px; font-size: .76rem; }
.footer-addresses summary { color: #fff; cursor: pointer; font-weight: 700; }
.footer-addresses[open] summary { margin-bottom: 10px; }
.footer-grid h3 {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
}
.footer-grid h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--news-red);
  border-radius: 999px;
  content: "";
}
.footer-grid > div > a:not(.brand) {
  display: flex;
  width: fit-content;
  margin: 12px 0;
  align-items: center;
  gap: 8px;
  color: #b8c1ce;
  font-size: .9rem;
  transition: color .2s ease, transform .2s ease;
}
.footer-grid > div > a:not(.brand)::before {
  width: 5px;
  height: 5px;
  background: rgba(226,29,43,.85);
  border-radius: 50%;
  content: "";
}
.footer-grid > div > a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-bottom {
  display: flex;
  margin-top: 36px;
  padding: 14px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: #9098a5;
  font-size: .78rem;
}
.footer-credit {
  display: inline-flex;
  padding: 7px 11px;
  align-items: center;
  gap: 5px;
  color: #c7ced8;
  background: rgba(226,29,43,.12);
  border: 1px solid rgba(226,29,43,.22);
  border-radius: 999px;
}
.footer-credit a {
  color: #fff;
  font-weight: 800;
}
.footer-credit a:hover {
  color: #ff8e96;
}

@media (max-width: 991.98px) {
  .navbar-collapse { padding: 14px 0 18px; }
  .nav-link { padding: 11px 0; border-top: 1px solid var(--line); }
  .nav-link.active::after { display: none; }
  .menu-parent { display: grid; grid-template-columns: 1fr 42px; }
  .menu-parent > .nav-link { margin-right: 0; }
  .submenu-toggle {
    width: 42px;
    height: 100%;
    border-top: 1px solid var(--line);
  }
  .menu-dropdown .dropdown-menu {
    position: static !important;
    grid-column: 1 / -1;
    margin: 0 0 6px 14px !important;
    padding: 4px;
    border: 0;
    box-shadow: none;
    transform: none !important;
  }
  .menu-dropdown.submenu-open .dropdown-menu {
    display: block;
  }
  .menu-dropdown.submenu-open .submenu-toggle span {
    transform: translateY(2px) rotate(225deg);
  }
  .hero-card { min-height: 460px; }
  .side-stories { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .newsletter-inner { align-items: flex-start; flex-direction: column; }
  .newsletter-form { width: 100%; }
  .site-footer > .container { width: calc(100% - 36px); }
  .footer-grid { gap: 34px; grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 70px;
  }

  .push-subscribe-fab {
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .push-subscribe-sheet {
    top: auto;
    bottom: 0;
    padding-right: 0;
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
    padding-left: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.98) 30%);
  }

  .push-subscribe-card {
    max-width: none;
    padding: 22px 18px 20px;
    grid-template-columns: 74px 1fr;
  }

  .push-subscribe-copy p {
    font-size: .95rem;
  }

  .push-subscribe-actions {
    gap: 12px;
  }

  .push-confirm-btn {
    min-width: 136px;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 1190;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 66px;
    padding: 5px max(5px, env(safe-area-inset-right)) max(5px, env(safe-area-inset-bottom)) max(5px, env(safe-area-inset-left));
    color: #d7deeb;
    background: #07183b;
    border-top: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 -7px 22px rgba(5,15,36,.22);
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 3px 2px 2px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    color: inherit;
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: .66rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .mobile-bottom-nav a.active,
  .mobile-bottom-nav a:hover,
  .mobile-bottom-nav button:hover {
    color: #fff;
  }

  .mobile-bottom-nav a.active::before {
    position: absolute;
    top: -5px;
    right: 20%;
    left: 20%;
    height: 3px;
    background: var(--news-red);
    border-radius: 0 0 3px 3px;
    content: "";
  }

  .mobile-bottom-nav svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
  }

  .top-strip .text-white-50 { display: none; }
  .brand-logo { width: 150px; height: 48px; }
  .brand-mark { width: 42px; height: 42px; font-size: 1.25rem; }
  .brand-copy strong { font-size: 1.03rem; }
  .ticker-track { animation-duration: 18s; }
  .hero-section { padding-top: 18px; }
  .hero-card { min-height: 460px; }
  .hero-content p { display: none; }
  .side-stories { grid-template-columns: 1fr; }
  .side-story { min-height: 220px; }
  .content-section { padding: 50px 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { min-height: 48px; }
  .whatsapp-newsletter { padding: 28px 0; }
  .whatsapp-newsletter .newsletter-inner {
    padding: 20px;
    gap: 18px;
    border-radius: 12px;
  }
  .whatsapp-subscribe-btn {
    width: 100%;
    min-height: 52px;
  }
  .footer-logo {
    width: min(280px, 100%);
    height: auto;
  }
  .footer-brand {
    justify-content: center;
    width: 100%;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 479.98px) {
  .container { --bs-gutter-x: 1.25rem; }
  .brand-logo { width: 132px; height: 44px; }
  .footer-logo {
    width: min(280px, 100%);
    height: auto;
  }
  .brand-copy small { font-size: .66rem; }
  .hero-card { min-height: 420px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(4,9,19,.95), rgba(4,9,19,.16)); }
  .hero-content { padding: 24px; }
  .hero-content h1 { font-size: 1.8rem; }
  .section-heading { align-items: center; }
  .list-story { padding: 20px; gap: 14px; }
  .story-number { font-size: 1.8rem; }
  .popular-panel { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom {
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-credit {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.page-hero {
  padding: 64px 0 54px;
  color: #fff;
  background: linear-gradient(120deg, var(--navy), #173f71);
}
.page-hero .breadcrumb { margin-bottom: 18px; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.45); }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
.page-hero p { max-width: 700px; margin: 16px 0 0; color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.8; }
.category-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.feature-story {
  display: grid;
  height: 430px;
  margin-bottom: 36px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: 12px;
  grid-template-columns: 1.15fr 1fr;
}
.feature-story img { width: 100%; height: 430px; min-height: 0; object-fit: cover; }
.feature-story-content { display: flex; min-width: 0; padding: 34px; flex-direction: column; justify-content: center; }
.feature-story-content h2 { display: -webkit-box; margin: 5px 0 12px; overflow: hidden; font-size: clamp(1.55rem, 2.2vw, 2.15rem); font-weight: 900; line-height: 1.38; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.feature-story-content p { color: rgba(255,255,255,.72); line-height: 1.8; }
.category-ad-panel { display: grid; margin: 0 0 28px; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.category-ad-panel .ad-zone, .category-ad-panel .samvad-ad-zone { width: 100% !important; max-width: 100%; margin: 0; }
.category-ad-panel .ad-zone *, .category-ad-panel .samvad-ad-zone * { max-width: 100%; }
.category-grid .news-card { display: flex; min-width: 0; flex-direction: column; }
.category-grid .card-visual { height: 210px; flex: 0 0 210px; padding: 0; }
.category-grid .card-body { display: flex; padding: 18px; flex: 1; flex-direction: column; }
.category-grid .news-card h3 { display: -webkit-box; min-height: 3em; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.category-grid .news-card p { display: -webkit-box; margin-bottom: 0; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.article-shell { max-width: 850px; margin: auto; }
.article-header { padding: 58px 0 32px; }
.article-header h1 { margin: 10px 0 18px; font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 900; line-height: 1.2; }
.article-lead { color: var(--muted); font-size: 1.15rem; line-height: 1.8; }
.article-image { width: 100%; max-height: 560px; object-fit: cover; border-radius: 12px; }
.article-body { padding: 36px 0 72px; }
.article-body p { margin-bottom: 22px; font-size: 1.06rem; line-height: 2; }
.article-body h2 { margin: 40px 0 16px; font-size: 1.65rem; font-weight: 900; }
.article-quote { margin: 32px 0; padding: 24px 28px; background: var(--soft); border-left: 5px solid var(--news-red); font-size: 1.2rem; font-weight: 700; line-height: 1.7; }
.info-card { height: 100%; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.info-card h2, .info-card h3 { font-weight: 900; }
.info-card p { color: var(--muted); line-height: 1.8; }
.contact-form { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.contact-form .form-label { font-weight: 700; }
.contact-hero { position: relative; padding: 54px 0 80px; overflow: hidden; color: #fff; background: linear-gradient(120deg, #0b1425 0%, #132c50 65%, #8d1720 160%); }
.contact-hero::before { position: absolute; width: 420px; height: 420px; right: -130px; top: -190px; border: 70px solid rgba(255,255,255,.035); border-radius: 50%; content: ""; }
.contact-hero::after { position: absolute; width: 260px; height: 260px; left: 44%; bottom: -210px; background: rgba(226,29,43,.16); border-radius: 50%; filter: blur(4px); content: ""; }
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero .breadcrumb { margin-bottom: 32px; }
.contact-hero .breadcrumb-item, .contact-hero .breadcrumb-item a { color: rgba(255,255,255,.58); }
.contact-hero .breadcrumb-item.active { color: #fff; }
.contact-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.contact-hero-grid { display: grid; gap: 60px; align-items: end; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); }
.contact-kicker { display: inline-flex; margin-bottom: 17px; align-items: center; gap: 9px; color: #ff9fa5; font-size: .73rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-kicker::before { width: 32px; height: 2px; background: var(--news-red); content: ""; }
.contact-hero h1 { max-width: 780px; margin: 0; font-size: clamp(2.35rem, 5vw, 4.45rem); font-weight: 720; line-height: 1.2; letter-spacing: -.025em; }
.contact-hero p { max-width: 690px; margin: 20px 0 0; color: rgba(255,255,255,.72); font-size: 1.02rem; line-height: 1.8; }
.contact-hero-note { padding: 25px; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.contact-hero-note span { display: block; color: #ff9299; font-size: .66rem; font-weight: 900; letter-spacing: .18em; }
.contact-hero-note strong { display: block; margin: 10px 0 14px; font-size: 1.35rem; font-weight: 680; line-height: 1.5; }
.contact-hero-note small { color: rgba(255,255,255,.58); line-height: 1.65; }
.contact-options-section { position: relative; z-index: 2; margin-top: -35px; }
.contact-options-grid { display: grid; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 18px 48px rgba(15,23,42,.12); grid-template-columns: repeat(3, 1fr); }
.contact-option { display: flex; min-width: 0; padding: 25px 27px; align-items: center; gap: 17px; transition: background .2s ease; }
.contact-option + .contact-option { border-left: 1px solid var(--line); }
.contact-option:hover { background: #fafbfc; }
.contact-option-icon { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--news-red); border-radius: 10px; }
.contact-option-icon.navy { background: var(--navy); }
.contact-option-icon.gold { background: #b36b0b; }
.contact-option-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-option > span:last-child { min-width: 0; }
.contact-option small, .contact-option strong, .contact-option em { display: block; }
.contact-option small { margin-bottom: 3px; color: #98a0ab; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-option strong { color: var(--ink); font-size: .96rem; }
.contact-option em { margin-top: 5px; overflow: hidden; color: var(--muted); font-size: .74rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.contact-main-section { padding: 72px 0; background: #f7f8fa; }
.contact-layout { display: grid; gap: 30px; align-items: start; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); }
.contact-form-card { padding: clamp(28px, 4vw, 44px); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.contact-card-heading { padding-bottom: 25px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.contact-card-heading h2 { margin: 6px 0 9px; font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 740; }
.contact-card-heading p { margin: 0; color: var(--muted); }
.contact-form-pro label { display: block; margin-bottom: 8px; color: #363c46; font-size: .81rem; font-weight: 750; }
.contact-form-pro label span { color: var(--news-red); }
.contact-form-pro .form-control, .contact-form-pro .form-select { min-height: 51px; padding: 12px 15px; background-color: #fbfcfd; border-color: #dfe3e8; border-radius: 7px; font-size: .9rem; }
.contact-form-pro textarea.form-control { min-height: 150px; resize: vertical; }
.contact-form-pro .form-control:focus, .contact-form-pro .form-select:focus { background: #fff; border-color: var(--news-red); box-shadow: 0 0 0 4px rgba(226,29,43,.08); }
.contact-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.contact-form-footer p { max-width: 430px; margin: 0; color: #9299a3; font-size: .72rem; line-height: 1.6; }
.contact-submit { min-width: 160px; min-height: 48px; }
.contact-alert { margin-bottom: 25px; padding: 15px 18px; border-radius: 7px; font-size: .88rem; }
.contact-alert.success { color: #11663f; background: #eaf8f1; border: 1px solid #bce8d2; }
.contact-alert.error { color: #99232d; background: #fff0f1; border: 1px solid #f2c1c5; }
.contact-sidebar { display: grid; gap: 20px; position: sticky; top: 115px; }
.contact-details-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--news-red); border-radius: 13px; box-shadow: var(--shadow-sm); }
.contact-details-card h2 { margin: 7px 0 22px; font-size: 1.55rem; font-weight: 750; }
.contact-person { padding: 14px 0; border-top: 1px solid var(--line); }
.contact-person small, .contact-detail-group small { display: block; margin-bottom: 4px; color: var(--news-red); font-size: .68rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.contact-person strong, .contact-person a, .contact-detail-group a { display: block; }
.contact-person strong { color: var(--ink); font-size: .95rem; }
.contact-person a, .contact-detail-group a { color: #4f5966; font-size: .8rem; overflow-wrap: anywhere; }
.contact-detail-group { padding-top: 15px; margin-top: 2px; border-top: 1px solid var(--line); }
.contact-detail-group address { margin: 0; color: #59636f; font-size: .8rem; font-style: normal; line-height: 1.7; }
.contact-newsroom-card { padding: 32px; color: #fff; background: linear-gradient(145deg, #101d35, #183f6c); border-radius: 13px; box-shadow: var(--shadow-sm); }
.contact-newsroom-card h2 { margin: 8px 0 12px; font-size: 1.65rem; font-weight: 700; line-height: 1.45; }
.contact-newsroom-card > p { color: rgba(255,255,255,.68); font-size: .87rem; line-height: 1.75; }
.contact-newsroom-card ul { margin: 25px 0; padding: 0; list-style: none; }
.contact-newsroom-card li { display: grid; padding: 12px 0; gap: 12px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); grid-template-columns: 31px 1fr; color: rgba(255,255,255,.83); font-size: .8rem; line-height: 1.5; }
.contact-newsroom-card li span { display: grid; width: 29px; height: 29px; place-items: center; color: #ff9299; background: rgba(255,255,255,.08); border-radius: 50%; font-size: .66rem; font-weight: 900; }
.contact-newsroom-card > a { display: inline-flex; color: #fff; font-size: .79rem; font-weight: 800; }
.contact-help-card { display: flex; padding: 23px; align-items: center; justify-content: space-between; gap: 20px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--news-red); border-radius: 9px; }
.contact-help-card.career { border-left-color: #b36b0b; }
.contact-help-card span { color: var(--news-red); font-size: .66rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-help-card.career span { color: #9a5a08; }
.contact-help-card h3 { margin: 5px 0 0; font-size: .98rem; font-weight: 690; line-height: 1.45; }
.contact-help-card > a { flex: 0 0 auto; color: var(--news-red); font-size: .72rem; font-weight: 800; text-align: right; }
.search-summary { margin-bottom: 28px; color: var(--muted); }
.empty-state { padding: 60px 24px; text-align: center; background: var(--soft); border-radius: 12px; }

@media (max-width: 991.98px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-story { height: auto; grid-template-columns: 1fr; }
  .feature-story img { height: 340px; min-height: 0; }
  .category-ad-panel { grid-template-columns: 1fr; }
  .contact-hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .contact-hero-note { max-width: 520px; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .contact-option + .contact-option { border-top: 1px solid var(--line); border-left: 0; }
  .contact-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .contact-newsroom-card { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
  .page-hero { padding: 46px 0 40px; }
  .category-grid { grid-template-columns: 1fr; }
  .feature-story img { height: 260px; }
  .feature-story-content { padding: 26px; }
  .feature-story-content h2 { font-size: 1.45rem; }
  .category-grid .card-visual { height: 190px; flex-basis: 190px; }
  .contact-hero { padding: 42px 0 68px; }
  .contact-hero-grid { gap: 32px; }
  .contact-main-section { padding: 52px 0; }
  .contact-form-footer { align-items: flex-start; flex-direction: column; }
  .contact-submit { width: 100%; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .contact-newsroom-card { grid-column: auto; }
}

.home-utility { color: #475569; background: #fff; border-bottom: 1px solid var(--line); }
.home-utility-inner { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 24px; }
.edition-block { display: flex; align-items: center; gap: 10px; }
.edition-icon { display: grid; width: 34px; height: 34px; place-items: center; color: var(--news-red); background: #fff0f1; border-radius: 50%; }
.edition-icon svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.edition-block div { display: flex; align-items: baseline; gap: 7px; }
.edition-block small { color: #94a3b8; font-size: .7rem; }
.edition-block strong { color: var(--ink); font-size: .82rem; }
.utility-links { display: flex; align-items: center; gap: 22px; font-size: .76rem; font-weight: 700; }
.utility-links a:hover { color: var(--news-red); }
.utility-dot { display: inline-block; width: 7px; height: 7px; margin-right: 6px; background: var(--news-red); border-radius: 50%; box-shadow: 0 0 0 4px rgba(226,29,43,.1); }
.whatsapp-link { padding: 8px 13px; color: #087a42; background: #ecf9f2; border-radius: 999px; }
.local-lead-section { padding: 30px 0 24px; background: linear-gradient(180deg, #f7f8fa 0%, #fff 100%); }
.lead-news-grid { display: grid; min-height: 540px; gap: 18px; grid-template-columns: 1.7fr 1fr; grid-template-rows: 1fr 1fr; }
.lead-news-main { position: relative; grid-row: 1 / 3; min-width: 0; overflow: hidden; color: #fff; background: #111; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lead-news-main .carousel-inner, .lead-news-main .carousel-item { min-height: 540px; }
.lead-news-main .carousel-item > img { position: absolute; width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.lead-news-main .carousel-item.active > img { transform: scale(1.045); }
.lead-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,10,18,.88) 0%, rgba(5,10,18,.58) 58%, rgba(5,10,18,.12) 100%), linear-gradient(0deg, rgba(5,10,18,.82), transparent 65%); }
.lead-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: clamp(30px, 4vw, 48px) clamp(58px, 6vw, 76px) clamp(52px, 5vw, 64px); }
.lead-badges { display: flex; align-items: center; gap: 9px; }
.lead-badges .category-pill { margin-bottom: 0; }
.exclusive-badge { padding: 6px 10px 4px; color: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 3px; font-size: .63rem; font-weight: 900; letter-spacing: .12em; }
.lead-copy h1, .lead-copy h2 { display: -webkit-box; max-width: 760px; margin: 16px 0 12px; overflow: hidden; font-size: clamp(1.85rem, 3.1vw, 2.75rem); font-weight: 700; line-height: 1.3; letter-spacing: -.02em; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.lead-copy > p { display: -webkit-box; max-width: 680px; margin: 0 0 20px; overflow: hidden; color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.lead-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.read-story { padding: 10px 15px; flex: 0 0 auto; color: #fff; background: var(--news-red); border-radius: 5px; font-size: .78rem; font-weight: 800; }
.read-story:hover { color: #fff; background: var(--news-red-dark); }
.home-slider-control { z-index: 4; width: 46px; height: 46px; top: 50%; bottom: auto; margin: 0 14px; background: rgba(9,16,28,.58); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; opacity: .9; transform: translateY(-50%); backdrop-filter: blur(8px); }
.home-slider-control:hover { background: var(--news-red); opacity: 1; }
.home-slider-control .carousel-control-prev-icon, .home-slider-control .carousel-control-next-icon { width: 18px; height: 18px; }
.home-slider-indicators { z-index: 5; right: auto; bottom: 22px; left: clamp(58px, 6vw, 76px); margin: 0; gap: 7px; justify-content: flex-start; }
.home-slider-indicators [data-bs-target] { width: 25px; height: 4px; margin: 0; background: rgba(255,255,255,.55); border: 0; border-radius: 99px; opacity: 1; transition: width .25s ease, background .25s ease; }
.home-slider-indicators .active { width: 48px; background: var(--news-red); }
.lead-news-side { position: relative; display: flex; padding: 30px; flex-direction: column; justify-content: space-between; overflow: hidden; color: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.lead-news-side:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15,23,42,.18); }
.lead-news-side::after { position: absolute; right: -55px; bottom: -65px; width: 180px; height: 180px; border: 30px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; }
.lead-side-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lead-side-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,12,24,.2), rgba(5,12,24,.92)); }
.side-card-top, .side-card-bottom { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.card-number { color: rgba(255,255,255,.22); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.side-card-bottom > a { display: grid; width: 36px; height: 36px; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 1.1rem; }
.lead-news-side h2 { position: relative; z-index: 1; margin: auto 0 22px; font-size: 1.48rem; font-weight: 700; line-height: 1.52; letter-spacing: -.01em; }
.lead-red { background: linear-gradient(145deg, #b20e1a, #ed3440); }
.lead-navy { background: linear-gradient(145deg, #101d35, #204f81); }
.local-tag { align-self: flex-start; padding: 5px 9px; color: #fff; background: var(--news-red); font-size: .7rem; font-weight: 800; }
.news-pulse { padding: 0 0 34px; background: #fff; }
.news-pulse-grid { display: grid; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); grid-template-columns: repeat(4, 1fr); }
.news-pulse-grid > div, .news-pulse-grid > a { display: flex; min-height: 82px; padding: 17px 22px; align-items: center; gap: 13px; }
.news-pulse-grid > * + * { border-left: 1px solid var(--line); }
.pulse-icon { display: grid; width: 39px; height: 39px; flex: 0 0 auto; place-items: center; color: #fff; border-radius: 9px; font-size: .72rem; font-weight: 900; }
.pulse-icon.red { background: var(--news-red); }
.pulse-icon.navy { background: var(--navy); }
.pulse-icon.green { background: #138a5b; }
.news-pulse-grid p { display: flex; margin: 0; flex-direction: column; }
.news-pulse-grid strong { font-size: .82rem; }
.news-pulse-grid small { margin-top: 3px; color: #94a3b8; font-size: .68rem; }
.news-pulse-grid > a { color: #fff; background: var(--navy); flex-direction: column; align-items: flex-start; justify-content: center; }
.news-pulse-grid > a span { color: #adb9ca; font-size: .7rem; }
.compact-news-section { padding: 62px 0; }
.local-section-title { display: flex; margin-bottom: 25px; align-items: end; justify-content: space-between; gap: 18px; border-bottom: 2px solid #15171c; }
.local-section-title h2 { margin: 3px 0 9px; font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 750; letter-spacing: -.015em; }
.local-section-title h2::after { display: block; width: 52px; height: 4px; margin-top: 8px; background: var(--news-red); content: ""; }
.local-section-title > a { margin-bottom: 12px; color: var(--news-red); font-size: .83rem; font-weight: 800; }
.local-section-title.mini h2 { font-size: 1.65rem; }
.headline-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.headline-card { display: grid; padding: 16px; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 6px 18px rgba(15,23,42,.035); grid-template-columns: 118px 1fr; transition: transform .2s ease, box-shadow .2s ease; }
.headline-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.headline-thumb { display: grid; min-height: 94px; place-items: center; color: #fff; border-radius: 7px; font-weight: 900; }
.thumb-crime { background: linear-gradient(145deg, #222, #c41d2b); }
.thumb-education { background: linear-gradient(145deg, #382273, #8463d3); }
.thumb-health { background: linear-gradient(145deg, #086d58, #35b18b); }
.thumb-government { background: linear-gradient(145deg, #123a70, #4388c8); }
.local-meta { color: #8a9098; font-size: .72rem; font-weight: 700; }
.headline-card h3, .regional-list h3, .small-story h3, .crime-list h3 { margin: 6px 0 0; font-size: 1rem; font-weight: 650; line-height: 1.62; }
.division-tabs { display: flex; margin: -8px 0 27px; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.division-tabs a { padding: 9px 15px; flex: 0 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 3px; font-size: .78rem; font-weight: 750; }
.division-tabs a.active, .division-tabs a:hover { color: #fff; background: var(--news-red); border-color: var(--news-red); }
.regional-layout { display: grid; gap: 30px; grid-template-columns: 1.25fr 1fr; }
.regional-feature { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); }
.regional-visual { display: flex; min-height: 280px; padding: 25px; align-items: end; color: #fff; background: linear-gradient(145deg, #0f2648, #d32732); }
.regional-visual span { font-size: 2.3rem; font-weight: 900; }
.regional-copy { padding: 25px; }
.regional-copy h3 { margin: 8px 0 12px; font-size: 1.5rem; font-weight: 700; line-height: 1.48; }
.regional-copy p { margin: 0; color: var(--muted); line-height: 1.7; }
.regional-list { background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); }
.regional-list article { display: grid; padding: 16px; gap: 16px; align-items: center; grid-template-columns: 112px 1fr; }
.regional-list article + article { border-top: 1px solid var(--line); }
.regional-thumb { display: block; width: 112px; height: 82px; overflow: hidden; background: #e5e7eb; border-radius: 8px; }
.regional-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.regional-list article:hover .regional-thumb img { transform: scale(1.05); }
.story-index { color: #d0d3d8; font-size: 1.7rem; font-weight: 900; }
.government-grid { display: grid; gap: 15px; grid-template-columns: 1.2fr 1fr; }
.government-main { display: flex; padding: 28px; grid-row: 1 / 3; flex-direction: column; justify-content: end; color: #fff; background: linear-gradient(145deg, #123c35, #1f8c74); border-radius: 7px; }
.government-main h3 { margin: 14px 0 12px; font-size: 1.55rem; font-weight: 700; }
.government-main p { color: rgba(255,255,255,.72); line-height: 1.65; }
.small-story { padding: 22px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--news-red); border-radius: 7px; box-shadow: 0 7px 18px rgba(15,23,42,.04); }
.most-read-list { margin: 0; padding: 10px 27px 10px 50px; background: var(--navy); color: #fff; border-radius: 7px; }
.most-read-list li { padding: 17px 5px; border-bottom: 1px solid rgba(255,255,255,.13); }
.most-read-list li:last-child { border: 0; }
.most-read-list li::marker { color: #ff6570; font-size: 1.25rem; font-weight: 900; }
.most-read-list a { display: grid; gap: 13px; align-items: center; grid-template-columns: 82px 1fr; font-size: .92rem; font-weight: 700; line-height: 1.5; }
.most-read-list img { width: 82px; height: 62px; object-fit: cover; border-radius: 7px; }
.menu-news-section { padding: 62px 0; }
.menu-section-grid { display: grid; gap: 28px; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); }
.menu-section-grid.single-story { grid-template-columns: minmax(0, 1fr); }
.menu-feature-story { display: grid; min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); grid-template-columns: minmax(250px, 1fr) minmax(280px, .9fr); }
.menu-feature-image { display: block; min-height: 330px; overflow: hidden; background: #e5e7eb; }
.menu-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.menu-feature-story:hover .menu-feature-image img { transform: scale(1.035); }
.menu-feature-copy { display: flex; padding: 30px; flex-direction: column; justify-content: center; }
.menu-feature-copy h3 { margin: 9px 0 13px; font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 720; line-height: 1.48; }
.menu-feature-copy p { margin: 0 0 18px; color: var(--muted); font-size: .9rem; line-height: 1.72; }
.section-read-link { align-self: flex-start; color: var(--news-red); font-size: .8rem; font-weight: 800; }
.menu-story-list { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); }
.menu-story-list article { display: grid; padding: 14px; gap: 15px; align-items: center; grid-template-columns: 112px minmax(0, 1fr); }
.menu-story-list article + article { border-top: 1px solid var(--line); }
.menu-story-thumb { display: block; width: 112px; height: 84px; overflow: hidden; background: #e5e7eb; border-radius: 8px; }
.menu-story-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.menu-story-list article:hover img { transform: scale(1.05); }
.menu-story-list h3 { display: -webkit-box; margin: 5px 0 0; overflow: hidden; font-size: .98rem; font-weight: 680; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.section-dark-news { color: #fff; background: #10141c; }
.light-title { border-color: rgba(255,255,255,.22); }
.light-title > a { color: #ff7b84; }
.dark-story-list article { display: grid; padding: 20px 0; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.13); grid-template-columns: auto 1fr; }
.dark-story-list span { color: #ff5965; font-size: 1.5rem; font-weight: 900; }
.dark-story-list h3 { margin: 0; font-size: 1.06rem; font-weight: 750; line-height: 1.55; }
.big-news-panel { display: flex; min-height: 290px; padding: 34px; flex-direction: column; justify-content: end; background: linear-gradient(145deg, #9e101b, #e33a43); border-radius: 7px; }
.big-news-panel h3 { margin: 15px 0 10px; font-size: 1.8rem; font-weight: 700; line-height: 1.48; }
.big-news-panel p { margin: 0; color: rgba(255,255,255,.75); }
.crime-grid { display: grid; gap: 28px; grid-template-columns: 1.1fr 1fr; }
.crime-feature { padding: 28px; color: #fff; background: #17191e; border-radius: 7px; }
.crime-icon { display: grid; width: 100%; min-height: 170px; margin-bottom: 20px; place-items: center; background: repeating-linear-gradient(135deg, #d51f2c 0 20px, #111 20px 40px); font-size: 2.5rem; font-weight: 900; letter-spacing: .08em; }
.crime-feature h3 { margin: 8px 0 0; font-size: 1.55rem; font-weight: 700; line-height: 1.52; }
.crime-list { border-top: 2px solid #17191e; }
.crime-list article { padding: 22px 4px; border-bottom: 1px solid var(--line); }
.three-category-grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
.category-column { min-width: 0; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); }
.column-feature { display: flex; min-height: 190px; padding: 22px; align-items: end; color: #fff; border-radius: 6px; }
.column-feature span { font-size: 1.65rem; font-weight: 900; }
.column-feature.entertainment { background: linear-gradient(145deg, #75204a, #df5288); }
.column-feature.sport { background: linear-gradient(145deg, #a65308, #e9a52d); }
.column-feature.international { background: linear-gradient(145deg, #15335f, #3882c3); }
.category-column > h3 { margin: 16px 0; font-size: 1.18rem; font-weight: 700; line-height: 1.58; }
.category-column ul { margin: 0; padding-left: 20px; }
.category-column li { padding: 8px 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }

@media (max-width: 991.98px) {
  .lead-news-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px auto; }
  .lead-news-main { grid-column: 1 / 3; grid-row: auto; }
  .lead-news-main .carousel-inner, .lead-news-main .carousel-item { min-height: 430px; }
  .regional-layout, .crime-grid { grid-template-columns: 1fr; }
  .three-category-grid { grid-template-columns: 1fr 1fr; }
  .news-pulse-grid { grid-template-columns: 1fr 1fr; }
  .news-pulse-grid > *:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .news-pulse-grid > *:nth-child(4) { border-top: 1px solid var(--line); }
  .menu-section-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .home-utility-inner { min-height: 48px; }
  .utility-links a:not(:first-child) { display: none; }
  .edition-block div { display: block; line-height: 1.15; }
  .edition-block small { display: block; }
  .lead-news-grid { display: block; min-height: 0; }
  .lead-news-main { min-height: 420px; margin-bottom: 14px; }
  .lead-news-main .carousel-inner, .lead-news-main .carousel-item { min-height: 420px; }
  .lead-news-side { min-height: 210px; margin-bottom: 14px; }
  .lead-copy { padding: 28px 24px 54px; }
  .headline-grid, .government-grid, .three-category-grid { grid-template-columns: 1fr; }
  .government-main { min-height: 310px; grid-row: auto; }
  .headline-card { grid-template-columns: 96px 1fr; }
  .local-section-title { align-items: center; }
  .lead-actions { align-items: flex-start; flex-direction: column; }
  .lead-copy > p { display: none; }
  .lead-copy h1, .lead-copy h2 { max-width: calc(100% - 20px); font-size: clamp(1.55rem, 6vw, 2.15rem); line-height: 1.34; -webkit-line-clamp: 4; }
  .home-slider-control { width: 38px; height: 38px; margin: 0 8px; }
  .home-slider-indicators { bottom: 19px; left: 24px; }
  .lead-actions .news-meta { display: none; }
  .menu-news-section { padding: 50px 0; }
  .menu-feature-story { grid-template-columns: 1fr; }
  .menu-feature-image { min-height: 260px; }
  .menu-feature-copy { padding: 24px; }
}

@media (max-width: 479.98px) {
  .lead-news-main { min-height: 390px; }
  .lead-news-main .carousel-inner, .lead-news-main .carousel-item { min-height: 390px; }
  .lead-copy h1, .lead-copy h2 { font-size: 1.55rem; -webkit-line-clamp: 4; }
  .home-slider-control { top: 38%; width: 34px; height: 34px; }
  .headline-card { grid-template-columns: 1fr; }
  .regional-list article { grid-template-columns: 92px 1fr; }
  .regional-thumb { width: 92px; height: 72px; }
  .most-read-list { padding-left: 42px; }
  .most-read-list a { grid-template-columns: 72px 1fr; }
  .most-read-list img { width: 72px; height: 56px; }
  .menu-feature-image { min-height: 220px; }
  .menu-story-list article { grid-template-columns: 92px minmax(0, 1fr); }
  .menu-story-thumb { width: 92px; height: 72px; }
  .headline-thumb { min-height: 120px; }
  .news-pulse-grid { grid-template-columns: 1fr; }
  .news-pulse-grid > * + * { border-top: 1px solid var(--line); border-left: 0; }
  .news-pulse-grid > div:nth-child(3) { display: none; }
}

/* Homepage editorial refresh */
body[data-page="home"] { background: #f7f8fa; }
body[data-page="home"] .home-utility { position: relative; z-index: 3; }
body[data-page="home"] .local-lead-section { padding: 24px 0 22px; background: radial-gradient(circle at 78% 12%, rgba(226,29,43,.07), transparent 27%), linear-gradient(180deg, #f4f6f9 0%, #fff 88%); }
body[data-page="home"] .lead-news-grid { min-height: 500px; gap: 14px; grid-template-columns: minmax(0, 1.72fr) minmax(310px, .88fr); }
body[data-page="home"] .lead-news-main,
body[data-page="home"] .lead-news-side { border-radius: 18px; box-shadow: 0 18px 50px rgba(15,23,42,.13); }
body[data-page="home"] .lead-news-main .carousel-inner,
body[data-page="home"] .lead-news-main .carousel-item { min-height: 500px; }
body[data-page="home"] .lead-copy { padding: 36px 58px 54px; }
body[data-page="home"] .lead-copy h1,
body[data-page="home"] .lead-copy h2 { max-width: 680px; font-size: clamp(2rem, 3.15vw, 2.85rem); line-height: 1.25; }
body[data-page="home"] .lead-news-side { padding: 24px; }
body[data-page="home"] .lead-news-side h2 { margin-bottom: 15px; font-size: 1.25rem; line-height: 1.45; }
body[data-page="home"] .card-number { font-size: 1.65rem; }
body[data-page="home"] .news-pulse { position: relative; z-index: 2; padding: 0 0 52px; background: #fff; }
body[data-page="home"] .home-metrics { margin-top: 0; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 14px 36px rgba(15,23,42,.08); }
body[data-page="home"] .home-metrics > div,
body[data-page="home"] .home-metrics > a { min-height: 112px; padding: 24px 26px; gap: 17px; }
body[data-page="home"] .home-metrics .pulse-icon { width: 52px; height: 52px; border-radius: 12px; font-size: 1rem; }
body[data-page="home"] .home-metrics strong { font-size: 1rem; line-height: 1.35; }
body[data-page="home"] .home-metrics small { margin-top: 5px; font-size: .8rem; }
body[data-page="home"] .home-metrics > a span { margin-top: 4px; font-size: .82rem; }
body[data-page="home"] .home-latest-section { padding: 54px 0 70px; background: #fff; }
body[data-page="home"] .local-section-title { margin-bottom: 30px; border-bottom-color: #dfe3e8; }
body[data-page="home"] .local-section-title h2 { font-weight: 820; }
body[data-page="home"] .home-latest-grid { gap: 22px; }
body[data-page="home"] .home-latest-grid .news-card { position: relative; border: 0; border-radius: 14px; box-shadow: 0 9px 28px rgba(15,23,42,.08); }
body[data-page="home"] .home-latest-grid .card-visual { height: 205px; padding: 0; }
body[data-page="home"] .home-latest-grid .card-visual img { transition: transform .35s ease; }
body[data-page="home"] .home-latest-grid .news-card:hover .card-visual img { transform: scale(1.04); }
body[data-page="home"] .home-latest-grid .card-body { padding: 20px 22px 23px; }
body[data-page="home"] .home-latest-grid .news-card h3 { display: -webkit-box; min-height: 3.25em; overflow: hidden; font-size: 1.08rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
body[data-page="home"] .home-latest-grid .news-card p { display: -webkit-box; margin-bottom: 0; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
body[data-page="home"] .story-rank { position: absolute; z-index: 2; right: 14px; bottom: 12px; display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: rgba(9,18,34,.84); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: .72rem; font-weight: 900; backdrop-filter: blur(7px); }
body[data-page="home"] .home-insight-section { padding: 72px 0; background: linear-gradient(135deg, #f2f4f7 0%, #fafafa 100%); }
body[data-page="home"] .home-insight-grid { display: grid; gap: 24px; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); }
body[data-page="home"] .home-insight-grid > div,
body[data-page="home"] .home-popular-column { min-width: 0; }
body[data-page="home"] .home-insight-grid > .col-lg-7 { width: 100%; }
body[data-page="home"] .regional-list { overflow: hidden; border: 0; border-radius: 14px; box-shadow: 0 12px 35px rgba(15,23,42,.08); }
body[data-page="home"] .regional-list article { padding: 15px 18px; gap: 15px; grid-template-columns: 34px 118px minmax(0, 1fr); }
body[data-page="home"] .regional-rank { color: #c9ced6; font-size: 1.1rem; font-weight: 900; }
body[data-page="home"] .regional-thumb { width: 118px; height: 80px; }
body[data-page="home"] .regional-list h3 { display: -webkit-box; margin-top: 5px; overflow: hidden; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
body[data-page="home"] .home-popular-column { padding: 0; }
body[data-page="home"] .most-read-list { padding: 8px 22px 8px 48px; overflow: hidden; background: linear-gradient(155deg, #0d1a30 0%, #152f52 100%); border-radius: 14px; box-shadow: 0 18px 45px rgba(13,26,48,.22); }
body[data-page="home"] .most-read-list li { padding: 15px 3px; }
body[data-page="home"] .most-read-list a { grid-template-columns: 78px minmax(0, 1fr); }
body[data-page="home"] .most-read-list a > span { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
body[data-page="home"] .most-read-list a strong { display: -webkit-box; overflow: hidden; font-size: .88rem; font-weight: 720; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
body[data-page="home"] .most-read-list a small { color: #9fb0c7; font-size: .66rem; font-weight: 700; }
body[data-page="home"] .menu-news-section { background: #fff; }
body[data-page="home"] .menu-news-section.section-muted { background: #f5f6f8; }

@media (max-width: 991.98px) {
  body[data-page="home"] .lead-news-grid { min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 420px 240px; }
  body[data-page="home"] .lead-news-main { grid-column: 1 / 3; }
  body[data-page="home"] .lead-news-main .carousel-inner,
  body[data-page="home"] .lead-news-main .carousel-item { min-height: 420px; }
  body[data-page="home"] .home-insight-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  body[data-page="home"] .local-lead-section { padding-top: 18px; }
  body[data-page="home"] .lead-news-grid { display: block; }
  body[data-page="home"] .lead-news-main { min-height: 365px; margin-bottom: 12px; border-radius: 15px; }
  body[data-page="home"] .lead-news-main .carousel-inner,
  body[data-page="home"] .lead-news-main .carousel-item { min-height: 365px; }
  body[data-page="home"] .lead-copy { padding: 24px 24px 47px; }
  body[data-page="home"] .lead-copy h1,
  body[data-page="home"] .lead-copy h2 { margin: 12px 0 15px; font-size: 1.5rem; line-height: 1.35; -webkit-line-clamp: 3; }
  body[data-page="home"] .read-story { padding: 9px 13px; }
  body[data-page="home"] .lead-news-side { min-height: 180px; padding: 20px; border-radius: 15px; }
  body[data-page="home"] .lead-news-side h2 { margin: 42px 0 8px; font-size: 1.12rem; line-height: 1.45; }
  body[data-page="home"] .side-card-bottom { display: none; }
  body[data-page="home"] .home-metrics { margin-top: 0; border-radius: 14px; grid-template-columns: 1fr 1fr; }
  body[data-page="home"] .home-metrics > div,
  body[data-page="home"] .home-metrics > a { min-height: 92px; padding: 18px; }
  body[data-page="home"] .home-metrics .pulse-icon { width: 46px; height: 46px; font-size: .9rem; }
  body[data-page="home"] .home-metrics strong { font-size: .92rem; }
  body[data-page="home"] .home-metrics small,
  body[data-page="home"] .home-metrics > a span { font-size: .75rem; }
  body[data-page="home"] .home-metrics > a { grid-column: 1 / -1; }
  body[data-page="home"] .home-latest-section,
  body[data-page="home"] .home-insight-section { padding: 48px 0; }
  body[data-page="home"] .home-latest-grid { grid-template-columns: 1fr; gap: 16px; }
  body[data-page="home"] .home-latest-grid .news-card { display: grid; grid-template-columns: 124px minmax(0, 1fr); }
  body[data-page="home"] .home-latest-grid .card-visual { height: 100%; min-height: 150px; }
  body[data-page="home"] .home-latest-grid .card-body { padding: 16px; }
  body[data-page="home"] .home-latest-grid .news-card h3 { min-height: 0; margin-bottom: 0; font-size: .98rem; }
  body[data-page="home"] .home-latest-grid .news-card p { display: none; }
  body[data-page="home"] .story-rank { right: 8px; bottom: 8px; width: 32px; height: 32px; }
  body[data-page="home"] .regional-list article { grid-template-columns: 28px 88px minmax(0, 1fr); padding: 13px; gap: 11px; }
  body[data-page="home"] .regional-thumb { width: 88px; height: 68px; }
  body[data-page="home"] .regional-list h3 { font-size: .9rem; }
}

@media (max-width: 479.98px) {
  body[data-page="home"] .home-utility-inner { gap: 8px; }
  body[data-page="home"] .utility-links { gap: 8px; }
  body[data-page="home"] .lead-news-main { min-height: 345px; }
  body[data-page="home"] .lead-news-main .carousel-inner,
  body[data-page="home"] .lead-news-main .carousel-item { min-height: 345px; }
  body[data-page="home"] .home-slider-control { top: 42%; }
  body[data-page="home"] .home-latest-grid .news-card { grid-template-columns: 112px minmax(0, 1fr); }
  body[data-page="home"] .home-latest-grid .card-visual { min-height: 138px; }
  body[data-page="home"] .card-category { font-size: .62rem; letter-spacing: .04em; }
  body[data-page="home"] .regional-rank { display: none; }
  body[data-page="home"] .regional-list article { grid-template-columns: 86px minmax(0, 1fr); }
  body[data-page="home"] .regional-thumb { width: 86px; height: 66px; }
}

.reading-progress { position: fixed; top: 0; left: 0; z-index: 1200; width: 0; height: 3px; background: var(--news-red); box-shadow: 0 1px 7px rgba(226,29,43,.45); }
.article-page { background: #fff; }
.article-wide {
  width: calc(100% - 32px);
  max-width: none;
}
.article-pro-header { padding: 0 0 18px; background: transparent; }
.article-breadcrumb {
  display: flex;
  width: 100%;
  margin-bottom: 8px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: #68758a;
  font-size: .86rem;
  font-weight: 700;
  flex-wrap: nowrap;
}
.article-breadcrumb .breadcrumb-item {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}
.article-breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
.article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 10px;
  color: #c7d0dc;
  font-weight: 900;
  content: "›";
}
.article-breadcrumb a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
  color: inherit;
  white-space: nowrap;
}
.article-breadcrumb-home a {
  padding: 8px 13px 7px;
  color: #d7193f;
  background: #ffe3e6;
  border-radius: 999px;
}
.article-breadcrumb-home i {
  font-size: .9rem;
}
.article-breadcrumb-category a {
  padding: 8px 14px 7px;
  color: #31405f;
  background: #eef2f7;
  border-radius: 999px;
}
.article-breadcrumb-title {
  overflow: hidden;
  color: #607086;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-category-row { display: flex; align-items: center; gap: 14px; }
.article-category { padding: 6px 11px 4px; color: #fff; background: var(--news-red); border-radius: 3px; font-size: .69rem; font-weight: 800; }
.article-status { color: #78818d; font-size: .72rem; font-weight: 700; }
.article-status i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; background: #21a268; border-radius: 50%; }
.article-pro-header h1 { max-width: 1100px; margin: 4px 0 8px; font-size: clamp(1.75rem, 2.45vw, 2.65rem); font-weight: 700; line-height: 1.25; letter-spacing: 0; }
.article-pro-header .article-lead { max-width: 880px; margin: 0 0 25px; color: #5c6673; font-size: 1.14rem; line-height: 1.75; }
.article-byline { display: flex; margin-top: 0; padding: 10px 12px; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 8px 20px rgba(15,23,42,.04); }
.author-avatar { display: grid; width: 42px; height: 42px; flex: 0 0 auto; overflow: hidden; place-items: center; color: #fff; background: var(--news-red); border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px var(--line); font-weight: 800; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-avatar.has-photo { color: transparent; background: #fff; }
.author-avatar.has-photo img { background: #fff; }
.author-avatar-link { text-decoration: none; }
.article-author-name { color: inherit; text-decoration: none; }
.article-byline > div:nth-child(2) { display: flex; flex-direction: column; }
.article-byline strong { font-size: .82rem; }
.article-byline span { margin-top: 2px; color: #8a929e; font-size: .7rem; }
.article-stats { display: flex !important; margin-left: auto; flex-direction: row !important; gap: 18px; }
.article-cover { position: relative; margin: 0 0 18px; overflow: hidden; background: #111; border-radius: 14px; box-shadow: var(--shadow-lg); }
.article-cover img { display: block; width: 100%; height: auto; max-height: 620px; object-fit: cover; }
.article-listen-btn {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 43px;
  padding: 9px 14px;
  align-items: center;
  gap: 7px;
  color: #fff;
  background: var(--news-red);
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
  font-family: inherit;
  font-size: .84rem;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.article-listen-btn i {
  font-size: 1.05rem;
  line-height: 1;
}
.article-listen-btn:hover,
.article-listen-btn.is-speaking {
  background: #b80d22;
  transform: translateY(-1px);
}
.article-listen-btn:disabled {
  cursor: not-allowed;
  opacity: .72;
}
.article-cover figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 25px 25px 13px; color: rgba(255,255,255,.7); background: linear-gradient(transparent, rgba(0,0,0,.75)); font-size: .7rem; }
.article-layout {
  display: grid;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: 32px;
  padding-left: 32px;
  padding-top: 22px;
  padding-bottom: 58px;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
}
.container.article-layout {
  max-width: none;
}
.article-sidebar .ad-zone,
.article-sidebar .samvad-ad-zone {
  width: 100% !important;
  max-width: 100%;
}
.article-sidebar .ad-zone *,
.article-sidebar .samvad-ad-zone * {
  max-width: 100%;
}
.related-section > .container {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: 32px;
  padding-left: 32px;
}
.related-section > .container {
  max-width: none;
}
.article-column-9 { grid-column: 1; }
.article-column-3 { grid-column: 2; }
.article-main { min-width: 0; }
.article-toolbar { display: flex; margin-bottom: 18px; padding: 12px 15px; align-items: center; justify-content: space-between; gap: 14px; background: #f7f8fa; border: 1px solid var(--line); border-radius: 9px; }
.share-inline { display: flex; align-items: center; gap: 7px; }
.share-inline strong { margin-right: 5px; font-size: .75rem; }
.share-action { display: inline-flex; min-height: 35px; padding: 7px 10px; align-items: center; gap: 6px; color: #52606d; background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: .66rem; font-weight: 700; transition: .2s ease; }
.share-action i { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; font-size: 1rem; line-height: 1; }
.share-action.facebook { color: #1877f2; }
.share-action.twitter { color: #111; }
.share-action.whatsapp { color: #128c4b; }
.share-action.instagram { color: #c13584; }
.share-action.share-like { color: var(--news-red); }
.share-action.share-like b { padding-left: 6px; border-left: 1px solid var(--line); font-size: .7rem; line-height: 1; }
.article-toolbar .toolbar-like {
  min-width: 118px;
  min-height: 42px;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, #e21d2b, #b80d22);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(226,29,43,.18);
}
.article-toolbar .toolbar-like .like-heart {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}
.article-toolbar .toolbar-like b {
  min-width: 24px;
  padding: 3px 7px 2px;
  color: var(--news-red);
  background: #fff;
  border-left: 0;
  border-radius: 999px;
  text-align: center;
}
.article-toolbar .toolbar-like:hover,
.article-toolbar .toolbar-like.liked {
  color: #fff;
  background: linear-gradient(135deg, #b80d22, #8f0718);
  box-shadow: 0 13px 28px rgba(226,29,43,.25);
}
.share-action:hover { color: #fff; transform: translateY(-1px); }
.share-action.facebook:hover { background: #1877f2; border-color: #1877f2; }
.share-action.twitter:hover { background: #111; border-color: #111; }
.share-action.whatsapp:hover { background: #128c4b; border-color: #128c4b; }
.share-action.instagram:hover { background: linear-gradient(135deg, #feda75, #d62976 48%, #4f5bd5); border-color: transparent; }
.share-action.share-like:not(.toolbar-like):hover,
.share-action.share-like:not(.toolbar-like).liked { color: #fff; background: var(--news-red); border-color: var(--news-red); }
.share-action.share-like:not(.toolbar-like):hover b,
.share-action.share-like:not(.toolbar-like).liked b { border-left-color: rgba(255,255,255,.35); }
.share-action.copy:hover { background: #59636f; border-color: #59636f; }
.like-button { display: flex; padding: 8px 11px; align-items: center; gap: 6px; color: #555f6c; background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: .7rem; font-weight: 700; }
.like-button strong { padding-left: 6px; border-left: 1px solid var(--line); }
.like-heart { color: var(--news-red); font-size: 1.1rem; line-height: 1; }
.like-button.liked { color: var(--news-red); background: #fff4f5; border-color: #f4b2b7; }

.article-content { color: #262b32; }
.article-content p { margin: 0 0 18px; font-size: 1.08rem; line-height: 1.88; }
.article-content h2 { margin: 30px 0 12px; font-size: 1.7rem; font-weight: 700; line-height: 1.42; }
.article-content a {
  color: #0d5bd7;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.article-content a:hover {
  color: #b90f1c;
}
.article-content a:visited {
  color: #6d3fc8;
}
.article-content a:focus-visible {
  outline: 2px solid rgba(13,91,215,.28);
  outline-offset: 3px;
  border-radius: 2px;
}
.article-end-share { display: flex; margin-top: 18px; padding: 16px 18px; align-items: center; justify-content: space-between; gap: 16px; background: linear-gradient(120deg, #f7f9fc, #fff); border: 1px solid var(--line); border-left: 4px solid var(--news-red); border-radius: 10px; }
.article-end-share h2 { margin: 0; font-size: 1rem; font-weight: 800; white-space: nowrap; }
.article-end-share-actions { flex-wrap: wrap; justify-content: flex-end; }
.article-end-share-actions .share-action { min-height: 38px; padding: 8px 12px; }
.article-dropcap::first-letter { float: left; margin: 11px 10px 0 0; color: var(--news-red); font-size: 4.4rem; font-weight: 800; line-height: .7; }
.article-highlight { position: relative; margin: 24px 0; padding: 25px 27px 24px 30px; background: #111827; border-radius: 9px; color: #fff; }
.article-highlight::before { position: absolute; top: 0; bottom: 0; left: 0; width: 5px; background: var(--news-red); border-radius: 9px 0 0 9px; content: ""; }
.article-highlight span { color: #ff8e96; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.article-highlight p { margin: 8px 0 0; color: #fff; font-size: 1.3rem; font-weight: 600; line-height: 1.7; }
.article-facts { margin: 25px 0; padding: 23px 26px; background: #f7f8fa; border: 1px solid var(--line); border-radius: 9px; }
.article-facts h3 { margin-bottom: 17px; font-size: 1.15rem; font-weight: 750; }
.article-facts ul { margin: 0; padding: 0; list-style: none; }
.article-facts li { position: relative; padding: 10px 0 10px 25px; color: #59636f; border-top: 1px solid var(--line); font-size: .88rem; line-height: 1.6; }
.article-facts li::before { position: absolute; top: 16px; left: 2px; width: 8px; height: 8px; background: var(--news-red); border-radius: 50%; content: ""; }
.article-inline-image { margin: 26px 0; overflow: hidden; background: #f3f4f6; border-radius: 11px; box-shadow: var(--shadow-sm); }
.article-inline-image img { width: 100%; max-height: 460px; object-fit: cover; }
.article-inline-image figcaption { padding: 11px 15px; color: #7c8490; font-size: .7rem; line-height: 1.5; }
.article-inline-image.compact-image img { max-height: 340px; }
.article-tags { display: flex; margin-top: 16px; align-items: center; flex-wrap: wrap; gap: 8px; }
.article-tags span { margin-right: 4px; color: #7a838f; font-size: .75rem; font-weight: 700; }
.article-tags a { padding: 7px 11px; color: #58616d; background: #f3f4f6; border-radius: 999px; font-size: .7rem; font-weight: 650; }
.reaction-box { display: flex; margin: 18px 0; padding: 16px 18px; align-items: center; justify-content: space-between; gap: 16px; background: linear-gradient(120deg, #fff5f6, #fff); border: 1px solid #f7d9dc; border-radius: 12px; }
.reaction-box h2 { margin: 0; font-size: 1.05rem; font-weight: 800; white-space: nowrap; }
.reaction-box p { margin: 0; color: #7c8590; font-size: .78rem; }
.reaction-like { display: inline-flex; min-width: 0; padding: 9px 12px; align-items: center; justify-content: center; gap: 8px; color: var(--news-red); background: #fff; border: 1px solid #f2b9be; border-radius: 9px; }
.reaction-like > .like-heart { color: currentColor; font-size: 1.25rem; line-height: 1; }
.reaction-like strong { font-size: 1rem; }
.reaction-like small { color: #7b838e; font-size: .62rem; }
.reaction-like.liked { color: #fff; background: var(--news-red); }
.reaction-like.liked small { color: rgba(255,255,255,.75); }
.article-navigation { display: grid; margin: 26px 0; gap: 14px; grid-template-columns: 1fr 1fr; }
.article-navigation a { display: flex; min-height: 110px; padding: 20px; flex-direction: column; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: 9px; transition: .2s ease; }
.article-navigation a:last-child { text-align: right; }
.article-navigation a:hover { border-color: #efabb0; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.article-navigation small { margin-bottom: 7px; color: var(--news-red); font-size: .67rem; font-weight: 750; }
.article-navigation strong { font-size: .88rem; line-height: 1.55; }
.author-box { position: relative; display: flex; min-height: 0; padding: 22px 26px; align-items: center; gap: 18px; color: #fff; background: radial-gradient(circle at 14% 22%, rgba(255,255,255,.12), transparent 18%), radial-gradient(circle at 82% 18%, rgba(83,110,184,.18), transparent 28%), linear-gradient(135deg, #111b3b 0%, #1d2957 46%, #0d1734 100%); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; box-shadow: 0 18px 38px rgba(15,23,42,.16); overflow: hidden; }
.author-box::before { position: absolute; top: -40px; right: 22px; width: 130px; height: 130px; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%); content: ""; pointer-events: none; filter: blur(2px); }
.author-box::after { position: absolute; inset: auto 0 0; height: 72px; background: linear-gradient(180deg, transparent, rgba(10,18,43,.2)); content: ""; pointer-events: none; }
.author-box-link { margin-top: 18px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.author-box-link:hover { color: #fff; box-shadow: 0 22px 42px rgba(15,23,42,.2); transform: translateY(-2px); }
.author-box > div { position: relative; z-index: 1; }
.author-box > div:last-child { display: grid; min-width: 0; flex: 1 1 auto; align-items: center; gap: 8px 14px; grid-template-columns: auto auto auto auto minmax(220px, 1fr); }
.author-avatar.large { position: relative; width: 82px; height: 82px; color: #fff; background: linear-gradient(145deg, #ef1530, #b90512); border: 4px solid rgba(255,255,255,.16); box-shadow: 0 14px 28px rgba(0,0,0,.2); font-size: 2.4rem; }
.author-avatar.large.has-photo { background: #fff; }
.author-avatar.large::after { position: absolute; right: -4px; bottom: 0; display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: #38e58a; border: 4px solid #1d2854; border-radius: 50%; font-family: Arial, sans-serif; font-size: 17px; font-weight: 900; content: "✓"; }
.author-box-label { display: inline-flex; min-height: 28px; margin-bottom: 0; padding: 5px 11px; align-items: center; color: #ffd58f; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; font-size: .68rem; font-weight: 800; text-transform: none; white-space: nowrap; }
.author-box h2 { margin: 0; color: #fff; font-size: clamp(1.45rem, 2vw, 1.95rem); font-weight: 850; line-height: 1.1; letter-spacing: 0; white-space: nowrap; }
.author-box strong { display: block; margin-bottom: 0; color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 700; white-space: nowrap; }
.author-box-meta { display: flex; margin: 0; flex-wrap: wrap; gap: 8px; }
.author-box-meta span { display: inline-flex; min-height: 31px; padding: 6px 12px; align-items: center; gap: 8px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; font-size: .8rem; font-weight: 800; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); white-space: nowrap; }
.author-box p { display: -webkit-box; min-width: 0; max-width: none; margin: 0; overflow: hidden; color: rgba(255,255,255,.7); font-size: .86rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.author-avatar.large::after { right: -2px; width: 26px; height: 26px; border-width: 3px; font-size: 13px; }
.comments-section { margin-top: 22px; }
.comments-heading { display: flex; padding-bottom: 14px; align-items: end; justify-content: space-between; border-bottom: 2px solid var(--ink); }
.comments-heading h2 { margin: 3px 0 0; font-size: 1.7rem; font-weight: 700; }
.comments-heading h2 small { display: inline-grid; width: 27px; height: 27px; margin-left: 5px; place-items: center; color: #fff; background: var(--news-red); border-radius: 50%; font-size: .7rem; vertical-align: middle; }
.comments-heading > a { color: var(--news-red); font-size: .72rem; font-weight: 750; }
.comment-item { display: grid; padding: 18px 0; gap: 13px; border-bottom: 1px solid var(--line); grid-template-columns: auto 1fr; }
.comment-avatar { display: grid; width: 42px; height: 42px; place-items: center; color: var(--news-red); background: #fff0f1; border-radius: 50%; font-weight: 800; }
.comment-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.comment-head strong { font-size: .82rem; }
.comment-head span { color: #9aa1aa; font-size: .66rem; }
.comment-item p { margin: 8px 0; color: #626b76; font-size: .83rem; line-height: 1.7; }
.comment-item button { padding: 0; color: var(--news-red); background: none; border: 0; font-size: .68rem; font-weight: 700; }
.new-comment { animation: comment-in .35s ease; }
@keyframes comment-in { from { opacity: 0; transform: translateY(12px); } }
.comment-form { margin-top: 22px; padding: 23px; background: #f7f8fa; border: 1px solid var(--line); border-radius: 10px; }
.comment-form h3 { margin-bottom: 20px; font-size: 1.25rem; font-weight: 700; }
.comment-form label { margin-bottom: 7px; font-size: .72rem; font-weight: 700; }
.article-sidebar { position: sticky; top: 105px; display: grid; gap: 16px; }
.sidebar-card { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 9px 28px rgba(15,23,42,.055); }
.sidebar-title { display: flex; margin-bottom: 15px; align-items: center; gap: 9px; }
.sidebar-title span { padding: 4px 7px 3px; color: #fff; background: var(--news-red); border-radius: 3px; font-size: .6rem; font-weight: 800; }
.sidebar-title h2 { margin: 0; font-size: 1.1rem; font-weight: 750; }
.sidebar-live-list a { display: grid; padding: 15px 0; gap: 9px 11px; border-top: 1px solid var(--line); grid-template-columns: auto 58px 1fr; align-items: center; }
.sidebar-live-list time { color: var(--news-red); font-size: .65rem; font-weight: 800; }
.sidebar-live-list strong { font-size: .78rem; line-height: 1.55; }
.sidebar-story-thumb { display: block; width: 58px; height: 48px; border-radius: 5px; }
.thumb-parliament { background: linear-gradient(145deg, #162c4d, #5d8bb7); }
.thumb-policy { background: linear-gradient(145deg, #503076, #9a73c1); }
.thumb-jobs { background: linear-gradient(145deg, #92500f, #e5a03f); }
.sidebar-ranking { margin: 0; padding-left: 31px; }
.sidebar-ranking li { padding: 13px 0 13px 7px; border-top: 1px solid var(--line); }
.sidebar-ranking li::marker { color: #d1d5db; font-size: 1.25rem; font-weight: 900; }
.sidebar-ranking a { display: flex; flex-direction: column; font-size: .78rem; font-weight: 650; line-height: 1.55; }
.sidebar-ranking small { margin-top: 4px; color: #9aa1aa; font-size: .61rem; font-weight: 500; }
.sidebar-newsletter { color: #fff; background: linear-gradient(145deg, #b70e1b, #e62d39); border: 0; }
.sidebar-newsletter h2 { margin: 6px 0 8px; font-size: 1.35rem; font-weight: 700; }
.sidebar-newsletter p { color: rgba(255,255,255,.7); font-size: .75rem; line-height: 1.6; }
.sidebar-newsletter .form-control { min-height: 44px; border: 0; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.sidebar-tags a { padding: 7px 10px; color: #5e6671; background: #f3f4f6; border-radius: 999px; font-size: .67rem; font-weight: 650; }
.related-section { padding: 46px 0 58px; background: var(--soft); }
.related-post-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.related-post-grid article { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); transition: .2s ease; }
.related-post-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.related-visual { display: flex; height: 155px; padding: 17px; align-items: end; color: #fff; }
.related-visual span { font-size: 1.25rem; font-weight: 750; }
.visual-government { background: linear-gradient(145deg, #18355d, #3779b4); }
.visual-education { background: linear-gradient(145deg, #3c226d, #8a5cca); }
.visual-care { background: linear-gradient(145deg, #075e4d, #27a180); }
.visual-jobs { background: linear-gradient(145deg, #8d3a08, #de8b23); }
.related-copy { padding: 18px; }
.related-copy h3 { margin: 7px 0 0; font-size: .94rem; font-weight: 650; line-height: 1.55; }

@media (max-width: 1199.98px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 350px; gap: 24px; }
}

@media (max-width: 991.98px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 350px; gap: 20px; }
  .article-layout,
  .related-section > .container { padding-right: 20px; padding-left: 20px; }
  .article-sidebar { top: 105px; }
  .sidebar-live-list a { grid-template-columns: auto 1fr; }
  .sidebar-story-thumb { display: none; }
  .related-post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .article-wide,
  .article-layout,
  .related-section > .container {
    width: 100%;
  }

  .article-pro-header { padding: 0 0 12px; }
  .article-breadcrumb {
    gap: 6px;
    margin-bottom: 6px;
  }
  .article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 6px;
  }
  .article-breadcrumb-title {
    display: none !important;
  }
  .article-breadcrumb a {
    min-height: 32px;
    font-size: .76rem;
  }
  .article-breadcrumb-home a,
  .article-breadcrumb-category a {
    padding: 7px 10px 6px;
  }
  .article-layout,
  .related-section > .container { padding-right: 12px; padding-left: 12px; }
  .article-pro-header h1 { font-size: 1.72rem; line-height: 1.32; }
  .article-stats { display: none !important; }
  .article-cover { width: auto; border-radius: 0; margin-inline: calc(var(--bs-gutter-x) * -.5); }
  .article-cover img { width: 100%; height: clamp(230px, 62vw, 390px); max-height: none; object-fit: cover; }
  .article-layout { display: block; padding-top: 14px; padding-bottom: 42px; }
  .article-toolbar { align-items: flex-start; flex-direction: column; }
  .share-inline { width: 100%; flex-wrap: wrap; }
  .article-toolbar .share-inline strong { display: none; }
  .share-action { min-width: 44px; min-height: 44px; }
  .share-action i { font-size: 1.2rem; }
  .article-toolbar .share-like { display: none; }
  .like-button { width: 100%; justify-content: center; }
  .article-content p { margin-bottom: 16px; font-size: 1rem; line-height: 1.82; }
  .article-end-share { align-items: center; flex-direction: row; }
  .article-end-share-actions { width: auto; margin-left: auto; justify-content: flex-end; }
  .reaction-box { align-items: center; flex-direction: row; }
  .reaction-like { width: auto; }
  .article-sidebar { position: static; display: grid; margin-top: 30px; grid-template-columns: 1fr; }
  .sidebar-live-list a { grid-template-columns: auto 58px 1fr; }
  .sidebar-story-thumb { display: block; }
  .article-navigation { grid-template-columns: 1fr; }
  .article-navigation a:last-child { text-align: left; }
  .related-post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 479.98px) {
  .article-pro-header h1 { font-size: 1.55rem; }
  .article-byline { align-items: flex-start; }
  .article-cover figcaption { position: static; padding: 9px 12px; color: #7f8791; background: #f4f5f6; }
  .article-listen-btn {
    right: 12px;
    bottom: 46px;
    min-height: 39px;
    padding: 8px 12px;
    font-size: .78rem;
  }
  .share-inline strong { width: 100%; }
  .share-action span { display: none; }
  .share-action { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .share-action i { font-size: 1.25rem; }
  .article-end-share { margin-top: 20px; padding: 14px 12px; gap: 10px; }
  .article-end-share h2 { font-size: .9rem; }
  .article-end-share-actions { gap: 9px; }
  .reaction-box { padding: 14px 12px; gap: 10px; }
  .reaction-box h2 { font-size: .9rem; }
  .reaction-like { padding: 8px 10px; gap: 6px; }
  .reaction-like small { display: none; }
  .article-highlight, .article-facts, .comment-form { padding: 23px; }
  .article-highlight p { font-size: 1.12rem; }
  .author-box { align-items: flex-start; }
  .author-avatar.large { width: 52px; height: 52px; }
  .related-post-grid { grid-template-columns: 1fr; }
}
.ad-zone {
  width: min(100%, 1180px);
  margin: 1.25rem auto;
  display: grid;
  gap: 1rem;
}

.ad-zone-header,
.ad-zone-footer {
  padding-inline: 1rem;
}

.local-ad,
.google-ad {
  position: relative;
  min-width: 0;
  text-align: center;
  background: #f7f7f7;
  border: 1px solid #e7e7e7;
  border-radius: 0.5rem;
  overflow: hidden;
}

.ad-zone-sidebar,
.samvad-ad-zone {
  width: 100%;
  margin: 0 0 1rem;
}

.ad-zone-in-article {
  margin: 2rem auto;
}

.home-wide-ad {
  padding-inline: 1rem;
}

.home-grid-ad {
  grid-column: 1 / -1;
}

.home-grid-ad .ad-zone {
  margin-block: 0.25rem;
}
.local-ad {
  position: relative;
}

.local-ad picture,
.local-ad img {
  display: block;
  width: 100%;
}

.local-ad-slide {
  display: none;
}

.local-ad-slide.is-active {
  display: block;
}

.local-ad img {
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

.local-ad-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(9, 16, 28, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}

.local-ad-nav:hover {
  background: rgba(226, 29, 43, 0.92);
}

.local-ad-nav span {
  font-size: 1.5rem;
  line-height: 1;
}

.local-ad-nav-prev {
  left: 12px;
}

.local-ad-nav-next {
  right: 12px;
}

.google-ad {
  min-height: 90px;
  padding: 1rem 0.5rem 0.5rem;
}

.ad-label {
  display: block;
  padding: 0.2rem 0.5rem;
  color: #777;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .ad-zone:has(.local-ad + .google-ad) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

/* First Bihar-inspired editorial refresh */
:root {
  --news-red: #d7193f;
  --news-red-dark: #b70d2d;
  --navy: #07183b;
  --soft: #f4f5f7;
  --line: #e4e6ea;
}

.container {
  max-width: 1240px;
}

.top-strip {
  display: none;
}

.site-header {
  background: var(--navy);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header .navbar {
  min-height: 72px;
  padding-block: 0;
}

.mobile-menu-toggle {
  display: none;
}

.site-header .brand {
  align-self: stretch;
  padding: 7px 16px;
  background: #fff;
}

.site-header .brand-logo {
  width: 174px;
  height: 58px;
}

.site-header .nav-link {
  margin: 0;
  padding: 25px 13px 21px;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.09);
}

.site-header .nav-link.active::after {
  right: 13px;
  bottom: 12px;
  left: 13px;
  height: 3px;
  background: var(--news-red);
}

.site-header .submenu-toggle span {
  border-color: rgba(255,255,255,.8);
}

.site-header .icon-btn {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.site-header .icon-btn:hover {
  background: var(--news-red);
}

.ticker {
  background: var(--news-red);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.ticker-label {
  padding-block: 10px 9px;
  padding-right: 24px;
  background: var(--news-red);
}

.ticker-track span {
  padding-block: 10px 9px;
  font-size: .82rem;
}

.search-panel.open {
  max-height: 110px;
}

body[data-page="home"] {
  background: #f4f5f7;
}

body[data-page="home"] .home-utility,
body[data-page="home"] .news-pulse {
  display: none;
}

body[data-page="home"] .home-wide-ad {
  margin-block: 16px;
}

body[data-page="home"] .local-lead-section {
  padding: 10px 0 18px;
  background: #f4f5f7;
}

body[data-page="home"] .lead-news-grid {
  min-height: 430px;
  gap: 10px;
  grid-template-columns: minmax(0, 3.2fr) minmax(260px, 1fr);
  grid-template-rows: 1fr 1fr;
}

body[data-page="home"] .lead-news-main {
  overflow: hidden;
  background: #fff;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 3px 14px rgba(15,23,42,.08);
}

body[data-page="home"] .lead-news-main .carousel-item > img {
  right: auto;
  width: 58%;
  object-position: center;
}

body[data-page="home"] .lead-news-main .lead-shade {
  left: 58%;
  background: linear-gradient(145deg, #b20a18, #dc1731);
}

body[data-page="home"] .lead-news-main .lead-copy {
  left: 58%;
  padding: 30px 28px;
  justify-content: center;
}

body[data-page="home"] .lead-news-main .lead-copy h1,
body[data-page="home"] .lead-news-main .lead-copy h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  line-height: 1.35;
}

body[data-page="home"] .lead-news-main .lead-copy p {
  display: none;
}

body[data-page="home"] .lead-news-main .lead-badges {
  margin-bottom: 12px;
}

body[data-page="home"] .lead-news-main .category-pill {
  background: #fff;
  color: var(--news-red);
}

body[data-page="home"] .lead-news-main .exclusive-badge {
  border-color: rgba(255,255,255,.45);
}

body[data-page="home"] .lead-news-main .lead-actions {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.2);
}

body[data-page="home"] .lead-news-main .read-story {
  display: none;
}

body[data-page="home"] .lead-news-main .news-meta {
  gap: 12px;
}

body[data-page="home"] .lead-news-main .news-meta span:last-child {
  display: none;
}

body[data-page="home"] .lead-news-side {
  min-height: 0;
  padding: 17px;
  border-radius: 0 8px 8px 0;
  box-shadow: none;
}

body[data-page="home"] .lead-news-side h2 {
  font-size: 1rem;
  line-height: 1.48;
}

body[data-page="home"] .side-card-top {
  margin-bottom: auto;
}

body[data-page="home"] .card-number {
  display: none;
}

body[data-page="home"] .side-card-bottom {
  margin-top: 10px;
}

body[data-page="home"] .side-card-bottom > a {
  display: none;
}

body[data-page="home"] .compact-news-section,
body[data-page="home"] .home-latest-section {
  padding: 18px 0 42px;
  background: #f4f5f7;
}

body[data-page="home"] .local-section-title {
  margin-bottom: 18px;
  border-bottom: 2px solid var(--news-red);
}

body[data-page="home"] .local-section-title h2 {
  display: inline-block;
  margin: 0;
  padding: 10px 18px 7px;
  color: #fff;
  background: var(--news-red);
  font-size: 1.2rem;
}

body[data-page="home"] .local-section-title h2::after,
body[data-page="home"] .local-section-title .eyebrow {
  display: none;
}

body[data-page="home"] .local-section-title > a {
  margin: 0 0 8px;
}

body[data-page="home"] .home-latest-grid {
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .home-latest-grid .news-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

body[data-page="home"] .home-latest-grid .news-card:hover {
  box-shadow: 0 10px 25px rgba(15,23,42,.09);
}

body[data-page="home"] .home-latest-grid .card-visual {
  height: 150px;
}

body[data-page="home"] .home-latest-grid .story-rank {
  display: none;
}

body[data-page="home"] .home-latest-grid .card-body {
  padding: 13px 14px 16px;
}

body[data-page="home"] .home-latest-grid .news-card h3 {
  min-height: 3em;
  margin: 6px 0 0;
  font-size: .95rem;
  line-height: 1.5;
}

body[data-page="home"] .home-latest-grid .news-card p {
  display: none;
}

body[data-page="home"] .home-insight-section {
  padding: 38px 0;
  background: #fff;
}

body[data-page="home"] .home-insight-grid {
  gap: 18px;
  grid-template-columns: minmax(0, 3fr) minmax(300px, 1fr);
}

body[data-page="home"] .home-insight-grid > div,
body[data-page="home"] .home-popular-column {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .regional-list {
  border: 1px solid var(--line);
  border-radius: 8px;
}

body[data-page="home"] .regional-list article {
  padding: 12px;
}

body[data-page="home"] .regional-rank {
  display: none;
}

body[data-page="home"] .most-read-list {
  padding: 4px 15px 4px 38px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

body[data-page="home"] .most-read-list li {
  padding: 11px 0;
  border-bottom-color: var(--line);
}

body[data-page="home"] .most-read-list li::marker {
  color: var(--news-red);
}

body[data-page="home"] .most-read-list a {
  grid-template-columns: 70px minmax(0, 1fr);
}

body[data-page="home"] .most-read-list img {
  width: 70px;
  height: 52px;
  border-radius: 4px;
}

body[data-page="home"] .most-read-list a strong {
  color: var(--ink);
  font-size: .8rem;
}

body[data-page="home"] .most-read-list a small {
  color: #8b929d;
}

body[data-page="home"] .menu-news-section {
  padding: 38px 0;
  background: #f4f5f7;
}

body[data-page="home"] .menu-news-section.section-muted {
  background: #fff;
}

.newsletter {
  padding: 42px 0;
}

.newsletter h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

@media (max-width: 1199.98px) {
  .site-header .nav-link {
    padding-inline: 9px;
    font-size: .82rem;
  }

  body[data-page="home"] .home-latest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar > .container {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 8px;
  }

  .mobile-menu-toggle {
    display: grid;
    grid-column: 1;
    justify-self: start;
  }

  .site-header .brand {
    grid-column: 2;
    justify-self: center;
    padding-inline: 12px;
  }

  .site-header .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .site-header .navbar-collapse {
    grid-column: 1 / -1;
    width: 100%;
    padding: 10px 0 16px;
  }

  .site-header .nav-link {
    padding: 11px 5px;
    border-top-color: rgba(255,255,255,.12);
  }

  .site-header .submenu-toggle {
    border-top-color: rgba(255,255,255,.12);
  }

  body[data-page="home"] .lead-news-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 390px 210px;
  }

  body[data-page="home"] .lead-news-main {
    grid-column: 1 / -1;
    border-radius: 8px;
  }

  body[data-page="home"] .lead-news-side {
    border-radius: 8px;
  }

  body[data-page="home"] .home-insight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .site-header .navbar {
    min-height: 62px;
  }

  .site-header .brand-logo {
    width: 145px;
    height: 48px;
  }

  body[data-page="home"] .local-lead-section {
    padding-top: 6px;
  }

  body[data-page="home"] .lead-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 430px repeat(2, 190px);
  }

  body[data-page="home"] .lead-news-main {
    grid-column: auto;
  }

  body[data-page="home"] .lead-news-main .carousel-item > img {
    width: 100%;
    height: 58%;
  }

  body[data-page="home"] .lead-news-main .lead-shade {
    top: 58%;
    left: 0;
  }

  body[data-page="home"] .lead-news-main .lead-copy {
    top: 58%;
    left: 0;
    padding: 18px 20px;
  }

  body[data-page="home"] .lead-news-main .lead-copy h1,
  body[data-page="home"] .lead-news-main .lead-copy h2 {
    margin: 0;
    font-size: 1.25rem;
  }

  body[data-page="home"] .lead-news-main .lead-actions,
  body[data-page="home"] .lead-news-main .lead-badges {
    display: none;
  }

  body[data-page="home"] .home-latest-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-latest-grid .news-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  body[data-page="home"] .home-latest-grid .card-visual {
    min-height: 118px;
  }
}

/* First Bihar-style homepage sections */
.fb-home {
  padding-bottom: 36px;
  background: #f3f3f3;
}

.fb-home > .container,
.fb-home .fb-page-grid {
  width: calc(100% - 32px);
  max-width: none;
}

.site-header > .navbar > .container,
.ticker > .container,
.ad-zone,
main > .container,
main > section > .container {
  width: calc(100% - 32px);
  max-width: none;
}

.fb-page-grid {
  display: grid;
  padding-top: 16px;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
}

.fb-main-column {
  min-width: 0;
}

.fb-lead-block {
  display: grid;
  height: 420px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px 10px 0 0;
  grid-template-columns: minmax(0, 3fr) minmax(210px, 1fr);
}

.fb-lead-story {
  display: grid;
  height: 420px;
  min-height: 0;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 1fr);
}

.fb-lead-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #ddd;
}

.fb-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fb-breaking-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 9px 3px;
  color: #fff;
  background: var(--news-red);
  border-radius: 3px;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .03em;
}

.fb-image-category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 9px 3px;
  color: #fff;
  background: rgba(0,0,0,.62);
  font-size: .67rem;
  font-weight: 800;
}

.fb-lead-copy {
  display: flex;
  padding: 24px 22px;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #a9000d, #cb0019);
}

.fb-lead-copy > span {
  font-size: .72rem;
  font-weight: 800;
}

.fb-lead-copy h1 {
  display: -webkit-box;
  margin: 10px 0 9px;
  overflow: hidden;
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  font-weight: 850;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.fb-lead-copy time {
  color: rgba(255,255,255,.65);
  font-size: .67rem;
}

.fb-author {
  display: flex;
  margin-top: 19px;
  padding-top: 14px;
  align-items: center;
  gap: 9px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: .75rem;
}

.fb-author b {
  display: grid;
  width: 29px;
  height: 29px;
  overflow: hidden;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
}
.fb-author b img { width: 100%; height: 100%; object-fit: cover; }
.fb-author b.has-photo { background: #fff; }

.author-page-hero {
  position: relative;
  min-height: 252px;
  padding: 30px 0 24px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.1), transparent 20%),
    radial-gradient(circle at 78% 14%, rgba(83, 110, 184, .2), transparent 34%),
    linear-gradient(135deg, #111b3b 0%, #1d2957 48%, #0d1734 100%);
  overflow: hidden;
}
.author-page-hero::before {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%);
  content: "";
  pointer-events: none;
}
.author-page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 132px;
  background: linear-gradient(180deg, transparent, rgba(10, 18, 43, .22));
  content: "";
  pointer-events: none;
}
.author-hero-inner { position: relative; z-index: 1; }
.author-crumbs { display: flex; margin-bottom: 14px; align-items: center; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.62); font-size: .86rem; font-weight: 700; }
.author-crumbs a,
.author-crumb-tag {
  display: inline-flex;
  min-height: 32px;
  padding: 7px 13px;
  align-items: center;
  gap: 6px;
  color: #fff;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  text-decoration: none;
}
.author-crumb-tag { color: #ffc26b; background: rgba(249, 115, 22, .2); }
.author-page-card { position: relative; display: flex; width: min(100%, 780px); padding: 22px 24px; align-items: center; gap: 18px; background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; box-shadow: 0 18px 40px rgba(3,10,29,.18); backdrop-filter: blur(10px); overflow: hidden; }
.author-page-card::before { position: absolute; inset: auto -44px -44px auto; width: 180px; height: 180px; background: radial-gradient(circle, rgba(255,255,255,.1), transparent 70%); content: ""; pointer-events: none; }
.author-avatar-wrap { position: relative; flex: 0 0 auto; }
.author-avatar-page { width: 82px; height: 82px; color: #fff; background: linear-gradient(145deg, #ef1530, #b90512); border: 4px solid rgba(255,255,255,.16); box-shadow: 0 14px 28px rgba(0,0,0,.2); font-size: 2.4rem; }
.author-avatar-page.has-photo { background: #fff; }
.author-avatar-page i { font-size: 2.5rem; line-height: 1; }
.author-verified { position: absolute; right: -2px; bottom: 0; display: grid; width: 26px; height: 26px; place-items: center; color: #fff; background: #38e58a; border: 3px solid #1d2854; border-radius: 50%; font-size: .8rem; box-shadow: 0 10px 22px rgba(0,0,0,.24); }
.author-page-copy { display: grid; min-width: 0; flex: 1 1 auto; align-items: center; gap: 8px 14px; grid-template-columns: auto auto auto minmax(220px,1fr); }
.author-kicker { display: inline-flex; min-height: 28px; margin-bottom: 0; padding: 5px 11px; align-items: center; color: #ffd58f; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; font-size: .68rem; font-weight: 800; white-space: nowrap; }
.author-page-card h1 { margin: 0; color: #fff; font-size: clamp(1.45rem, 2vw, 1.95rem); font-weight: 850; line-height: 1.1; letter-spacing: 0; white-space: nowrap; }
.author-page-card strong { display: block; color: rgba(255,255,255,.82); font-size: .92rem; font-weight: 700; white-space: nowrap; }
.author-page-meta { display: flex; margin-top: 0; flex-wrap: wrap; gap: 8px; }
.author-page-meta span { display: inline-flex; min-height: 31px; padding: 6px 12px; align-items: center; gap: 8px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; font-size: .8rem; font-weight: 800; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); white-space: nowrap; }
.author-page-card p { display: -webkit-box; min-width: 0; margin: 0; overflow: hidden; color: rgba(255,255,255,.72); font-size: .86rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
body.author-page .content-section { padding-top: 14px; padding-bottom: 38px; }
body.author-page .local-section-title { margin-bottom: 18px; }

@media (max-width: 991.98px) {
  .author-box { padding: 20px 22px; gap: 15px; }
  .author-box > div:last-child { gap: 8px 12px; grid-template-columns: auto auto auto auto; }
  .author-box-label { grid-column: 1 / -1; justify-self: start; }
  .author-box h2 { font-size: 1.38rem; }
  .author-box strong { font-size: .88rem; }
  .author-box p { grid-column: 1 / -1; margin-top: 2px; -webkit-line-clamp: 2; }
  .author-page-card { width: min(100%, 720px); padding: 20px 22px; gap: 15px; }
  .author-page-copy { gap: 8px 12px; grid-template-columns: auto auto auto; }
  .author-kicker,
  .author-page-card p { grid-column: 1 / -1; }
  .author-page-card h1 { font-size: 1.38rem; }
  .author-page-card strong { font-size: .88rem; }
  .author-page-card p { margin-top: 2px; -webkit-line-clamp: 2; }
}

@media (max-width: 767.98px) {
  .author-box { min-height: 0; padding: 16px 14px; align-items: flex-start; gap: 12px; border-radius: 18px; }
  .author-box > div:last-child { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 9px; }
  .author-avatar.large { width: 64px; height: 64px; border-width: 3px; font-size: 1.9rem; }
  .author-avatar.large::after { width: 22px; height: 22px; border-width: 2px; font-size: 11px; }
  .author-box-label { min-height: 24px; padding: 4px 9px; font-size: .62rem; }
  .author-box h2 { font-size: 1.12rem; }
  .author-box strong { font-size: .78rem; }
  .author-box-meta { gap: 6px; }
  .author-box-meta span { min-height: 28px; padding: 5px 9px; font-size: .7rem; }
  .author-box p { flex-basis: 100%; margin-top: 3px; font-size: .77rem; line-height: 1.55; -webkit-line-clamp: 2; }
  .comments-section { margin-top: 18px; }
  .author-page-hero { min-height: auto; padding: 18px 0 16px; }
  .author-crumbs { margin-bottom: 12px; gap: 8px; font-size: .76rem; }
  .author-page-card { width: 100%; padding: 16px 14px; align-items: flex-start; gap: 12px; border-radius: 18px; }
  .author-page-copy { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 9px; }
  .author-avatar-page { width: 64px; height: 64px; font-size: 1.9rem; border-width: 3px; }
  .author-avatar-page i { font-size: 2rem; }
  .author-verified { width: 22px; height: 22px; right: -2px; border-width: 2px; font-size: .68rem; }
  .author-kicker { min-height: 24px; padding: 4px 9px; font-size: .62rem; }
  .author-page-card h1 { font-size: 1.12rem; }
  .author-page-card strong { font-size: .78rem; }
  .author-page-meta { gap: 6px; }
  .author-page-meta span { min-height: 28px; padding: 5px 9px; font-size: .7rem; }
  .author-page-card p { flex-basis: 100%; margin-top: 3px; font-size: .77rem; line-height: 1.55; -webkit-line-clamp: 2; }
  body.author-page .content-section { padding-top: 12px; padding-bottom: 28px; }
}

.fb-breaking-panel {
  min-width: 0;
  height: 420px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.fb-breaking-panel h2,
.fb-sidebar-panel h2 {
  margin: 0;
  padding: 12px 14px 9px;
  color: #fff;
  background: var(--navy);
  font-size: .94rem;
  font-weight: 800;
}

.fb-breaking-panel h2 i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  background: var(--news-red);
  border-radius: 50%;
}

.fb-breaking-panel > a {
  display: grid;
  min-height: 66px;
  padding: 9px 10px;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px minmax(0, 1fr);
  transition: margin-top .5s ease, opacity .5s ease;
}

.fb-breaking-panel > a.fb-breaking-moving {
  margin-top: var(--breaking-shift, -66px);
  opacity: .2;
}

.fb-breaking-panel img {
  width: 54px;
  height: 43px;
  object-fit: cover;
}

.fb-breaking-panel a span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.fb-breaking-panel strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: .74rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.fb-breaking-panel small {
  margin-top: 3px;
  color: #a0a5ad;
  font-size: .58rem;
}

.fb-top-cards,
.fb-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fb-top-cards {
  padding: 12px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.fb-latest-heading > div > span {
  display: block;
  margin: 0 0 2px 12px;
  color: var(--news-red);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .06em;
}

.fb-news-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e3e6;
  border-radius: 7px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.fb-news-card:hover {
  box-shadow: 0 8px 22px rgba(15,23,42,.1);
  transform: translateY(-3px);
}

.fb-card-image {
  display: block;
  height: 126px;
  overflow: hidden;
  background: #e5e7eb;
}

.fb-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.fb-news-card:hover .fb-card-image img {
  transform: scale(1.035);
}

.fb-news-card > div {
  padding: 10px 11px 12px;
}

.fb-news-card span {
  color: var(--news-red);
  font-size: .66rem;
  font-weight: 800;
}

.fb-news-card h3 {
  display: -webkit-box;
  min-height: 3em;
  margin: 5px 0 7px;
  overflow: hidden;
  font-size: .86rem;
  font-weight: 750;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.fb-news-card time {
  color: #9aa0a8;
  font-size: .61rem;
}

.fb-news-section {
  margin-top: 28px;
  padding: 14px;
  background: #fff;
  border-radius: 9px;
}

.fb-section-heading {
  display: flex;
  margin-bottom: 14px;
  padding-bottom: 8px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid var(--news-red);
}

.fb-section-heading h2 {
  position: relative;
  margin: 0;
  padding-left: 12px;
  font-size: 1.15rem;
  font-weight: 850;
}

.fb-section-heading h2::before {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 4px;
  background: var(--news-red);
  content: "";
}

.fb-section-heading a {
  color: var(--news-red);
  font-size: .72rem;
  font-weight: 800;
}

.fb-card-grid {
  row-gap: 14px;
}

.fb-category-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.fb-category-feature-column,
.fb-category-list {
  min-width: 0;
}

.fb-category-feature {
  overflow: hidden;
  border-radius: 8px;
}

.fb-category-feature > a {
  position: relative;
  display: block;
  height: 315px;
  overflow: hidden;
  color: #fff;
  background: #20242b;
}

.fb-category-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.fb-category-feature > a::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  content: "";
}

.fb-category-feature:hover img {
  transform: scale(1.035);
}

.fb-category-feature > a > span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 5px 9px 3px;
  background: var(--news-red);
  border-radius: 3px;
  font-size: .66rem;
  font-weight: 800;
}

.fb-category-feature > a > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 18px 16px;
}

.fb-category-feature h3 {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.fb-category-feature time,
.fb-category-row time {
  color: #9ca3ad;
  font-size: .63rem;
}

.fb-category-feature time {
  color: rgba(255,255,255,.7);
}

.fb-category-row {
  display: grid;
  min-width: 0;
  padding: 13px 0;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 145px minmax(0, 1fr);
}

.fb-category-feature-column > .fb-category-row {
  margin-top: 4px;
}

.fb-category-row > a {
  display: block;
  height: 88px;
  overflow: hidden;
  background: #e5e7eb;
  border-radius: 6px;
}

.fb-category-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.fb-category-row:hover img {
  transform: scale(1.04);
}

.fb-category-row h3 {
  display: -webkit-box;
  margin: 0 0 7px;
  overflow: hidden;
  font-size: .95rem;
  font-weight: 750;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.fb-category-list .fb-category-row:first-child {
  padding-top: 0;
}

.fb-home-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  min-width: 0;
  gap: 18px;
}

.fb-home-sidebar .ad-zone,
.fb-home-sidebar .samvad-ad-zone {
  width: 100% !important;
  max-width: 100%;
  margin: 0;
}

.fb-home-sidebar .ad-zone *,
.fb-home-sidebar .samvad-ad-zone * {
  max-width: 100%;
}

.fb-sidebar-panel {
  overflow: hidden;
  background: #fff;
  border-radius: 9px;
}

.fb-sidebar-panel > h2 {
  background: var(--news-red);
}

.fb-sidebar-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fb-sidebar-panel li + li {
  border-top: 1px solid var(--line);
}

.fb-sidebar-panel li a {
  display: grid;
  padding: 10px 12px;
  gap: 10px;
  align-items: center;
  grid-template-columns: 52px minmax(0, 1fr);
}

.fb-sidebar-panel li img {
  display: block;
  width: 52px;
  height: 38px;
  object-fit: cover;
  background: #f3f3f3;
  border-radius: 4px;
}

.fb-sidebar-panel li strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.fb-sidebar-dark > h2 {
  background: #10182b;
}

.fb-sidebar-dark > div {
  padding: 5px 12px;
}

.fb-sidebar-dark > div > a {
  display: grid;
  padding: 10px 0;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 72px minmax(0, 1fr);
}

.fb-sidebar-dark img {
  width: 72px;
  height: 52px;
  object-fit: cover;
}

.fb-sidebar-dark strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: .72rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.fb-main-column > .home-wide-ad {
  padding: 0;
}

@media (max-width: 1199.98px) {
  .fb-page-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  .fb-lead-story {
    grid-template-columns: 1.3fr 1fr;
  }

  .fb-card-image {
    height: 112px;
  }
}

@media (max-width: 991.98px) {
  .fb-page-grid {
    grid-template-columns: 1fr;
  }

  .fb-home-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .fb-home-sidebar > .ad-zone,
  .fb-home-sidebar > .samvad-ad-zone {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .site-header > .navbar > .container,
  .ticker > .container,
  .ad-zone,
  main > .container,
  main > section > .container {
    width: 100%;
  }

  .fb-home > .container,
  .fb-home .fb-page-grid {
    width: 100%;
  }

  .fb-page-grid {
    padding-top: 10px;
  }

  .fb-lead-block {
    display: block;
    height: auto;
  }

  .fb-lead-story {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .fb-lead-image {
    height: 245px;
  }

  .fb-lead-copy {
    min-height: 195px;
    padding: 20px;
  }

  .fb-lead-copy h1 {
    margin-block: 7px;
    font-size: 1.35rem;
    -webkit-line-clamp: 3;
  }

  .fb-author {
    display: none;
  }

  .fb-breaking-panel {
    height: 310px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fb-breaking-panel > a {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .fb-breaking-panel img {
    width: 74px;
    height: 54px;
  }

  .fb-top-cards,
  .fb-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fb-home-sidebar {
    grid-template-columns: 1fr;
  }

  .fb-home-sidebar > .ad-zone,
  .fb-home-sidebar > .samvad-ad-zone {
    grid-column: auto;
  }

  .fb-category-layout {
    grid-template-columns: 1fr;
  }

  .fb-category-feature > a {
    height: 280px;
  }
}

@media (max-width: 479.98px) {
  .fb-lead-image {
    height: 220px;
  }

  .fb-top-cards,
  .fb-card-grid {
    gap: 9px;
  }

  .fb-top-cards {
    padding: 9px;
  }

  .fb-news-section {
    padding: 10px;
  }

  .fb-card-image {
    height: 102px;
  }

  .fb-news-card > div {
    padding: 8px 9px 10px;
  }

  .fb-news-card h3 {
    font-size: .78rem;
  }

  .fb-category-feature > a {
    height: 235px;
  }

  .fb-category-feature h3 {
    font-size: 1.05rem;
  }

  .fb-category-row {
    gap: 11px;
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .fb-category-row > a {
    height: 72px;
  }

  .fb-category-row h3 {
    font-size: .82rem;
    -webkit-line-clamp: 2;
  }
}

/* Slightly larger public-site typography */
body {
  font-size: 17px;
}

.site-header .nav-link {
  font-size: .98rem;
}

.ticker-track span {
  font-size: .88rem;
}

.fb-news-card h3 {
  font-size: .94rem;
}

.fb-news-card span,
.fb-section-heading a {
  font-size: .72rem;
}

.fb-category-row h3 {
  font-size: 1.03rem;
}

.fb-sidebar-panel li strong,
.fb-sidebar-dark strong,
.fb-breaking-panel strong {
  font-size: .79rem;
}

.fb-breaking-panel h2,
.fb-sidebar-panel h2 {
  font-size: 1.08rem;
}

.fb-breaking-panel strong {
  font-size: .88rem;
  line-height: 1.5;
}

.fb-sidebar-panel li strong,
.fb-sidebar-dark strong {
  font-size: .86rem;
  line-height: 1.52;
}

.sidebar-title h2 {
  font-size: 1.24rem;
}

.sidebar-title span {
  font-size: .68rem;
}

.sidebar-live-list strong,
.sidebar-ranking a {
  font-size: .9rem;
  line-height: 1.55;
}

.sidebar-ranking small {
  font-size: .7rem;
}

.category-grid .news-card h3 {
  font-size: 1.2rem;
}

.category-grid .news-card p {
  font-size: .94rem;
}

.article-content p {
  font-size: 1.14rem;
}

.article-content h2 {
  font-size: 1.82rem;
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .site-header .nav-link {
    font-size: .95rem;
  }

  .fb-news-card h3 {
    font-size: .86rem;
  }

  .fb-category-row h3 {
    font-size: .9rem;
  }

  .article-content p {
    font-size: 1.04rem;
  }

  .fb-breaking-panel h2,
  .fb-sidebar-panel h2 {
    padding: 13px 14px 10px;
    font-size: 1.05rem;
  }

  .fb-breaking-panel strong {
    font-size: .9rem;
    line-height: 1.5;
  }

  .fb-sidebar-panel li strong,
  .fb-sidebar-dark strong {
    font-size: .88rem;
  }

  .sidebar-title h2 {
    font-size: 1.16rem;
  }

  .sidebar-live-list strong,
  .sidebar-ranking a {
    font-size: .92rem;
    line-height: 1.55;
  }

  .sidebar-live-list a {
    padding-block: 17px;
  }

  .sidebar-ranking li {
    padding-block: 15px;
  }
}

/* Screenshot-style compact news header */
.site-header {
  background: #0b1b42;
  border-bottom: 0;
  box-shadow: none;
}

.site-header .navbar {
  min-height: 74px;
  padding: 0;
}

.site-header > .navbar > .container {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.site-header .brand {
  min-width: 210px;
  align-self: stretch;
  justify-content: center;
  padding: 3px 20px 3px 12px;
  background: transparent;
}

.site-header .brand-logo {
  width: 190px;
  height: 70px;
  object-fit: contain;
}

.site-header .navbar-collapse {
  min-width: 0;
}

.site-header .navbar-nav {
  width: 100%;
  justify-content: space-around;
}

.site-header .nav-link {
  min-height: 74px;
  margin: 0;
  padding: 22px 14px 18px;
  color: #fff;
  font-size: .98rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: #fff;
  background: transparent;
}

.site-header .nav-link.active::after {
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 4px;
  background: #ff1d3d;
  border-radius: 4px 4px 0 0;
}

.site-header .header-actions {
  align-self: stretch;
  margin-left: 8px;
  border-left: 1px solid rgba(255,255,255,.09);
}

.header-social,
.site-header .icon-btn,
.install-btn {
  display: grid;
  width: 56px;
  min-width: 56px;
  height: 74px;
  place-items: center;
  color: rgba(255,255,255,.72);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.09);
  border-radius: 0;
}

.header-social:hover,
.site-header .icon-btn:hover,
.install-btn:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.header-social svg,
.site-header .icon-btn svg,
.install-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-social:first-child svg,
.header-social:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.site-header .mobile-menu-toggle,
.site-header .submenu-toggle {
  display: none;
}

.install-btn {
  width: 74px;
  min-width: 74px;
  gap: 2px;
  color: #fff;
  font-size: .58rem;
  font-weight: 900;
  line-height: 1;
}

.install-btn svg {
  width: 22px;
  height: 22px;
}

.search-icon-btn svg {
  width: 24px;
  height: 24px;
}

.ticker {
  background: #ef1838;
  border-bottom: 0;
}

.ticker > .container {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 10px 26px 9px 20px;
  color: #fff;
  background: #c80921;
  font-size: .88rem;
  font-weight: 900;
  white-space: nowrap;
}

.ticker-label::before {
  width: 10px;
  height: 10px;
  margin-right: 9px;
  background: #ff9caf;
  border-radius: 50%;
  content: "";
}

.ticker-window {
  width: 100%;
}

.ticker-track span {
  position: relative;
  padding: 10px 28px 9px;
  color: #fff;
  font-size: .92rem;
  font-weight: 800;
}

.ticker-track span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  background: #ff9caf;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,255,255,.08);
  content: "";
  transform: translateY(-50%);
}

.ticker-track a {
  color: #fff;
}

@media (max-width: 1299.98px) {
  .site-header .nav-link {
    padding-inline: 10px;
    font-size: .9rem;
  }

  .header-social,
  .site-header .icon-btn {
    width: 50px;
    min-width: 50px;
  }

  .install-btn {
    width: 66px;
    min-width: 66px;
  }
}

@media (max-width: 991.98px) {
  .site-header > .navbar > .container {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    padding-inline: 10px;
  }

  .site-header .navbar {
    min-height: 64px;
  }

  .site-header .mobile-menu-toggle {
    display: grid;
    height: 44px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
  }

  .site-header .submenu-toggle {
    display: block;
  }

  .site-header .brand {
    min-width: 0;
    padding: 5px 0;
  }

  .site-header .brand-logo {
    width: 190px;
    height: 56px;
  }

  .site-header .header-actions {
    height: 64px;
    margin-left: 0;
    border-left: 0;
  }

  .header-social {
    display: none;
  }

  .install-btn,
  .site-header .icon-btn {
    width: 48px;
    min-width: 48px;
    height: 64px;
  }

  .install-btn {
    width: 58px;
    min-width: 58px;
  }

  .site-header .navbar-collapse {
    padding: 8px 0 14px;
  }

  .site-header .navbar-nav {
    display: block;
  }

  .site-header .nav-link {
    min-height: auto;
    padding: 12px 6px;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .site-header .nav-link.active::after {
    display: none;
  }

  .ticker-track span {
    padding-inline: 24px;
    font-size: .82rem;
  }
}
