:root {
  --red: #ed1c24;
  --red-dark: #b80f18;
  --navy: #111827;
  --black: #07090d;
  --ink: #16181d;
  --muted: #5f6673;
  --gold: #b18a2e;
  --line: #dedede;
  --paper: #fbfaf7;
  --soft: #f1f1ef;
  --white: #ffffff;
  --shadow: 0 18px 38px rgba(7, 9, 13, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans Devanagari", "Mukta", "Hind", Arial, sans-serif;
  line-height: 1.48;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.breaking-bar {
  color: var(--white);
  background: var(--black);
  border-bottom: 3px solid var(--red);
}

.breaking-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  overflow: hidden;
}

.breaking-label {
  flex: 0 0 auto;
  padding: 6px 11px;
  color: var(--white);
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ticker {
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(20%); }
  to { transform: translateX(-100%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #cfcfcf;
  box-shadow: 0 8px 22px rgba(7, 9, 13, 0.08);
}

.topline {
  color: #eef2f7;
  background: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.topline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 30px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 8px 0;
}

.brand img {
  width: 92px;
  height: 72px;
  object-fit: contain;
  background: var(--red);
  border: 1px solid rgba(237, 28, 36, 0.28);
  box-shadow: 0 8px 18px rgba(7, 9, 13, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  border-block: 1px solid #d9d9d9;
}

.site-nav a {
  padding: 10px 11px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 800;
  border-right: 1px solid #e2e2e2;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--red);
}

.subscribe-pill {
  margin-left: 8px;
  color: var(--white) !important;
  background: var(--red);
  border-right: 0 !important;
}

.topic-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.topic-strip-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 0.92rem;
}

.topic-strip-inner strong {
  color: var(--red);
  text-transform: uppercase;
}

.topic-strip-inner a {
  color: var(--navy);
  font-weight: 800;
}

.hero {
  padding: 24px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 30px;
  align-items: stretch;
}

.news-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.lead-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  border-top: 5px solid var(--red);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media,
.thumb-button {
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--navy);
  cursor: pointer;
}

.hero-media {
  min-height: 462px;
  box-shadow: none;
}

.hero-media img,
.thumb-button img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hero-media:hover img,
.thumb-button:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.play-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 13px;
  color: var(--white);
  background: var(--red);
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  border-left: 1px solid var(--line);
}

.eyebrow,
.kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 10px 0 14px;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.12;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead-sidebar {
  background: var(--white);
  border-top: 5px solid var(--black);
  box-shadow: var(--shadow);
}

.side-heading {
  padding: 13px 16px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.brief-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.brief-thumb {
  border: 0;
  padding: 0;
  background: var(--navy);
  cursor: pointer;
}

.brief-thumb img {
  height: 68px;
  object-fit: cover;
}

.brief-item span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-item h3 {
  margin: 3px 0 0;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
  font-size: 1rem;
  line-height: 1.25;
}

.side-subscribe {
  display: block;
  margin: 14px 16px 16px;
  padding: 11px 12px;
  color: var(--white);
  background: var(--red);
  text-align: center;
  font-weight: 900;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn,
.watch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary,
.watch-link {
  color: var(--white);
  background: var(--red);
}

.btn-outline {
  color: var(--black);
  background: var(--white);
  border-color: var(--black);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.section {
  padding: 34px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--black);
}

.section-heading h2,
.section-heading h3 {
  margin: 2px 0 10px;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.section-heading a {
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 900;
}

.small-heading {
  margin-top: 18px;
  border-bottom-color: var(--red);
}

.small-heading h3 {
  font-size: 1.45rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.video-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d7d7d7;
  border-top: 3px solid transparent;
  box-shadow: 0 10px 22px rgba(7, 9, 13, 0.07);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--red);
  box-shadow: var(--shadow);
}

.thumb-button {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.thumb-button:disabled {
  cursor: default;
}

.card-body {
  padding: 14px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-meta span {
  color: var(--red);
  text-transform: uppercase;
}

.video-card h3 {
  margin: 8px 0 8px;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
  font-size: 1.06rem;
  line-height: 1.32;
}

.video-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.watch-link {
  width: 100%;
  border: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.feature-band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.digest-section {
  padding: 10px 0 24px;
}

.digest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.digest-item {
  padding: 18px;
  background: var(--white);
  border-left: 5px solid var(--red);
  box-shadow: 0 8px 18px rgba(7, 9, 13, 0.07);
}

.digest-item span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.digest-item strong {
  display: block;
  margin-top: 5px;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.story-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
}

.story-panel h2 {
  margin: 0 0 12px;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
  font-size: 2rem;
}

.story-list {
  display: grid;
  gap: 12px;
}

.story-item {
  padding: 16px;
  background: var(--white);
  border-left: 4px solid var(--red);
  box-shadow: 0 10px 22px rgba(16, 23, 34, 0.06);
}

.story-item strong {
  display: block;
  margin-bottom: 4px;
}

.cta {
  padding: 42px;
  color: var(--white);
  background: var(--black);
  border-left: 8px solid var(--red);
}

.cta h2 {
  margin: 0 0 8px;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.cta p {
  max-width: 720px;
  margin: 0;
  color: #e7edf4;
}

.cta .btn-outline,
.hero-copy .btn-outline:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.page-hero {
  padding: 54px 0 34px;
  color: var(--white);
  background: linear-gradient(90deg, var(--black), var(--navy));
  border-bottom: 5px solid var(--red);
}

.page-hero h1 {
  margin: 6px 0 10px;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #d8dde6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.contact-card,
.contact-form {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-form h2 {
  margin: 0 0 14px;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
}

.contact-detail {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  margin-top: 38px;
  padding: 46px 0 20px;
  color: #d8dde6;
  background: var(--black);
  border-top: 6px solid var(--red);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-col h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-col a {
  display: block;
  margin: 8px 0;
  color: #d8dde6;
}

.footer-col a:hover {
  color: var(--gold);
}

.copyright {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aab4c3;
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(16, 23, 34, 0.78);
}

.modal.is-open {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--white);
  background: var(--red);
  font-size: 1.6rem;
  cursor: pointer;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-text,
.related-videos {
  padding: 24px;
}

.modal-text h2 {
  margin: 6px 0 10px;
  font-family: "Noto Serif Devanagari", "Noto Serif", Georgia, serif;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .subscribe-pill {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .news-lead-layout,
  .lead-stack,
  .story-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .video-grid.three,
  .digest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .header-main {
    min-height: 72px;
  }

  .brand img {
    width: 68px;
    height: 54px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-media {
    min-height: auto;
  }

  .topline-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
  }

  .topic-strip-inner {
    gap: 14px;
  }

  .hero-copy,
  .cta,
  .story-panel,
  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .section {
    padding: 30px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .section-heading a {
    margin-bottom: 10px;
  }

  .video-grid,
  .video-grid.three,
  .digest-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .breaking-inner {
    gap: 10px;
  }

  .breaking-label {
    font-size: 0.7rem;
  }

  .ticker {
    animation-duration: 20s;
  }
}
