:root {
  --bg: #f3e6b4;
  --surface: rgba(255, 252, 243, 0.82);
  --surface-strong: rgba(255, 252, 244, 0.96);
  --ink: #101010;
  --muted: #645b43;
  --line: rgba(16, 16, 16, 0.12);
  --line-strong: rgba(16, 16, 16, 0.18);
  --yellow: #ffea3b;
  --red: #a41e19;
  --shadow: 0 28px 72px rgba(92, 67, 8, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shell: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 241, 161, 0.72), transparent 20%),
    radial-gradient(circle at 84% 16%, rgba(255, 240, 180, 0.56), transparent 24%),
    linear-gradient(180deg, #fbf2d8 0%, #f4e7be 100%);
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.article-header {
  position: relative;
  top: auto;
  z-index: 1;
  padding: 18px 0 12px;
  backdrop-filter: none;
  background: rgba(249, 240, 206, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.article-header__inner,
.article-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand__title,
.article-footer__brand {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand__tagline {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 700;
}

.article-nav a:hover,
.back-home:hover,
.related-card__headline:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.back-home,
.action-button,
.source-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: linear-gradient(180deg, #ffef52, #f5d936);
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(196, 154, 0, 0.15), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.action-button {
  background: rgba(255, 252, 244, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.article-shell {
  padding: 22px 0 40px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(100, 91, 67, 0.92);
  font-size: 0.96rem;
  font-weight: 500;
}

.article-layout {
  display: block;
}

.article-main,
.related-section {
  border: 1px solid rgba(136, 114, 50, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 22% 10%, rgba(255, 244, 184, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 239, 0.96), rgba(255, 248, 229, 0.88));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.article-main {
  padding: 28px 28px 32px;
}

.article-kicker,
.article-block__eyebrow,
.related-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  width: fit-content;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffef4f, #f3d938);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.article-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px 34px;
  align-items: start;
  grid-template-areas:
    "copy media"
    "story support"
    "story support"
    "inline-ad inline-ad";
}

.article-lead--story-only {
  grid-template-areas:
    "copy media"
    "story story"
    "inline-ad inline-ad";
}

.article-lead__copy {
  grid-area: copy;
  min-width: 0;
  display: grid;
  gap: 14px;
}

.article-hero h1 {
  margin: 14px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 700;
  text-wrap: balance;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  color: rgba(74, 66, 46, 0.92);
  font-size: 1rem;
  font-weight: 500;
}

.article-reading-time {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(17, 17, 17, 0.16);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}

.article-media {
  grid-area: media;
  margin: 0;
  display: grid;
  gap: 12px;
  align-content: start;
  align-self: start;
}

.article-inline-ad {
  grid-area: inline-ad;
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 238, 0.8);
  text-align: center;
}

.article-inline-ad .adsbygoogle {
  width: 100%;
}

.article-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 380px;
  max-height: min(78vh, 760px);
  object-fit: cover;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 44px rgba(112, 84, 15, 0.14);
}

.article-media figcaption {
  padding-left: 4px;
  color: rgba(100, 91, 67, 0.96);
  font-size: 0.92rem;
  line-height: 1.5;
}

.article-media .article-actions {
  justify-content: flex-start;
  padding-left: 4px;
}

.article-media .tag-row {
  padding-left: 4px;
  max-width: 100%;
}

.article-summary {
  margin: 8px 0 0;
  max-width: 34ch;
  font-size: 1.04rem;
  line-height: 1.72;
  color: #282311;
}

.article-block {
  padding: 22px 24px 24px;
  border: 1px solid rgba(121, 98, 38, 0.14);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 14px 32px rgba(104, 77, 10, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.article-block--story {
  grid-area: story;
  margin-top: 0;
  padding-top: 24px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.article-support-rail {
  grid-area: support;
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
}

.article-followup {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  margin-top: 26px;
  padding-top: 0;
  border-top: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.article-followup--single {
  grid-template-columns: 1fr;
}

.article-block__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.article-block__head h2,
.related-section__head h2 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
}

.article-secondary {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.article-block--story .article-body,
.article-block--india-pulse .article-body {
  max-width: 78ch;
}

.article-block--story .article-block__head,
.article-block--story .article-body,
.article-followup .article-block__head,
.article-followup .primary-source,
.article-followup .article-block {
  margin-left: auto;
  margin-right: auto;
}

.article-block--story .article-block__head,
.article-block--story .article-body {
  margin-left: 0;
  margin-right: 0;
}

.article-block--latest,
.article-followup .article-block {
  width: 100%;
}

.article-block--background .background-list {
  gap: 16px;
}

.article-block--key-points .article-body {
  max-width: 62ch;
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
  color: #252014;
}

.story-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  margin: 0;
}

.story-list a {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(121, 98, 38, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.story-list strong {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.05rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.story-list span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-body {
  display: grid;
  gap: 14px;
  min-height: 0;
}

.article-body p,
.article-body h3 {
  margin: 0;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #1f1a10;
}

.article-body h3 {
  margin-top: 8px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 14px;
  margin: 0;
  max-width: 40rem;
}

.tag-row:empty {
  display: none;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.background-list {
  display: grid;
  gap: 14px;
}

.background-item {
  padding: 18px 20px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(104, 77, 10, 0.08);
}

.background-item h3 {
  margin: 0 0 10px;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
}

.background-item p,
.background-item__source {
  margin: 0;
  line-height: 1.7;
}

.background-item__source {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
}

.fact-sheet-wrap {
  overflow-x: auto;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(104, 77, 10, 0.06);
}

.fact-sheet {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

.fact-sheet th,
.fact-sheet td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.12);
  text-align: left;
  vertical-align: top;
}

.fact-sheet tr:last-child th,
.fact-sheet tr:last-child td {
  border-bottom: 0;
}

.fact-sheet th {
  width: 30%;
  background: rgba(255, 234, 59, 0.82);
  font-family: "Inter Tight", sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  border-right: 1px solid rgba(16, 16, 16, 0.12);
}

.primary-source {
  padding: 22px 24px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(104, 77, 10, 0.06);
}

.primary-source p {
  margin: 10px 0 0;
  max-width: 70ch;
  line-height: 1.72;
}

.primary-source__link {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.article-inline-media {
  margin: 8px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.article-inline-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.related-section {
  margin-top: 30px;
  padding: 30px;
}

.article-followup,
.related-section,
.ad-slot,
.article-footer {
  content-visibility: auto;
}

.article-followup,
.related-section {
  contain-intrinsic-size: 1px 720px;
}

.ad-slot,
.article-footer {
  contain-intrinsic-size: 1px 160px;
}

.article-body--skeleton {
  gap: 14px;
}

.skeleton-line {
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0.15), rgba(16, 16, 16, 0.08));
  background-size: 220% 100%;
  animation: article-skeleton 1.4s ease-in-out infinite;
}

.skeleton-line--lg {
  height: 20px;
}

@keyframes article-skeleton {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

.related-section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

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

.related-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 238, 0.92);
  box-shadow: 0 14px 34px rgba(37, 25, 0, 0.08);
}

.related-card__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 10;
  background: rgba(16, 16, 16, 0.06);
}

.related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card__tag {
  min-height: 30px;
  padding: 0 12px;
  background: rgba(239, 197, 71, 0.22);
  font-size: 0.74rem;
  width: fit-content;
}

.related-card__headline {
  display: -webkit-box;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-wrap: balance;
}

.related-card__meta {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.ad-slot {
  padding: 0 0 24px;
}

.ad-slot__inner {
  min-height: 90px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 238, 0.8);
}

.article-footer {
  padding: 0 0 28px;
}

.article-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 238, 0.8);
}

.article-footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.article-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.article-footer__link {
  font-weight: 700;
  text-decoration: none;
}

.article-footer__link:hover,
.article-footer__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  .article-lead {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  }

  .article-followup {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  }

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

@media (max-width: 900px) {
  .article-header__inner,
  .article-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-footer__actions,
  .article-footer__links {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .article-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
  }

  .article-main {
    padding: 24px;
  }

  .article-lead {
    grid-template-columns: 1fr;
    gap: 22px;
    grid-template-areas:
      "copy"
      "media"
      "story"
      "support"
      "inline-ad";
  }

  .article-lead--story-only {
    grid-template-areas:
      "copy"
      "media"
      "story"
      "inline-ad";
  }

  .article-followup {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 20px), var(--shell));
  }

  .article-shell {
    padding-top: 18px;
  }

  .article-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .article-main {
    padding: 16px 12px 18px;
  }

  .article-block {
    padding: 16px 12px 18px;
  }

  .article-followup {
    margin-top: 18px;
  }

  .primary-source,
  .related-section,
  .ad-slot__inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .article-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .article-main,
  .related-section {
    border-radius: 24px;
  }

  .article-media img {
    min-height: 0;
    max-height: none;
  }

  .article-summary {
    max-width: 100%;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}
