:root {
  color-scheme: light;
  --ink: #15171a;
  --muted: #66707a;
  --line: #d9dee4;
  --paper: #f8f6f1;
  --surface: #ffffff;
  --accent: #b5232d;
  --accent-dark: #7f1620;
  --blue: #1f5d8f;
  --green: #386a4d;
  --gold: #b98932;
  --shadow: 0 16px 40px rgba(21, 23, 26, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topline {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 18px 20px 16px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 54px;
}

.brand strong {
  display: block;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.9;
}

.brand small {
  color: var(--muted);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  margin-top: 5px;
  text-transform: uppercase;
}

.header-actions {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  gap: 10px;
  text-align: right;
}

.header-link {
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.icon-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.nav-strip {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 2px;
  margin: 0 auto;
  max-width: 1240px;
  overflow-x: auto;
  padding: 0 20px;
}

.section-tab,
.chip {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-tab.active {
  background: var(--accent);
  color: #fff;
}

.radar-tab {
  color: var(--blue);
}

.section-link {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.page-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 24px 20px 48px;
}

.breaking-strip {
  align-items: center;
  background: var(--accent);
  color: #fff;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr);
  margin: 0 auto;
  overflow: hidden;
  padding: 10px max(20px, calc((100vw - 1240px) / 2 + 20px));
}

.breaking-strip strong {
  background: #fff;
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 9px;
  text-transform: uppercase;
  white-space: nowrap;
}

.breaking-window {
  overflow: hidden;
}

.breaking-track {
  align-items: center;
  display: flex;
  gap: 24px;
  min-width: max-content;
}

.breaking-track:not(:empty) {
  animation: breaking-slide 45s linear infinite;
}

.breaking-track a {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.breaking-track span {
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 11px;
  margin-right: 7px;
  padding: 3px 5px;
}

.breaking-empty {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes breaking-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.lead-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
}

.lead-story {
  background: var(--surface);
  border-top: 6px solid var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
  min-height: 430px;
}

.story-media,
.lead-media {
  background:
    linear-gradient(135deg, rgba(181, 35, 45, 0.8), rgba(31, 93, 143, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 14px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.story-media img,
.lead-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.photo-credit {
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.35;
  padding: 5px 7px;
  position: relative;
  width: fit-content;
  z-index: 1;
}

.placeholder-kicker {
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 9px;
  position: relative;
  text-transform: uppercase;
  width: fit-content;
  z-index: 1;
}

.lead-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding: clamp(24px, 5vw, 46px);
}

.eyebrow,
.meta-row {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-copy h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.95;
  margin: 0;
}

.lead-copy p,
.source-panel p,
.article-dialog p {
  color: #343941;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.story-action {
  align-self: flex-start;
  background: var(--accent);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 12px 15px;
  text-transform: uppercase;
}

.brief-stack,
.source-panel {
  background: var(--surface);
  border: 1px solid var(--line);
}

.rail-heading {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  padding: 14px 16px;
  text-transform: uppercase;
}

.latest-item {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  padding: 16px;
}

.latest-item h3 {
  font-size: 19px;
  line-height: 1.15;
  margin: 6px 0 0;
}

.controls {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 24px 0;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  padding: 10px 12px;
}

.chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.search-box {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  font-family: Arial, sans-serif;
  gap: 10px;
  min-width: 260px;
  padding: 10px 12px;
}

.search-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input {
  border: 0;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.content-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.archive-content-grid {
  grid-template-columns: 1fr;
}

.section-heading {
  border-bottom: 3px solid var(--ink);
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.section-heading h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  margin: 0 0 6px;
}

.section-heading p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  margin: 0;
}

.compact-heading {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.compact-heading h1 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
}

.archive-carousel-section {
  margin: 26px 0 24px;
}

.carousel-shell {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
}

.older-carousel {
  display: grid;
  gap: 14px;
  grid-auto-columns: minmax(260px, 360px);
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 6px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.older-slide {
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  grid-template-rows: 155px 1fr;
  min-height: 310px;
  scroll-snap-align: start;
}

.older-slide img {
  height: 155px;
  object-fit: cover;
  width: 100%;
}

.older-slide-copy {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14px;
}

.older-slide h2 {
  font-size: 21px;
  line-height: 1.08;
  margin: 0;
}

.carousel-button {
  background: var(--ink);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  min-height: 100%;
}

.empty-carousel {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-weight: 800;
  padding: 22px;
  text-transform: uppercase;
}

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

.pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px 0 0;
}

.pagination button,
.empty-state a {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.pagination button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pagination button:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.55;
}

.pagination-ellipsis {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 2px;
}

.empty-state {
  background: var(--surface);
  border: 1px solid var(--line);
  grid-column: 1 / -1;
  padding: 28px;
}

.empty-state h2 {
  font-size: 28px;
  line-height: 1;
  margin: 0 0 10px;
}

.empty-state p {
  color: #343941;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.story-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
}

.story-card h2 {
  font-size: 23px;
  line-height: 1.08;
  margin: 0;
}

.story-card p {
  color: #343941;
  flex: 1;
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

.source-panel {
  align-self: start;
  padding: 18px;
  position: sticky;
  top: 132px;
}

.source-panel h2 {
  font-size: 26px;
  line-height: 1;
  margin: 0 0 12px;
}

.source-panel dl {
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
  margin: 18px 0 0;
}

.source-panel div {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
}

.source-panel dt {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.source-panel dd {
  margin: 0;
}

.article-dialog {
  border: 0;
  box-shadow: var(--shadow);
  max-width: 820px;
  padding: 0;
  width: min(calc(100vw - 28px), 820px);
}

.article-dialog::backdrop {
  background: rgba(21, 23, 26, 0.62);
}

.dialog-close {
  background: var(--ink);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  height: 42px;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  z-index: 2;
}

.article-detail-copy {
  padding: clamp(24px, 5vw, 48px);
}

.article-detail-copy h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  margin: 10px 0 16px;
}

.article-page {
  margin: 0 auto;
  max-width: 1160px;
  padding: 26px 20px 52px;
}

.article-shell {
  background: var(--surface);
  border-top: 6px solid var(--ink);
  box-shadow: var(--shadow);
}

.article-hero {
  padding: clamp(26px, 6vw, 62px) clamp(22px, 7vw, 76px) 24px;
}

.article-hero h1 {
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.96;
  margin: 12px 0 16px;
  max-width: 980px;
}

.article-hero p {
  color: #343941;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
  margin: 0;
  max-width: 850px;
}

.article-byline {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin-top: 22px;
  padding-top: 14px;
  text-transform: uppercase;
}

.article-figure,
.article-image {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}

.article-figure img,
.article-image img {
  aspect-ratio: 16 / 9;
  display: block;
  max-height: 560px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.article-figure figcaption,
.article-image figcaption {
  background: var(--ink);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  padding: 9px clamp(22px, 7vw, 76px);
}

.article-photo-placeholder {
  align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(181, 35, 45, 0.9), rgba(56, 106, 77, 0.86)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 14px);
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 330px;
  padding: clamp(22px, 7vw, 76px);
}

.article-photo-placeholder span {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-photo-placeholder small {
  font-family: Arial, sans-serif;
}

.article-layout {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 280px;
  padding: clamp(26px, 6vw, 62px) clamp(22px, 7vw, 76px);
}

.article-body {
  max-width: 760px;
}

.article-body p {
  color: #24282d;
  font-size: 20px;
  line-height: 1.72;
  margin: 0 0 22px;
}

.video-link {
  background: var(--accent);
  color: #fff;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 22px;
  padding: 12px 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.video-embed {
  background: var(--ink);
  margin: 0 0 24px;
  width: 100%;
}

.video-embed iframe,
.video-embed video,
.video-embed .hearstLumierePlayer {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  min-height: 260px;
  width: 100%;
}

.video-embed-hearst {
  min-height: 320px;
}

.video-embed figcaption {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
  padding: 9px 12px;
}

.video-fallback-link {
  color: #fff;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px 10px;
  text-transform: uppercase;
}

.video-player-note {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 12px;
}

.source-video-card {
  background: #111820;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  margin: 0 0 24px;
  overflow: hidden;
}

.source-video-card img {
  aspect-ratio: 16 / 9;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.source-video-card figcaption {
  align-content: center;
  color: #fff;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
}

.source-video-card strong {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.source-video-card span {
  color: rgba(255, 255, 255, .82);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.source-video-card .video-link {
  margin: 0;
  text-align: center;
}

.citation-box {
  border-top: 3px solid var(--ink);
  margin-top: 32px;
  padding-top: 18px;
}

.citation-box p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.related-panel {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.related-panel h2 {
  font-size: 26px;
  line-height: 1;
  margin: 0 0 14px;
}

.related-link {
  border-top: 1px solid var(--line);
  display: block;
  padding: 14px 0;
  text-decoration: none;
}

.related-link span {
  color: var(--muted);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.related-link strong {
  font-size: 18px;
  line-height: 1.18;
}

.article-loading {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-weight: 800;
  padding: 60px;
  text-transform: uppercase;
}

.source-link {
  border-top: 1px solid var(--line);
  color: var(--accent-dark);
  display: inline-block;
  font-family: Arial, sans-serif;
  font-weight: 800;
  margin-top: 18px;
  padding-top: 14px;
}

.radar-page {
  margin: 0 auto;
  max-width: 1240px;
  padding: 24px 20px 48px;
}

.radar-heading {
  align-items: center;
  border-bottom: 3px solid var(--ink);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.radar-heading h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin: 6px 0 0;
}

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

.radar-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  display: block;
  height: min(760px, calc(100vh - 220px));
  min-height: 520px;
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  font-size: 13px;
  gap: 14px;
  justify-content: center;
  padding: 24px 20px 36px;
}

.legal-page {
  background: var(--surface);
  border-top: 6px solid var(--ink);
  margin: 28px auto;
  max-width: 860px;
  padding: clamp(24px, 6vw, 52px);
}

.legal-page h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  margin: 0 0 18px;
}

.legal-page h2 {
  font-size: 25px;
  margin: 28px 0 8px;
}

.legal-page p,
.legal-page li {
  color: #343941;
  font-size: 18px;
  line-height: 1.6;
}

.legal-page .back-home {
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.admin-shell {
  margin: 0 auto;
  max-width: 1100px;
  padding: 28px 20px 56px;
}

.admin-panel {
  background: var(--surface);
  border-top: 6px solid var(--ink);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 46px);
}

.admin-panel.hidden {
  display: none;
}

.admin-panel h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  margin: 0 0 18px;
}

.admin-form {
  display: grid;
  gap: 16px;
  max-width: 460px;
}

.admin-form label {
  color: var(--muted);
  display: grid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  text-transform: uppercase;
}

.admin-form input {
  border: 1px solid var(--line);
  font-size: 17px;
  padding: 12px;
}

.admin-form textarea,
.admin-form select,
.manual-article-form input,
.manual-article-form textarea,
.manual-article-form select {
  border: 1px solid var(--line);
  font-size: 16px;
  padding: 11px 12px;
  width: 100%;
}

.admin-message {
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-weight: 800;
  margin: 0;
}

.admin-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.admin-heading p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  margin: 0;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.secondary-action {
  background: var(--ink);
}

.admin-search {
  margin: 22px 0;
  max-width: none;
  width: 100%;
}

.manual-article-box {
  border: 1px solid var(--line);
  margin-top: 24px;
}

.manual-article-box summary {
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  padding: 14px 16px;
  text-transform: uppercase;
}

.manual-article-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 16px;
}

.manual-article-form label {
  color: var(--muted);
  display: grid;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  text-transform: uppercase;
}

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

.manual-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-articles {
  display: grid;
  gap: 12px;
}

.admin-row {
  align-items: center;
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 14px;
}

.admin-row h2 {
  font-size: 22px;
  line-height: 1.1;
  margin: 6px 0;
}

.admin-row p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  margin: 0 0 8px;
}

.admin-row a {
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.delete-button {
  background: var(--accent);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  padding: 11px 12px;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .lead-grid,
  .lead-story,
  .content-grid,
  .article-layout,
  .source-video-card {
    grid-template-columns: 1fr;
  }

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

  .source-panel {
    position: static;
  }

  .related-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 22px;
  }
}

@media (max-width: 680px) {
  .breaking-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .topline,
  .controls {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions {
    justify-content: space-between;
    text-align: left;
  }

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

  .search-box {
    min-width: 0;
    width: 100%;
  }

  .lead-copy {
    padding: 24px;
  }

  .compact-heading {
    align-items: start;
    flex-direction: column;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .admin-heading,
  .radar-heading,
  .admin-row,
  .manual-article-form {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .radar-actions {
    justify-content: flex-start;
  }

  .radar-frame {
    height: 620px;
    min-height: 460px;
  }
}
