:root {
  --nav24-navy: #061a3a;
  --nav24-navy-2: #0b2a57;
  --nav24-red: #e20c18;
  --nav24-red-dark: #bd0711;
  --nav24-ink: #131722;
  --nav24-muted: #667085;
  --nav24-line: #e7e9ee;
  --nav24-soft: #f5f7fa;
  --nav24-white: #fff;
  --nav24-radius: 16px;
  --nav24-shadow: 0 16px 40px rgba(6, 26, 58, .10);
  --nav24-font: "Noto Sans Devanagari", "Nirmala UI", Mangal, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--nav24-ink);
  background: #fff;
  font-family: var(--nav24-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input { font: inherit; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.nav24-shell { width: min(1280px, calc(100% - 32px)); margin-inline: auto; }

/* Remove GeneratePress front-page constraints without touching posts/archives. */
.home #page.grid-container { max-width: none; }
.home #content.site-content { display: block; padding: 0; }
.home .content-area { width: 100%; }
.home .site-main { margin: 0; }

/* Header */
.nav24-site-header { position: relative; z-index: 900; background: #fff; }
.nav24-utility { border-bottom: 1px solid var(--nav24-line); background: #fff; }
.nav24-utility-inner {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #697386;
  font-size: 12px;
  font-weight: 600;
}
.nav24-utility-tagline { letter-spacing: .02em; }
.nav24-mainbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--nav24-navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(3, 18, 44, .12);
}
.admin-bar .nav24-mainbar { top: 32px; }
.nav24-mainbar-inner { min-height: 64px; display: flex; align-items: center; gap: 18px; }
.nav24-brand {
  width: 124px;
  height: 86px;
  margin-top: 14px;
  margin-bottom: -16px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 0 0 20px 20px;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.65);
}
.nav24-logo { width: 110px; max-height: 78px; object-fit: contain; }
.nav24-brand-text { color: #8a070d; font-size: 28px; line-height: .8; font-weight: 900; letter-spacing: -1px; }
.nav24-brand-text span { color: #b7bbc3; }
.nav24-brand-text small { display: block; margin-top: 8px; color: var(--nav24-red); font-size: 14px; letter-spacing: 2px; text-align: center; }
.nav24-primary-nav { flex: 1 1 auto; min-width: 0; }
.nav24-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: stretch; gap: 2px; }
.nav24-menu > li { position: relative; display: flex; align-items: stretch; }
.nav24-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 13px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease;
}
.nav24-menu > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  border-radius: 6px 6px 0 0;
  background: transparent;
  transform: scaleX(.3);
  transition: transform .18s ease, background-color .18s ease;
}
.nav24-menu > li:hover > a,
.nav24-menu > li.current-menu-item > a,
.nav24-menu > li.current-menu-ancestor > a { background: rgba(255,255,255,.06); }
.nav24-menu > li:hover > a::after,
.nav24-menu > li.current-menu-item > a::after,
.nav24-menu > li.current-menu-ancestor > a::after { background: var(--nav24-red); transform: scaleX(1); }
.nav24-menu .sub-menu {
  position: absolute;
  top: 100%; left: 0;
  width: 230px;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: #fff;
  color: var(--nav24-ink);
  border: 1px solid var(--nav24-line);
  border-radius: 0 0 14px 14px;
  box-shadow: var(--nav24-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.nav24-menu li:hover > .sub-menu,
.nav24-menu li:focus-within > .sub-menu,
.nav24-menu li.keyboard-open > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav24-menu .sub-menu a { display: block; padding: 10px 12px; border-radius: 9px; font-weight: 700; font-size: 14px; }
.nav24-menu .sub-menu a:hover { background: var(--nav24-soft); color: var(--nav24-red); }
.nav24-header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav24-live-link {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 36px; padding: 0 11px;
  border: 1px solid rgba(255,255,255,.28); border-radius: 10px;
  color: #fff; font-size: 12px; font-weight: 800;
}
.nav24-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff3040; box-shadow: 0 0 0 4px rgba(255,48,64,.16); }
.nav24-search-toggle, .nav24-menu-toggle {
  width: 40px; height: 40px; border: 0; border-radius: 10px;
  display: inline-grid; place-items: center;
  background: transparent; color: #fff; cursor: pointer;
}
.nav24-search-toggle:hover, .nav24-menu-toggle:hover { background: rgba(255,255,255,.08); }
.nav24-search-toggle svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.nav24-menu-toggle { display: none; gap: 4px; }
.nav24-menu-toggle span { width: 23px; height: 2px; background: #fff; border-radius: 3px; display: block; }

.nav24-breaking-wrap { padding: 46px 0 14px; background: #fff; }
.nav24-breaking {
  min-height: 46px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  background: var(--nav24-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(226, 12, 24, .15);
}
.nav24-breaking-label { padding: 0 22px; font-size: 17px; font-style: italic; font-weight: 900; white-space: nowrap; border-right: 1px solid rgba(255,255,255,.45); }
.nav24-breaking-track { display: flex; align-items: center; gap: 28px; min-width: 0; overflow-x: auto; scrollbar-width: none; padding: 0 22px; }
.nav24-breaking-track::-webkit-scrollbar { display: none; }
.nav24-breaking-track a { position: relative; white-space: nowrap; font-size: 14px; font-weight: 800; }
.nav24-breaking-track a + a::before { content: "•"; position: absolute; left: -17px; opacity: .55; }
.nav24-search-panel { background: #fff; border-bottom: 1px solid var(--nav24-line); box-shadow: 0 12px 32px rgba(6,26,58,.12); }
.nav24-search-inner { padding: 18px 0; }
.nav24-search-inner form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.nav24-search-inner input { min-width: 0; height: 48px; border: 1px solid #cfd4dc; border-radius: 11px; padding: 0 14px; background: #fff; color: var(--nav24-ink); }
.nav24-search-inner button { border: 0; border-radius: 11px; padding: 0 22px; background: var(--nav24-red); color: #fff; font-weight: 800; cursor: pointer; }

/* Homepage */
.nav24-home { padding: 28px 0 72px; background: #fff; }
.nav24-section-kicker, .nav24-eyebrow {
  color: var(--nav24-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav24-hero { margin-bottom: 24px; }
.nav24-hero-grid { margin-top: 12px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(390px, .9fr); gap: 16px; }
.nav24-lead-story, .nav24-side-story, .nav24-news-card, .nav24-category-module, .nav24-offbeat-grid article { min-width: 0; }
.nav24-lead-media { position: relative; display: block; min-height: 510px; overflow: hidden; border-radius: 20px; background: var(--nav24-soft); box-shadow: var(--nav24-shadow); }
.nav24-post-image, .nav24-image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.nav24-lead-media > .nav24-post-image, .nav24-lead-media > .nav24-image-placeholder { position: absolute; inset: 0; }
.nav24-image-placeholder { display: block; min-height: 180px; background: linear-gradient(135deg, #e9edf3, #f7f8fa 48%, #dde3eb); }
.nav24-media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(4, 10, 22, .86) 100%); pointer-events: none; }
.nav24-category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 9px;
  border-radius: 7px;
  background: var(--nav24-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}
.nav24-lead-media > .nav24-category-badge { position: absolute; top: 18px; left: 18px; }
.nav24-lead-copy { position: absolute; left: 22px; right: 22px; bottom: 22px; color: #fff; }
.nav24-lead-copy h2 { margin: 0 0 8px; font-size: clamp(27px, 2.7vw, 42px); line-height: 1.18; letter-spacing: -.02em; }
.nav24-time { color: #8a93a2; font-size: 11px; font-weight: 650; }
.nav24-lead-copy .nav24-time { color: rgba(255,255,255,.78); }
.nav24-hero-side { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.nav24-side-story { border: 1px solid var(--nav24-line); border-radius: 16px; overflow: hidden; background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.nav24-side-story:hover, .nav24-news-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(6,26,58,.09); }
.nav24-side-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--nav24-soft); }
.nav24-side-media .nav24-post-image { height: 100%; }
.nav24-side-media .nav24-category-badge { position: absolute; left: 10px; bottom: 10px; }
.nav24-side-story h2 { margin: 12px 12px 8px; font-size: 15px; line-height: 1.36; }
.nav24-side-story .nav24-time { display: block; margin: 0 12px 12px; }

.nav24-topic-strip {
  margin: 18px 0 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.nav24-topic-strip::-webkit-scrollbar { display: none; }
.nav24-topic-strip span { color: var(--nav24-red); font-weight: 900; font-size: 13px; white-space: nowrap; }
.nav24-topic-strip a { white-space: nowrap; border: 1px solid var(--nav24-line); background: #fff; border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 750; }
.nav24-topic-strip a:hover { border-color: #c8ced7; background: var(--nav24-soft); }

.nav24-section { margin: 42px 0; content-visibility: auto; contain-intrinsic-size: 900px; }
.nav24-section-head, .nav24-module-head {
  display: flex; align-items: end; justify-content: space-between; gap: 18px;
  padding-bottom: 12px; margin-bottom: 18px; border-bottom: 1px solid var(--nav24-line);
}
.nav24-section-head h2, .nav24-module-head h2 { margin: 2px 0 0; font-size: 28px; line-height: 1.15; letter-spacing: -.02em; }
.nav24-section-head > a, .nav24-module-head > a { flex: 0 0 auto; color: var(--nav24-red); font-size: 12px; font-weight: 850; }
.nav24-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.nav24-news-card { border: 1px solid var(--nav24-line); border-radius: 16px; overflow: hidden; background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.nav24-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--nav24-soft); }
.nav24-card-media .nav24-post-image { height: 100%; transition: transform .28s ease; }
.nav24-news-card:hover .nav24-post-image { transform: scale(1.025); }
.nav24-card-media .nav24-category-badge { position: absolute; left: 10px; bottom: 10px; }
.nav24-card-body { padding: 13px 14px 14px; }
.nav24-card-body h3 { margin: 0 0 10px; font-size: 16px; line-height: 1.42; }

.nav24-category-board { margin-top: 46px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.nav24-category-module { --module-accent: var(--nav24-red); border: 1px solid var(--nav24-line); border-radius: 18px; padding: 18px; background: #fff; content-visibility: auto; contain-intrinsic-size: 700px; }
.nav24-accent-blue { --module-accent: #1565d8; }
.nav24-accent-green { --module-accent: #168454; }
.nav24-accent-rose { --module-accent: #cf2962; }
.nav24-accent-gold { --module-accent: #a56b00; }
.nav24-accent-navy { --module-accent: #0b2a57; }
.nav24-module-head { border-bottom: 2px solid var(--module-accent); margin-bottom: 14px; }
.nav24-module-head h2 { position: relative; font-size: 22px; }
.nav24-module-head h2::before { content: ""; display: inline-block; width: 5px; height: 23px; margin-right: 9px; vertical-align: -4px; border-radius: 4px; background: var(--module-accent); }
.nav24-module-head > a { color: var(--module-accent); }
.nav24-module-feature { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--nav24-line); }
.nav24-module-feature-media { aspect-ratio: 16/10; overflow: hidden; border-radius: 12px; background: var(--nav24-soft); }
.nav24-module-feature-media .nav24-post-image { height: 100%; }
.nav24-module-feature h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.38; }
.nav24-module-feature p { margin: 0; color: var(--nav24-muted); font-size: 12px; line-height: 1.55; }
.nav24-module-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 16px; }
.nav24-module-list article { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--nav24-line); }
.nav24-module-list article:nth-last-child(-n+2) { border-bottom: 0; }
.nav24-module-thumb { aspect-ratio: 16/10; overflow: hidden; border-radius: 9px; background: var(--nav24-soft); }
.nav24-module-thumb .nav24-post-image { height: 100%; }
.nav24-module-list h3 { margin: 0 0 5px; font-size: 13px; line-height: 1.38; }

.nav24-offbeat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 230px; gap: 14px; }
.nav24-offbeat-grid article { position: relative; border-radius: 16px; overflow: hidden; background: var(--nav24-soft); }
.nav24-offbeat-grid article.nav24-offbeat-large { grid-column: span 2; grid-row: span 2; }
.nav24-offbeat-grid article:nth-child(6) { display: none; }
.nav24-offbeat-grid a { position: absolute; inset: 0; display: block; }
.nav24-offbeat-grid .nav24-post-image, .nav24-offbeat-grid .nav24-image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.nav24-offbeat-copy { position: absolute; left: 15px; right: 15px; bottom: 15px; color: #fff; }
.nav24-offbeat-copy h3 { margin: 8px 0 0; font-size: 16px; line-height: 1.35; }
.nav24-offbeat-large .nav24-offbeat-copy h3 { font-size: 25px; }

.nav24-editorial-note {
  margin-top: 54px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center;
  padding: 34px;
  border-radius: 20px;
  background: var(--nav24-navy);
  color: #fff;
}
.nav24-editorial-note h2 { margin: 6px 0 0; font-size: 28px; line-height: 1.25; }
.nav24-editorial-note p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.75; }

/* Footer */
.nav24-site-footer { background: #07162f; color: #fff; }
.nav24-footer-grid { padding: 52px 0 44px; display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 34px; }
.nav24-site-footer h2 { margin: 0 0 16px; font-size: 15px; color: #fff; }
.nav24-footer-logo { display: inline-block; margin-bottom: 12px; font-size: 24px; font-weight: 900; letter-spacing: -.02em; }
.nav24-footer-brand p, .nav24-footer-newsletter p { margin: 0; max-width: 42ch; color: #aeb8c8; font-size: 13px; line-height: 1.7; }
.nav24-footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.nav24-footer-links a { color: #c4ccd8; font-size: 13px; }
.nav24-footer-links a:hover { color: #fff; }
.nav24-footer-cta { display: inline-flex; margin-top: 16px; min-height: 38px; align-items: center; padding: 0 15px; border-radius: 9px; background: var(--nav24-red); color: #fff; font-size: 12px; font-weight: 850; }
.nav24-footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.nav24-footer-bottom-inner { min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 18px; color: #9eabbc; font-size: 11px; }

/* Focus */
.nav24-site-header a:focus-visible,
.nav24-site-header button:focus-visible,
.nav24-home a:focus-visible,
.nav24-site-footer a:focus-visible { outline: 3px solid #ffcc36; outline-offset: 3px; }

/* Responsive */
@media (max-width: 1120px) {
  .nav24-menu > li > a { padding-inline: 9px; font-size: 13px; }
  .nav24-live-link { display: none; }
  .nav24-hero-grid { grid-template-columns: 1.25fr .9fr; }
  .nav24-card-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .nav24-card-grid .nav24-news-card:nth-child(n+7) { display: none; }
  .nav24-module-list { grid-template-columns: 1fr; }
  .nav24-module-list article:nth-last-child(-n+2) { border-bottom: 1px solid var(--nav24-line); }
  .nav24-module-list article:last-child { border-bottom: 0; }
}

@media (max-width: 920px) {
  .nav24-utility { display: none; }
  .admin-bar .nav24-mainbar { top: 46px; }
  .nav24-mainbar-inner { min-height: 58px; }
  .nav24-brand { width: 100px; height: 72px; margin-top: 10px; margin-bottom: -12px; }
  .nav24-logo { width: 88px; max-height: 66px; }
  .nav24-menu-toggle { display: inline-grid; flex: 0 0 auto; }
  .nav24-primary-nav {
    position: fixed;
    z-index: 1000;
    top: 58px;
    left: 0;
    bottom: 0;
    width: min(360px, 90vw);
    padding: 24px 18px;
    background: var(--nav24-navy);
    overflow-y: auto;
    transform: translateX(-102%);
    transition: transform .2s ease;
    box-shadow: 20px 0 50px rgba(0,0,0,.2);
  }
  .admin-bar .nav24-primary-nav { top: 104px; }
  .nav24-primary-nav.is-open { transform: translateX(0); }
  .nav24-menu-open { overflow: hidden; }
  .nav24-menu { display: block; }
  .nav24-menu > li { display: block; }
  .nav24-menu > li > a { min-height: 48px; padding: 0 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav24-menu > li > a::after { display: none; }
  .nav24-menu .sub-menu { position: static; width: auto; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-radius: 0; background: rgba(255,255,255,.04); color: #fff; display: none; }
  .nav24-menu li:focus-within > .sub-menu,
  .nav24-menu li.keyboard-open > .sub-menu { display: block; }
  .nav24-menu .sub-menu a { color: #fff; }
  .nav24-breaking-wrap { padding-top: 30px; }
  .nav24-hero-grid { grid-template-columns: 1fr; }
  .nav24-lead-media { min-height: 430px; }
  .nav24-hero-side { grid-template-columns: repeat(4, minmax(220px, 1fr)); overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .nav24-hero-side::-webkit-scrollbar { display: none; }
  .nav24-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .nav24-card-grid .nav24-news-card:nth-child(n+7) { display: block; }
  .nav24-category-board { grid-template-columns: 1fr; }
  .nav24-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .nav24-shell { width: min(100% - 22px, 1280px); }
  .nav24-mainbar-inner { gap: 10px; }
  .nav24-brand { width: 86px; height: 66px; }
  .nav24-logo { width: 76px; }
  .nav24-breaking-wrap { padding-top: 24px; padding-bottom: 10px; }
  .nav24-breaking { border-radius: 13px; grid-template-columns: 1fr; padding: 0; }
  .nav24-breaking-label { padding: 9px 13px 7px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.32); font-size: 13px; }
  .nav24-breaking-track { padding: 9px 13px; }
  .nav24-home { padding-top: 18px; }
  .nav24-lead-media { min-height: 390px; border-radius: 16px; }
  .nav24-lead-copy { left: 16px; right: 16px; bottom: 16px; }
  .nav24-lead-copy h2 { font-size: 27px; }
  .nav24-card-grid { grid-template-columns: 1fr; }
  .nav24-news-card { display: grid; grid-template-columns: 128px minmax(0, 1fr); border-radius: 13px; }
  .nav24-card-media { aspect-ratio: 1 / 1; }
  .nav24-card-media .nav24-category-badge { display: none; }
  .nav24-section { margin: 34px 0; }
  .nav24-section-head h2 { font-size: 24px; }
  .nav24-module-feature { grid-template-columns: 1fr; }
  .nav24-module-list article { grid-template-columns: 105px minmax(0,1fr); }
  .nav24-offbeat-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .nav24-offbeat-grid article.nav24-offbeat-large { grid-column: 1 / -1; grid-row: auto; height: 330px; }
  .nav24-offbeat-grid article:nth-child(6) { display: block; }
  .nav24-editorial-note { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .nav24-footer-grid { grid-template-columns: 1fr; padding-top: 38px; }
  .nav24-footer-bottom-inner { min-height: 72px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; }
}

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