:root {
  --paper: #fffdfa;
  --page: #f5f1eb;
  --ink: #131313;
  --muted: #6f665d;
  --line: #e5ddd1;
  --accent: #c61f1f;
  --accent-soft: #f9e7e3;
  --chip: #f4eee6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(198, 31, 31, 0.08), transparent 20%),
    linear-gradient(180deg, #f7f3ee 0%, #f5f1eb 100%);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

.news-page {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 18px 40px;
}

.news-topline,
.news-brandbar,
.news-category-bar,
.news-break-strip,
.news-banner-ad,
.news-lead-story,
.news-section-block,
.news-rail-card,
.news-rail-ad,
.news-modal-box {
  background: var(--paper);
}

.news-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.news-topline-left,
.news-topline-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-date-chip,
.news-weather-chip,
.news-public-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--chip);
  color: #463d34;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-public-badge {
  background: var(--accent-soft);
  color: var(--accent);
}

.news-brandbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 22px;
  border-bottom: 1px solid var(--line);
}

.news-brand-eyebrow,
.news-section-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.news-brandbar h1,
.news-section-headline h2,
.news-rail-head h3,
.news-article-head h2,
.news-lead-headline,
.news-story-card h3,
.news-stream-card h3 {
  margin: 0;
  font-family: "Merriweather", serif;
  letter-spacing: -0.03em;
}

.news-brandbar h1 {
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.94;
}

.news-brand-sub {
  margin: 10px 0 0;
  max-width: 620px;
  color: #544c44;
  line-height: 1.7;
}

.news-brand-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 300px;
}

.news-brand-stat {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.news-brand-stat span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.news-brand-stat strong {
  display: block;
  margin-top: 8px;
  font-family: "Merriweather", serif;
  font-size: 28px;
}

.news-category-bar {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.news-category-list,
.news-trend-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-category-pill,
.news-trend-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: #2f2924;
  font-size: 13px;
  font-weight: 700;
}

.news-trend-pill {
  background: var(--chip);
}

.news-break-strip {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.news-break-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-banner-ad,
.news-rail-ad {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b8f82;
  border: 1px dashed #d9cfc3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
}

.news-banner-ad {
  height: 220px;
  margin: 18px 0 22px;
}

.news-front-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 320px;
  gap: 26px;
}

.news-main-column {
  min-width: 0;
}

.news-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 300px;
  gap: 18px;
  margin-bottom: 22px;
}

.news-lead-story {
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
}

.news-lead-media {
  height: 420px;
  background: linear-gradient(135deg, #ddd2c6, #f0e7db);
}

.news-lead-media img,
.news-lead-media video,
.news-story-thumb img,
.news-story-thumb video,
.news-article-media img,
.news-article-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-lead-copy {
  padding: 22px 22px 26px;
}

.news-lead-headline {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.news-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.news-live-pill {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.news-lead-summary,
.news-story-card p,
.news-stream-card p,
.news-rail-item p {
  margin: 0;
  color: #524a43;
  line-height: 1.72;
}

.news-lead-side {
  display: grid;
  gap: 14px;
}

.news-side-card,
.news-story-card,
.news-stream-card,
.news-rail-item {
  border: 1px solid var(--line);
  background: var(--paper);
}

.news-side-card {
  padding: 16px;
  cursor: pointer;
}

.news-side-card strong,
.news-rail-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Merriweather", serif;
  font-size: 20px;
  line-height: 1.35;
}

.news-section-block {
  padding-top: 22px;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
}

.news-section-headline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.news-section-headline h2 {
  font-size: 34px;
}

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

.news-story-card {
  cursor: pointer;
}

.news-story-thumb {
  height: 230px;
  background: linear-gradient(135deg, #ddd2c6, #f0e7db);
}

.news-story-copy {
  padding: 16px 16px 18px;
}

.news-story-card h3 {
  font-size: 29px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.news-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--chip);
  color: #5f5449;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

.news-stream-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  cursor: pointer;
}

.news-stream-copy {
  padding: 16px;
}

.news-stream-card h3 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.news-stream-thumb {
  min-height: 200px;
  background: linear-gradient(135deg, #ddd2c6, #f0e7db);
}

.news-right-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.news-rail-card {
  padding: 16px;
  border: 1px solid var(--line);
}

.news-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.news-rail-head h3 {
  font-size: 24px;
}

.news-rail-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-rail-list,
.news-kpi-list {
  display: grid;
  gap: 12px;
}

.news-rail-item {
  padding: 14px;
  cursor: pointer;
}

.news-rail-item p {
  font-size: 14px;
}

.news-kpi-item {
  padding: 14px;
  border: 1px solid var(--line);
}

.news-kpi-item span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.news-kpi-item strong {
  display: block;
  margin-top: 8px;
  font-family: "Merriweather", serif;
  font-size: 30px;
}

.news-story-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-story-meta-line,
.news-stream-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-story-actions {
  margin-top: 18px;
}

.news-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.news-primary-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.news-lead-copy h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  margin: 0 0 14px;
  font-family: "Merriweather", serif;
  letter-spacing: -0.03em;
}

.news-lead-copy > p:not(.news-story-kicker) {
  margin: 0 0 16px;
  color: #554b42;
  font-size: 18px;
  line-height: 1.78;
}

.news-side-story,
.news-grid-story,
.news-media-story,
.news-stream-story,
.news-rail-story {
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease;
}

.news-side-story:hover,
.news-grid-story:hover,
.news-media-story:hover,
.news-stream-story:hover,
.news-rail-story:hover {
  transform: translateY(-2px);
}

.news-side-story {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.news-side-story:last-child,
.news-rail-story:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-side-story h3,
.news-grid-copy h3,
.news-media-story-copy h3,
.news-stream-copy h3,
.news-rail-story h4 {
  margin: 0 0 10px;
  font-family: "Merriweather", serif;
  letter-spacing: -0.03em;
}

.news-side-story h3 {
  font-size: 28px;
  line-height: 1.24;
}

.news-side-story p:not(.news-story-kicker),
.news-grid-copy p,
.news-stream-copy p:not(.news-story-kicker) {
  margin: 0 0 10px;
  color: #564d45;
  line-height: 1.7;
}

.news-side-story span,
.news-grid-copy span,
.news-media-story-copy span,
.news-rail-story span {
  color: var(--muted);
  font-size: 12px;
}

.news-grid-story,
.news-media-story,
.news-stream-story {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.news-grid-media,
.news-media-story-visual {
  min-height: 220px;
  background: linear-gradient(135deg, #ddd2c6, #f0e7db);
  overflow: hidden;
}

.news-grid-media img,
.news-grid-media video,
.news-media-story-visual img,
.news-media-story-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-grid-copy,
.news-media-story-copy {
  padding-top: 14px;
}

.news-grid-copy h3 {
  font-size: 28px;
  line-height: 1.24;
}

.news-media-story-copy h3 {
  font-size: 23px;
  line-height: 1.3;
}

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

.news-stream-copy {
  padding: 0;
}

.news-stream-copy h3 {
  font-size: 31px;
  line-height: 1.18;
}

.news-stream-meta {
  justify-content: flex-end;
  align-content: start;
}

.news-rail-story {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}

.news-rail-story h4 {
  font-size: 20px;
  line-height: 1.35;
}

.news-empty-block {
  padding: 22px;
  border: 1px dashed var(--line);
  color: var(--muted);
  line-height: 1.7;
}

.news-empty-block.small {
  padding: 18px;
  font-size: 14px;
}

.news-rail-ad.tall {
  min-height: 420px;
}

.news-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 11, 10, 0.62);
  backdrop-filter: blur(14px);
  z-index: 3000;
}

.news-modal.show { display: flex; }

.news-modal-box {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
}

.news-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.news-article-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.news-article-meta {
  color: var(--muted);
  margin: 0;
}

.news-article-media {
  margin-top: 18px;
  min-height: 320px;
  background: linear-gradient(135deg, #ddd2c6, #f0e7db);
}

.news-article-body {
  margin-top: 18px;
  color: #2f2a26;
  font-size: 18px;
  line-height: 1.92;
  white-space: pre-wrap;
}

.news-audio-wrap {
  margin-top: 20px;
}

.news-audio-wrap audio {
  width: 100%;
}

@media (max-width: 1180px) {
  .news-front-grid,
  .news-lead-layout,
  .news-media-grid,
  .news-feature-grid {
    grid-template-columns: 1fr;
  }

  .news-brandbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-brand-meta {
    width: 100%;
  }

  .news-stream-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .news-page {
    padding: 0 12px 30px;
  }

  .news-topline,
  .news-brandbar,
  .news-section-headline {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-break-strip {
    grid-template-columns: 1fr;
  }

  .news-brandbar h1 {
    font-size: 42px;
  }

  .news-lead-copy h2,
  .news-side-story h3,
  .news-grid-copy h3,
  .news-stream-copy h3 {
    font-size: 24px;
  }
}
