:root {
  --nova-accent: #c51f2d;
  --nova-accent-dark: #9f1521;
  --nova-on-accent: #ffffff;
  --nova-ink: #171a22;
  --nova-ink-soft: #3d4450;
  --nova-muted: #5f6876;
  --nova-paper: #ffffff;
  --nova-surface: #f7f8fa;
  --nova-warm: #f7f3ec;
  --nova-line: #e2e4e8;
  --nova-line-strong: #c9cdd4;
  --nova-navy: #101a2a;
  --nova-focus: #f2bd3d;
  --nova-container: 1280px;
  --nova-logo-width: 220px;
  --nova-body-font: "Noto Sans Devanagari", "Kohinoor Devanagari", "Mangal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nova-heading-font: "Noto Serif Devanagari", "Kohinoor Devanagari", "Nirmala UI", Georgia, serif;
  --nova-radius-sm: 10px;
  --nova-radius: 16px;
  --nova-radius-lg: 24px;
  --nova-shadow-sm: 0 10px 30px rgba(18, 25, 38, 0.08);
  --nova-shadow: 0 22px 62px rgba(18, 25, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--nova-ink);
  background: var(--nova-paper);
  font-family: var(--nova-body-font);
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

body.nova-dark {
  --nova-ink: #f4f6f9;
  --nova-ink-soft: #d6dbe3;
  --nova-muted: #b7bfcb;
  --nova-paper: #10151d;
  --nova-surface: #171d27;
  --nova-warm: #1b222d;
  --nova-line: #303947;
  --nova-line-strong: #536074;
  --nova-navy: #090e15;
  --nova-accent-text: #ff9da6;
  --wp--preset--color--ink: #f4f6f9;
  --wp--preset--color--paper: #10151d;
  --wp--preset--color--warm: #1b222d;
  --wp--preset--color--navy: #090e15;
  color: var(--nova-ink);
  background: var(--nova-paper);
  color-scheme: dark;
}

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

body a {
  color: inherit;
  text-decoration: none !important;
}

body a:hover {
  color: var(--nova-accent);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--nova-on-accent);
  background: var(--nova-accent);
}

:focus-visible {
  outline: 3px solid var(--nova-focus);
  outline-offset: 3px;
}

.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;
}

.screen-reader-text:focus,
.nova-skip:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 0;
  top: 12px;
  left: 12px;
  z-index: 10000;
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border-radius: 8px;
}

.nova-container {
  width: min(calc(100% - 40px), var(--nova-container));
  margin-inline: auto;
}

.nova-site-main {
  min-height: 55vh;
}

.nova-skip {
  position: absolute;
  left: -9999px;
}

.nova-reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 10000;
  width: 0;
  height: 4px;
  background: var(--nova-accent);
  pointer-events: none;
}

/* Header */
.nova-site-header {
  position: relative;
  z-index: 100;
  background: color-mix(in srgb, var(--nova-paper) 96%, transparent);
  border-top: 5px solid var(--nova-ink);
  border-bottom: 1px solid var(--nova-line);
}

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

.nova-brand-wrap {
  min-width: 0;
}

.nova-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--nova-ink);
}

.nova-brand:hover {
  color: var(--nova-ink);
}

.nova-brand-logo img {
  width: min(var(--nova-logo-width), 100%);
  max-height: 78px;
  object-fit: contain;
}

.nova-brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 58px;
  flex: 0 0 54px;
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border-radius: 12px 22px 12px 22px;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--nova-accent) 28%, transparent);
  font-family: var(--nova-heading-font);
  font-size: 27px;
  font-weight: 700;
}

.nova-brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.16;
}

.nova-brand-text strong {
  overflow: hidden;
  font-family: var(--nova-heading-font);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 750;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nova-brand-text small {
  overflow: hidden;
  margin-top: 6px;
  color: var(--nova-muted);
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nova-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nova-all-link,
.nova-icon-button,
.nova-menu-toggle {
  min-height: 44px;
}

.nova-all-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 19px;
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border: 1px solid var(--nova-accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.nova-all-link:hover {
  color: var(--nova-on-accent);
  background: var(--nova-accent-dark);
  border-color: var(--nova-accent-dark);
}

.nova-icon-button,
.nova-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 12px;
  background: var(--nova-paper);
  border: 1px solid var(--nova-line-strong);
  border-radius: 999px;
  cursor: pointer;
}

.nova-icon-button:hover,
.nova-menu-toggle:hover {
  color: var(--nova-accent);
  border-color: var(--nova-accent);
}

.nova-icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nova-menu-toggle {
  display: none;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.nova-menu-toggle-bars,
.nova-menu-toggle-bars::before,
.nova-menu-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nova-menu-toggle-bars {
  position: relative;
}

.nova-menu-toggle-bars::before {
  position: absolute;
  top: -6px;
}

.nova-menu-toggle-bars::after {
  position: absolute;
  top: 6px;
}

.nova-nav-shell {
  border-top: 1px solid var(--nova-line);
}

.nova-primary-nav {
  min-width: 0;
}

.nova-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nova-menu > li {
  position: relative;
}

.nova-menu > li > a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 8px 13px;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nova-menu > li:first-child > a {
  padding-left: 0;
}

.nova-menu > li.current-menu-item > a,
.nova-menu > li.current-menu-ancestor > a,
.nova-menu > li > a:hover {
  color: var(--nova-accent);
  border-bottom-color: var(--nova-accent);
}

.nova-menu .sub-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  display: none;
  min-width: 230px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  border-radius: 0 0 14px 14px;
  box-shadow: var(--nova-shadow);
}

.nova-menu li:hover > .sub-menu,
.nova-menu li:focus-within > .sub-menu {
  display: block;
}

.nova-menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.nova-menu .sub-menu a:hover {
  color: var(--nova-on-accent);
  background: var(--nova-accent);
}

.nova-menu-backdrop {
  display: none;
}

/* Search */
.nova-search-modal[hidden] {
  display: none;
}

.nova-search-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: start center;
  padding: 10vh 0 5vh;
  overflow-y: auto;
}

.nova-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 22, 0.76);
  backdrop-filter: blur(6px);
}

.nova-search-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 720px);
  padding: 42px;
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius-lg);
  box-shadow: var(--nova-shadow);
}

.nova-search-dialog h2 {
  margin: 8px 0 22px;
  font-family: var(--nova-heading-font);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.2;
}

.nova-search-dialog > p {
  margin: 16px 0 0;
  color: var(--nova-muted);
  font-size: 14px;
}

.nova-search-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--nova-line);
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
}

.nova-search-form {
  display: flex;
  gap: 10px;
}

.nova-search-field {
  width: 100%;
  min-height: 52px;
  padding: 10px 16px;
  color: var(--nova-ink);
  background: var(--nova-paper);
  border: 1px solid var(--nova-line-strong);
  border-radius: 12px;
}

.nova-search-form button {
  min-width: 96px;
  padding: 8px 18px;
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

/* Shared elements */
.nova-section {
  padding: 68px 0;
}

.nova-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nova-accent);
  font-size: 13px;
  font-weight: 850;
}

.nova-eyebrow::before {
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nova-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--nova-ink);
}

.nova-section-head h2 {
  margin: 2px 0 0;
  font-family: var(--nova-heading-font);
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.2;
}

.nova-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  color: var(--nova-accent);
  font-size: 14px;
  font-weight: 800;
}

.nova-kicker,
.nova-news-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--tone-color, var(--nova-accent));
  background: color-mix(in srgb, var(--tone-color, var(--nova-accent)) 10%, var(--nova-paper));
  border: 1px solid color-mix(in srgb, var(--tone-color, var(--nova-accent)) 24%, transparent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.tone-red { --tone-color: #c51f2d; --section-color: #c51f2d; }
.tone-leaf { --tone-color: #147653; --section-color: #16835d; }
.tone-blue { --tone-color: #1769aa; --section-color: #1769aa; }
.tone-indigo { --tone-color: #4f52b8; --section-color: #4f52b8; }
.tone-amber { --tone-color: #925b00; --section-color: #d08a10; }
.tone-teal { --tone-color: #087078; --section-color: #087f86; }
.tone-purple { --tone-color: #7b3fa1; --section-color: #7b3fa1; }
.tone-green { --tone-color: #347125; --section-color: #3b7e2c; }
.tone-rose { --tone-color: #b43c72; --section-color: #b43c72; }
.tone-ink { --tone-color: #303746; --section-color: #303746; }
.tone-brown { --tone-color: #865536; --section-color: #865536; }

.nova-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 800;
}

.nova-btn-primary {
  color: var(--nova-on-accent);
  background: var(--nova-accent);
}

.nova-btn-primary:hover {
  color: var(--nova-on-accent);
  background: var(--nova-accent-dark);
}

.nova-topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.nova-topic-chips a,
.nova-category-subnav-v5 a,
.nova-home-subcategory-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 13px;
  color: var(--nova-ink-soft);
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.nova-topic-chips a:hover,
.nova-category-subnav-v5 a:hover,
.nova-home-subcategory-links a:hover {
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border-color: var(--nova-accent);
}

.nova-topic-chips-small a {
  min-height: 34px;
  padding: 5px 10px;
  font-size: 12px;
}

.nova-breadcrumbs {
  margin-bottom: 20px;
  color: var(--nova-muted);
  font-size: 13px;
  font-weight: 650;
}

.nova-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nova-breadcrumbs li {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nova-breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--nova-line-strong);
  content: "/";
}

.nova-breadcrumbs span[aria-current="page"] {
  overflow: hidden;
  max-width: 44ch;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dynamic homepage */
.nova-home-news-section {
  --section-color: var(--nova-accent);
  padding: 62px 0 68px;
  border-top: 1px solid var(--nova-line);
}

.nova-home-news-section:nth-of-type(even) {
  background: var(--nova-surface);
}

.nova-home-news-section:first-of-type {
  border-top: 0;
}

.nova-home-news-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--section-color);
}

.nova-home-news-section-head > div {
  min-width: 0;
}

.nova-home-news-section-head h2 {
  margin: 0;
  font-family: var(--nova-heading-font);
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.1;
}

.nova-home-news-section-head h2 a:hover {
  color: var(--section-color);
}

.nova-home-subcategory-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.nova-home-subcategory-links a {
  min-height: 31px;
  padding: 4px 10px;
  font-size: 12px;
}

.nova-home-news-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  color: var(--section-color);
  font-size: 14px;
  font-weight: 850;
}

.nova-home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.8fr);
  gap: 18px;
}

.nova-home-news-layout.is-single {
  grid-template-columns: 1fr;
}

.nova-home-news-layout.is-single .nova-home-news-side {
  display: none;
}

.nova-home-news-lead,
.nova-home-news-side-card,
.nova-category-feature-main-v5,
.nova-category-feature-small-v5 {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--nova-navy);
  border-radius: var(--nova-radius-lg);
  box-shadow: var(--nova-shadow-sm);
}

.nova-home-news-lead {
  min-height: 570px;
}

.nova-home-news-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nova-home-news-side-card {
  min-height: 276px;
}

.nova-home-news-lead-link,
.nova-home-news-side-link,
.nova-category-feature-link-v5 {
  position: absolute;
  inset: 0;
  display: block;
  color: #ffffff;
}

.nova-home-news-lead-link:hover,
.nova-home-news-side-link:hover,
.nova-category-feature-link-v5:hover {
  color: #ffffff;
}

.nova-home-news-lead-image,
.nova-home-news-side-image,
.nova-category-feature-main-image-v5,
.nova-category-feature-small-image-v5 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.nova-home-news-lead:hover img,
.nova-home-news-side-card:hover img,
.nova-category-feature-main-v5:hover img,
.nova-category-feature-small-v5:hover img {
  transform: scale(1.035);
}

.nova-news-card-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 10, 15, 0.02) 30%, rgba(7, 10, 15, 0.86) 100%);
}

.nova-home-news-lead-copy,
.nova-home-news-side-copy,
.nova-category-feature-copy-v5,
.nova-category-feature-small-copy-v5 {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 28px;
}

.nova-home-news-lead-copy h3,
.nova-home-news-side-copy h3,
.nova-category-feature-copy-v5 h2,
.nova-category-feature-small-copy-v5 h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--nova-heading-font);
  line-height: 1.24;
  text-wrap: balance;
}

.nova-home-news-lead-copy h3 {
  max-width: 18ch;
  font-size: clamp(32px, 4vw, 51px);
}

.nova-home-news-side-copy h3 {
  font-size: clamp(22px, 2.1vw, 29px);
}

.nova-home-news-lead-copy p,
.nova-home-news-side-copy p,
.nova-category-feature-copy-v5 p,
.nova-category-feature-small-copy-v5 p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nova-home-news-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.nova-home-news-list-card {
  min-width: 0;
  overflow: hidden;
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nova-home-news-list-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--section-color) 42%, var(--nova-line));
  box-shadow: var(--nova-shadow-sm);
}

.nova-home-news-list-card > a {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 108px;
  color: var(--nova-ink);
}

.nova-home-news-list-image {
  width: 116px;
  height: 100%;
  object-fit: cover;
}

.nova-home-news-list-card > a > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 12px 13px;
}

.nova-home-news-list-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-family: var(--nova-heading-font);
  font-size: 16px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nova-home-news-list-card small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 5px;
  color: var(--nova-muted);
  font-size: 11px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Standard cards and archives */
.nova-card-grid {
  display: grid;
  gap: 24px;
}

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

.nova-story-card {
  min-width: 0;
  overflow: hidden;
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
  box-shadow: 0 8px 25px rgba(18, 25, 38, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nova-story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nova-shadow-sm);
}

.nova-story-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--nova-warm);
}

.nova-story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nova-story-card:hover .nova-story-image {
  transform: scale(1.035);
}

.nova-story-body {
  padding: 20px;
}

.nova-story-body h2 {
  margin: 12px 0 8px;
  font-family: var(--nova-heading-font);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.32;
}

.nova-story-body p {
  margin: 0;
  color: var(--nova-muted);
  font-size: 14px;
  line-height: 1.6;
}

.nova-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  color: var(--nova-accent);
  font-size: 13px;
  font-weight: 850;
}

.nova-page-hero,
.nova-category-header-v5 {
  padding: 50px 0 42px;
  background: var(--nova-warm);
  border-bottom: 1px solid var(--nova-line);
}

.nova-page-hero h1,
.nova-category-title-row h1 {
  max-width: 22ch;
  margin: 0;
  font-family: var(--nova-heading-font);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.12;
  text-wrap: balance;
}

.nova-page-hero-simple {
  padding-bottom: 36px;
}

.nova-page-narrow {
  width: min(calc(100% - 40px), 900px);
}

.nova-archive-description,
.nova-category-description-v5 {
  max-width: 760px;
  margin-top: 16px;
  color: var(--nova-muted);
}

.nova-category-description-v5 p,
.nova-archive-description p {
  margin: 0;
}

.nova-category-subnav-v5 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.nova-category-page-v5 {
  padding: 38px 0 72px;
}

.nova-category-feature-grid-v5 {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
  gap: 18px;
  margin-bottom: 30px;
}

.nova-category-feature-grid-v5.is-single {
  grid-template-columns: 1fr;
}

.nova-category-feature-grid-v5.is-single .nova-category-feature-side-v5 {
  display: none;
}

.nova-category-feature-main-v5 {
  min-height: 560px;
}

.nova-category-feature-side-v5 {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nova-category-feature-small-v5 {
  min-height: 270px;
}

.nova-category-feature-copy-v5 h2 {
  max-width: 18ch;
  font-size: clamp(32px, 4vw, 50px);
}

.nova-category-feature-small-copy-v5 h3 {
  font-size: clamp(22px, 2vw, 29px);
}

.nova-news-label {
  margin-bottom: 12px;
  color: #ffffff;
  background: color-mix(in srgb, var(--tone-color, var(--nova-accent)) 80%, transparent);
  border-color: rgba(255, 255, 255, 0.28);
}

.nova-category-feed-v5 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.nova-category-feed-card-v5 {
  min-width: 0;
  overflow: hidden;
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nova-category-feed-card-v5:hover {
  transform: translateY(-4px);
  box-shadow: var(--nova-shadow-sm);
}

.nova-category-feed-image-link-v5 {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.nova-category-feed-image-v5 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nova-category-feed-card-v5:hover .nova-category-feed-image-v5 {
  transform: scale(1.035);
}

.nova-category-feed-copy-v5 {
  padding: 20px;
}

.nova-category-feed-copy-v5 h2 {
  margin: 0;
  font-family: var(--nova-heading-font);
  font-size: 24px;
  line-height: 1.34;
}

.nova-category-feed-copy-v5 p {
  margin: 10px 0 0;
  color: var(--nova-muted);
  font-size: 14px;
}

.navigation.pagination {
  margin-top: 42px;
}

.pagination .nav-links,
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pagination ul.page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination .page-numbers a,
.pagination .page-numbers span,
.pagination a.page-numbers,
.pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 7px 12px;
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

.pagination .page-numbers.current,
.pagination span.page-numbers.current {
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border-color: var(--nova-accent);
}

.nova-explore-empty,
.nova-not-found {
  text-align: center;
}

.nova-explore-empty {
  padding: 64px 24px;
  background: var(--nova-warm);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius-lg);
}

.nova-explore-empty h2 {
  margin: 0;
  font-family: var(--nova-heading-font);
  font-size: 34px;
}

.nova-explore-empty p {
  margin: 10px 0 22px;
  color: var(--nova-muted);
}

.nova-explore-empty .nova-search-form {
  max-width: 620px;
  margin: 24px auto 0;
}

/* Single post */
.nova-article-header {
  padding: 50px 0 32px;
  background: var(--nova-warm);
  border-bottom: 1px solid var(--nova-line);
}

.nova-article-header-inner {
  width: min(calc(100% - 40px), 1120px);
}

.nova-article-header h1 {
  max-width: 20ch;
  margin: 18px 0 0;
  font-family: var(--nova-heading-font);
  font-size: clamp(46px, 6.2vw, 78px);
  line-height: 1.13;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.nova-article-deck {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--nova-ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.nova-article-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 26px;
}

.nova-byline {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nova-byline img {
  border-radius: 50%;
}

.nova-byline span {
  display: flex;
  flex-direction: column;
  color: var(--nova-muted);
  font-size: 12px;
}

.nova-byline strong {
  color: var(--nova-ink);
  font-size: 14px;
}

.nova-article-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.nova-share-buttons,
.nova-reading-tools {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nova-share-buttons > span {
  margin-right: 3px;
  color: var(--nova-muted);
  font-size: 12px;
  font-weight: 750;
}

.nova-share-buttons a,
.nova-share-buttons button,
.nova-reading-tools button,
.nova-share-rail a,
.nova-share-rail button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 7px 10px;
  color: var(--nova-ink);
  background: var(--nova-paper);
  border: 1px solid var(--nova-line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.nova-share-buttons a:hover,
.nova-share-buttons button:hover,
.nova-reading-tools button:hover,
.nova-share-rail a:hover,
.nova-share-rail button:hover {
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border-color: var(--nova-accent);
}

.nova-reading-tools button:not(:first-child):not(:nth-child(2)) {
  gap: 5px;
  padding-inline: 13px;
}

.nova-featured-wrap {
  width: min(calc(100% - 40px), 1180px);
  margin-top: 34px;
}

.nova-single-featured {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: var(--nova-radius-lg);
  box-shadow: var(--nova-shadow-sm);
}

.nova-image-caption {
  margin: 8px 4px 0;
  color: var(--nova-muted);
  font-size: 12px;
}

.nova-article-layout {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 24px;
}

.nova-article-main {
  min-width: 0;
}

.nova-share-rail {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 8px;
}

.nova-share-rail a,
.nova-share-rail button {
  width: 44px;
  height: 44px;
  padding: 0;
}

.nova-article-content,
.nova-page-content {
  color: var(--nova-ink-soft);
  font-size: 20px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.nova-article-content > :first-child,
.nova-page-content > :first-child {
  margin-top: 0;
}

.nova-article-content p,
.nova-page-content p {
  margin: 0 0 1.35em;
}

.nova-article-content h2,
.nova-article-content h3,
.nova-article-content h4,
.nova-page-content h2,
.nova-page-content h3,
.nova-page-content h4 {
  scroll-margin-top: 28px;
  color: var(--nova-ink);
  font-family: var(--nova-heading-font);
  line-height: 1.3;
  text-wrap: balance;
}

.nova-article-content h2,
.nova-page-content h2 {
  margin: 1.75em 0 0.65em;
  font-size: clamp(30px, 3.4vw, 43px);
}

.nova-article-content h3,
.nova-page-content h3 {
  margin: 1.5em 0 0.55em;
  font-size: clamp(25px, 2.8vw, 34px);
}

.nova-article-content h4,
.nova-page-content h4 {
  margin: 1.4em 0 0.5em;
  font-size: 24px;
}

.nova-article-content a,
.nova-page-content a {
  color: var(--nova-accent);
  text-decoration: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.nova-article-content blockquote,
.nova-page-content blockquote {
  margin: 1.6em 0;
  padding: 22px 24px;
  color: var(--nova-ink);
  background: var(--nova-warm);
  border-left: 5px solid var(--nova-accent);
  border-radius: 0 var(--nova-radius) var(--nova-radius) 0;
  font-family: var(--nova-heading-font);
  font-size: 1.12em;
}

.nova-article-content ul,
.nova-article-content ol,
.nova-page-content ul,
.nova-page-content ol {
  padding-left: 1.25em;
}

.nova-article-content li,
.nova-page-content li {
  margin-bottom: 0.45em;
}

.nova-article-content table,
.nova-page-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.nova-article-content th,
.nova-article-content td,
.nova-page-content th,
.nova-page-content td {
  padding: 12px 14px;
  border: 1px solid var(--nova-line);
  text-align: left;
  white-space: normal;
}

.nova-article-content th,
.nova-page-content th {
  color: var(--nova-ink);
  background: var(--nova-warm);
}

.nova-article-content iframe,
.nova-article-content video,
.nova-page-content iframe,
.nova-page-content video {
  max-width: 100%;
}

.nova-toc {
  margin: 0 0 2em;
  padding: 22px 24px;
  background: var(--nova-warm);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
  font-size: 16px;
}

.nova-toc-title {
  margin: 0 0 10px !important;
  color: var(--nova-ink);
  font-family: var(--nova-heading-font);
  font-size: 22px;
  font-weight: 750;
}

.nova-toc-list {
  margin: 0;
  padding-left: 1.2em !important;
}

.nova-toc-list li {
  margin: 5px 0;
}

.nova-toc-list a {
  color: var(--nova-ink);
  text-decoration: none;
}

.nova-toc-l3 {
  margin-left: 16px !important;
}

.nova-link-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 1.5em 0;
  font-size: 15px;
  font-weight: 800;
}

.nova-tag-list {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--nova-line);
}

.nova-tag-list > span {
  display: block;
  margin-bottom: 9px;
  color: var(--nova-muted);
  font-size: 13px;
  font-weight: 800;
}

.nova-tag-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nova-tag-list a {
  display: inline-flex;
  padding: 6px 11px;
  color: var(--nova-ink-soft);
  background: var(--nova-surface);
  border: 1px solid var(--nova-line);
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
}

.nova-author-box {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  margin-top: 34px;
  padding: 22px;
  background: var(--nova-warm);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
}

.nova-author-box img {
  border-radius: 50%;
}

.nova-author-box span {
  color: var(--nova-accent);
  font-size: 12px;
  font-weight: 850;
}

.nova-author-box h2 {
  margin: 2px 0 5px;
  font-size: 24px;
}

.nova-author-box p {
  margin: 0;
  color: var(--nova-muted);
  font-size: 14px;
}

.nova-end-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding: 22px;
  background: var(--nova-warm);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
}

.nova-end-share > div:first-child {
  display: flex;
  flex-direction: column;
}

.nova-end-share span {
  color: var(--nova-muted);
  font-size: 13px;
}

.nova-end-share strong {
  font-family: var(--nova-heading-font);
  font-size: 20px;
}

.nova-end-share .nova-share-buttons a,
.nova-end-share .nova-share-buttons button {
  width: auto;
  padding-inline: 14px;
}

.nova-post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.nova-post-navigation-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 128px;
  overflow: hidden;
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nova-post-navigation-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--nova-shadow-sm);
}

.nova-post-navigation-image {
  width: 132px;
  height: 100%;
  object-fit: cover;
}

.nova-post-navigation-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 14px 15px;
}

.nova-post-navigation-copy em {
  color: var(--nova-accent);
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}

.nova-post-navigation-copy strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 4px;
  font-family: var(--nova-heading-font);
  font-size: 17px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nova-post-navigation-copy small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 5px;
  color: var(--nova-muted);
  font-size: 11px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nova-sidebar {
  position: sticky;
  top: 22px;
  display: grid;
  min-width: 0;
  gap: 18px;
}

.nova-widget {
  padding: 20px;
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
}

.nova-widget-heading > span {
  color: var(--nova-accent);
  font-size: 12px;
  font-weight: 850;
}

.nova-widget-title {
  margin: 2px 0 15px;
  font-family: var(--nova-heading-font);
  font-size: 23px;
  line-height: 1.3;
}

.nova-sidebar-list,
.nova-sidebar-pick-list {
  display: grid;
  gap: 11px;
}

.nova-sidebar-list article,
.nova-sidebar-pick-list article {
  overflow: hidden;
  border: 1px solid var(--nova-line);
  border-radius: 11px;
}

.nova-sidebar-list a,
.nova-sidebar-pick-list a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  min-height: 76px;
}

.nova-sidebar-thumb,
.nova-sidebar-pick-image {
  width: 86px;
  height: 100%;
  object-fit: cover;
}

.nova-sidebar-list span,
.nova-sidebar-pick-list span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 9px 10px;
}

.nova-sidebar-list strong,
.nova-sidebar-pick-list strong {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--nova-heading-font);
  font-size: 15px;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nova-sidebar-list small,
.nova-sidebar-pick-list small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 3px;
  color: var(--nova-muted);
  font-size: 10px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nova-widget-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  color: var(--nova-accent);
  font-size: 12px;
  font-weight: 850;
}

.nova-related {
  padding: 54px 0 20px;
}

.nova-related .nova-story-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.nova-more-topics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin: 30px 0 60px;
  padding: 26px;
  background: var(--nova-warm);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius-lg);
}

.nova-more-topics h2 {
  margin: 4px 0 0;
  font-family: var(--nova-heading-font);
  font-size: 30px;
}

/* Pages, comments and utility */
.nova-page-section {
  padding-top: 46px;
}

.nova-page-featured {
  margin-bottom: 30px;
}

.nova-page-featured img {
  border-radius: var(--nova-radius-lg);
}

.nova-comments {
  max-width: 860px;
  margin: 0 auto 68px;
  padding-top: 36px;
  border-top: 1px solid var(--nova-line);
}

.nova-comments > h2,
.comment-reply-title {
  font-family: var(--nova-heading-font);
  font-size: 30px;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-list .comment {
  margin: 18px 0;
  padding: 20px;
  background: var(--nova-surface);
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
}

.nova-comment-body {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
}

.nova-comment-avatar span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border-radius: 50%;
  font-weight: 850;
}

.nova-comment-author a,
.nova-comment-author strong {
  color: var(--nova-ink);
  font-weight: 850;
}

.nova-comment-awaiting {
  margin: 6px 0 0;
  color: var(--nova-muted);
  font-size: 13px;
}

.nova-comment-reply {
  margin-top: 12px;
}

.nova-comment-reply a {
  color: var(--nova-accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.comment-list .children {
  margin-top: 16px;
  padding-left: 22px;
  list-style: none;
}

.comment-meta {
  font-size: 13px;
}

.comment-content {
  margin-top: 12px;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 750;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--nova-ink);
  background: var(--nova-paper);
  border: 1px solid var(--nova-line-strong);
  border-radius: 10px;
}

.comment-form input[type="submit"] {
  min-height: 44px;
  padding: 8px 18px;
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.nova-not-found {
  padding: 84px 0;
}

.nova-not-found .nova-container {
  max-width: 760px;
}

.nova-error-number {
  display: block;
  color: color-mix(in srgb, var(--nova-accent) 16%, transparent);
  font-family: var(--nova-heading-font);
  font-size: clamp(100px, 18vw, 210px);
  font-weight: 800;
  line-height: 0.85;
}

.nova-not-found h1 {
  margin: 10px auto 12px;
  font-family: var(--nova-heading-font);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.2;
}

.nova-not-found p {
  color: var(--nova-muted);
}

.nova-not-found-search {
  max-width: 620px;
  margin: 24px auto;
}

.nova-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--nova-on-accent);
  background: var(--nova-accent);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--nova-shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.nova-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Footer */
.nova-site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: var(--nova-navy);
}

.nova-footer-topic-band {
  color: var(--nova-ink);
  background: var(--nova-warm);
  border-top: 1px solid var(--nova-line);
  border-bottom: 1px solid var(--nova-line);
}

.nova-footer-topic-band .nova-container {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nova-footer-topic-band .nova-container::-webkit-scrollbar {
  display: none;
}

.nova-footer-topic-band strong {
  flex: 0 0 auto;
  color: var(--nova-accent);
  font-size: 13px;
}

.nova-footer-topic-links {
  display: flex;
  align-items: center;
  gap: 17px;
}

.nova-footer-topic-links a {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 750;
}

.nova-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 0.7fr));
  gap: 44px;
  padding-top: 56px;
  padding-bottom: 52px;
}

.nova-footer-about {
  min-width: 0;
}

.nova-footer-brand,
.nova-footer-brand:hover {
  color: #ffffff;
}

.nova-footer-brand .nova-brand-text small {
  color: rgba(255, 255, 255, 0.62);
}

.nova-footer-about > p {
  max-width: 44ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.nova-footer-email {
  display: inline-flex;
  margin-top: 16px;
  color: #ffffff;
  font-weight: 750;
}

.nova-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.nova-social-links a {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
}

.nova-social-links a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.nova-footer-column h2,
.nova-footer-widget h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-family: var(--nova-heading-font);
  font-size: 20px;
}

.nova-footer-column ul,
.nova-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nova-footer-column li + li,
.nova-footer-menu li + li {
  margin-top: 8px;
}

.nova-footer-column a,
.nova-footer-widget a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.nova-footer-column a:hover,
.nova-footer-widget a:hover {
  color: #ffffff;
}

.nova-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nova-footer-bottom .nova-container {
  display: flex;
  align-items: center;
  min-height: 62px;
}

.nova-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.nova-mobile-dock {
  display: none;
}

/* Dark mode details */
body.nova-dark,
body.nova-dark .nova-site-main,
body.nova-dark .nova-article-header,
body.nova-dark .nova-page-section,
body.nova-dark .nova-not-found {
  color: var(--nova-ink);
  background-color: var(--nova-paper);
}

body.nova-dark a:not(.nova-btn):not(.nova-all-link):not(.nova-share-button):not(.nova-brand):not(.nova-footer-brand) {
  color: inherit;
}

body.nova-dark .nova-menu a,
body.nova-dark .nova-home-news-all,
body.nova-dark .nova-section-link,
body.nova-dark .nova-widget-more,
body.nova-dark .nova-card-link,
body.nova-dark .nova-post-navigation-copy em,
body.nova-dark .nova-widget-heading > span,
body.nova-dark .nova-author-box span,
body.nova-dark .nova-eyebrow,
body.nova-dark .nova-comment-reply a,
body.nova-dark .nova-footer-topic-band strong,
body.nova-dark .nova-footer-topic-links a,
body.nova-dark .nova-article-content a,
body.nova-dark .nova-page-content a {
  color: var(--nova-accent-text);
}

body.nova-dark .nova-home-news-section-head h2 a,
body.nova-dark .nova-home-news-section-head h2 a:hover,
body.nova-dark .nova-section-head h2,
body.nova-dark .nova-more-topics h2,
body.nova-dark .nova-widget-title,
body.nova-dark .nova-sidebar-list strong,
body.nova-dark .nova-sidebar-pick-list strong,
body.nova-dark .nova-post-navigation-copy strong,
body.nova-dark .nova-end-share strong,
body.nova-dark .nova-comments > h2,
body.nova-dark .comment-reply-title,
body.nova-dark .nova-comment-author a,
body.nova-dark .nova-comment-author strong {
  color: var(--nova-ink);
}

body.nova-dark .nova-news-label,
body.nova-dark .nova-kicker {
  color: #ffffff;
  background: color-mix(in srgb, var(--tone-color, var(--nova-accent)) 62%, var(--nova-paper));
  border-color: color-mix(in srgb, var(--tone-color, var(--nova-accent)) 80%, #ffffff 20%);
}

body.nova-dark .nova-site-header {
  background: color-mix(in srgb, var(--nova-paper) 94%, transparent);
}

body.nova-dark .nova-story-card,
body.nova-dark .nova-category-feed-card-v5,
body.nova-dark .nova-home-news-list-card,
body.nova-dark .nova-widget,
body.nova-dark .nova-post-navigation-card {
  box-shadow: none;
}

/* Responsive */
@media (max-width: 1180px) {
  .nova-home-news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nova-card-grid-three,
  .nova-category-feed-v5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nova-article-layout {
    grid-template-columns: 42px minmax(0, 1fr) 290px;
    gap: 24px;
  }

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

@media (max-width: 960px) {
  .nova-header-main {
    min-height: 88px;
  }

  .nova-brand-text strong {
    font-size: 31px;
  }

  .nova-all-link {
    display: none;
  }

  .nova-menu-toggle {
    display: inline-flex;
  }

  .nova-nav-shell {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1201;
    width: min(86vw, 390px);
    padding: 88px 20px 30px;
    overflow-y: auto;
    background: var(--nova-paper);
    border-top: 0;
    border-left: 1px solid var(--nova-line);
    box-shadow: var(--nova-shadow);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform 0.25s ease, visibility 0s linear 0.25s;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .nova-nav-shell {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .nova-nav-shell .nova-container {
    width: 100%;
  }

  .nova-menu {
    display: block;
  }

  .nova-menu > li > a {
    min-height: 48px;
    padding: 10px 4px;
    border-bottom: 1px solid var(--nova-line);
    font-size: 16px;
  }

  .nova-menu > li:first-child > a {
    padding-left: 4px;
  }

  .nova-menu > li.current-menu-item > a,
  .nova-menu > li.current-menu-ancestor > a,
  .nova-menu > li > a:hover {
    border-bottom-color: var(--nova-line);
  }

  .nova-menu .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 4px 0 8px 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nova-menu .sub-menu a {
    padding: 7px 9px;
    color: var(--nova-muted);
  }

  .nova-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: block;
    padding: 0;
    background: rgba(8, 13, 22, 0.64);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  body.menu-open .nova-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nova-home-news-layout,
  .nova-category-feature-grid-v5 {
    grid-template-columns: 1fr;
  }

  .nova-home-news-side,
  .nova-category-feature-side-v5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .nova-home-news-side-card,
  .nova-category-feature-small-v5 {
    min-height: 310px;
  }

  .nova-article-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .nova-share-rail {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    padding-bottom: 64px;
  }

  .nova-container,
  .nova-page-narrow,
  .nova-article-header-inner,
  .nova-featured-wrap {
    width: min(calc(100% - 28px), var(--nova-container));
  }

  .nova-header-main {
    min-height: 78px;
  }

  .nova-brand-mark {
    width: 44px;
    height: 49px;
    flex-basis: 44px;
    font-size: 22px;
  }

  .nova-brand-text strong {
    font-size: 25px;
  }

  .nova-brand-text small {
    display: none;
  }

  .nova-header-actions {
    gap: 7px;
  }

  .nova-icon-button,
  .nova-menu-toggle {
    min-width: 41px;
    min-height: 41px;
    padding: 7px 10px;
  }

  .nova-menu-toggle > span:last-child {
    display: none;
  }

  .nova-search-dialog {
    padding: 34px 22px 24px;
  }

  .nova-search-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nova-search-form button {
    min-height: 48px;
  }

  .nova-home-news-section {
    padding: 44px 0 48px;
  }

  .nova-home-news-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nova-home-news-section-head h2 {
    font-size: 38px;
  }

  .nova-home-news-lead {
    min-height: 450px;
  }

  .nova-home-news-side,
  .nova-category-feature-side-v5 {
    grid-template-columns: 1fr;
  }

  .nova-home-news-side-card,
  .nova-category-feature-small-v5 {
    min-height: 310px;
  }

  .nova-home-news-list {
    grid-template-columns: 1fr;
  }

  .nova-card-grid-three,
  .nova-category-feed-v5 {
    grid-template-columns: 1fr;
  }

  .nova-page-hero,
  .nova-category-header-v5 {
    padding: 38px 0 32px;
  }

  .nova-page-hero h1,
  .nova-category-title-row h1 {
    font-size: 46px;
  }

  .nova-category-page-v5 {
    padding-top: 24px;
  }

  .nova-category-feature-main-v5 {
    min-height: 490px;
  }

  .nova-article-header {
    padding: 38px 0 26px;
  }

  .nova-article-header h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .nova-article-top-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .nova-article-actions {
    justify-content: flex-start;
  }

  .nova-share-buttons > span {
    display: none;
  }

  .nova-featured-wrap {
    margin-top: 22px;
  }

  .nova-single-featured {
    border-radius: var(--nova-radius);
  }

  .nova-article-layout {
    display: block;
    padding-top: 34px;
  }

  .nova-article-content,
  .nova-page-content {
    font-size: 18px;
    line-height: 1.85;
  }

  .nova-sidebar {
    position: static;
    margin-top: 38px;
  }

  .nova-end-share,
  .nova-more-topics {
    align-items: flex-start;
    flex-direction: column;
  }

  .nova-post-navigation {
    grid-template-columns: 1fr;
  }

  .nova-related {
    padding-top: 42px;
  }

  .nova-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .nova-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 44px;
  }

  .nova-mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    min-height: 62px;
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--nova-ink);
    background: color-mix(in srgb, var(--nova-paper) 95%, transparent);
    border-top: 1px solid var(--nova-line);
    box-shadow: 0 -10px 26px rgba(18, 25, 38, 0.08);
    backdrop-filter: blur(14px);
  }

  .nova-mobile-dock a,
  .nova-mobile-dock button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    flex-direction: column;
    padding: 7px 4px;
    background: transparent;
    border: 0;
    font-size: 10px;
    font-weight: 750;
    cursor: pointer;
  }

  .nova-mobile-dock span[aria-hidden="true"] {
    font-size: 19px;
    line-height: 1;
  }

  .nova-back-top {
    right: 15px;
    bottom: 78px;
  }
}

@media (max-width: 520px) {
  .nova-home-news-lead {
    min-height: 410px;
  }

  .nova-home-news-lead-copy,
  .nova-category-feature-copy-v5 {
    padding: 20px;
  }

  .nova-home-news-lead-copy h3,
  .nova-category-feature-copy-v5 h2 {
    font-size: 34px;
  }

  .nova-home-news-side-card,
  .nova-category-feature-small-v5 {
    min-height: 285px;
  }

  .nova-home-news-list-card > a {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .nova-home-news-list-image {
    width: 104px;
  }

  .nova-article-actions {
    width: 100%;
  }

  .nova-reading-tools {
    flex-wrap: wrap;
  }

  .nova-end-share .nova-share-buttons {
    flex-wrap: wrap;
  }

  .nova-post-navigation-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .nova-post-navigation-image {
    width: 108px;
  }

  .nova-footer-topic-band .nova-container {
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media print {
  body {
    padding: 0;
    color: #000000;
    background: #ffffff;
    font-size: 12pt;
  }

  .nova-site-header,
  .nova-site-footer,
  .nova-mobile-dock,
  .nova-back-top,
  .nova-reading-progress,
  .nova-breadcrumbs,
  .nova-article-actions,
  .nova-share-rail,
  .nova-sidebar,
  .nova-end-share,
  .nova-post-navigation,
  .nova-related,
  .nova-more-topics,
  .nova-comments {
    display: none !important;
  }

  .nova-article-header {
    padding: 0 0 20px;
    background: #ffffff;
    border: 0;
  }

  .nova-article-header h1 {
    max-width: none;
    color: #000000;
    font-size: 30pt;
  }

  .nova-article-deck,
  .nova-article-content {
    color: #000000;
  }

  .nova-featured-wrap,
  .nova-article-layout,
  .nova-article-header-inner {
    width: 100%;
    max-width: none;
  }

  .nova-article-layout {
    display: block;
    padding-top: 24px;
  }

  .nova-single-featured {
    max-height: 480px;
    box-shadow: none;
  }

  a {
    color: #000000;
  }
}
