:root {
  --red: #d71920;
  --red-dark: #9d1015;
  --navy: #10233f;
  --ink: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --soft: #f5f6f8;
  --card: #ffffff;
  --green: #11845b;
  --gold: #c88918;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

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

.masthead,
.page,
.footer {
  width: min(1320px, calc(100% - 24px));
  margin-inline: auto;
}

.market-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  overflow-x: auto;
  padding: 10px 0;
  color: #344054;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  white-space: nowrap;
}

.market-strip strong {
  color: var(--ink);
}

.market-strip em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.market-strip .date {
  margin-left: auto;
  color: var(--muted);
}

.logo-row {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 24px;
  align-items: center;
  padding: 24px 0 18px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  width: fit-content;
  letter-spacing: -0.06em;
}

.logo-main {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 0.86;
}

.logo-sub {
  color: var(--red);
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  font-weight: 900;
}

.header-ad,
.ad-wide {
  display: grid;
  place-items: center;
  min-height: 72px;
  color: #667085;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(0, 0, 0, 0.04) 48% 52%, transparent 52%),
    #f2f4f7;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.ad-unit {
  position: relative;
  display: grid;
  align-content: center;
  gap: 5px;
  overflow: hidden;
  min-height: 72px;
  padding: 14px 18px;
  color: #1d2939;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.10), transparent 34%),
    repeating-linear-gradient(45deg, #f8fafc 0 14px, #eef2f7 14px 28px);
  border: 1px solid #d0d5dd;
  text-align: left;
}

.ad-unit::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(215, 25, 32, 0.14);
}

.ad-unit span {
  width: fit-content;
  padding: 3px 7px;
  color: #fff;
  background: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-unit strong {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  line-height: 1.15;
}

.ad-unit small {
  position: relative;
  z-index: 1;
  color: #667085;
  font-size: 0.82rem;
  font-weight: 800;
}

.ad-leaderboard {
  min-height: 90px;
}

.ad-wide {
  min-height: 104px;
  margin: 22px 0;
}

.in-feed-ad {
  margin: 8px 0 0;
}

.ad-sidebar,
.side-ad {
  min-height: 600px;
}

.ad-box {
  min-height: 250px;
}

.header-ad small,
.ad-wide small {
  display: block;
  margin-top: 4px;
  color: #98a2b3;
  font-size: 0.76rem;
}

.nav-bar {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  background: var(--navy);
  border-radius: 4px 4px 0 0;
}

.nav-bar a {
  padding: 14px 16px;
  color: #fff;
  font-size: 0.91rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-bar a:hover {
  background: var(--red);
}

.nav-bar a.active {
  background: var(--red);
}

.breaking-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-top: 0;
  background: #fff;
}

.breaking-bar strong {
  padding: 6px 10px;
  color: #fff;
  background: var(--red);
  border-radius: 3px;
  font-size: 0.78rem;
}

.breaking-bar span {
  color: #344054;
  font-weight: 700;
}

.page {
  padding: 14px 0 34px;
}

.dense-page {
  display: grid;
  gap: 16px;
}

.breaking-ribbon {
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.breaking-ribbon strong {
  display: grid;
  height: 100%;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
}

.breaking-ribbon div {
  display: flex;
  gap: 22px;
  overflow: hidden;
  padding: 12px 14px;
  white-space: nowrap;
}

.breaking-ribbon a {
  font-size: 0.92rem;
  font-weight: 800;
}

.front-page {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.78fr) 330px;
  gap: 14px;
  align-items: stretch;
}

.main-lead {
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
}

.main-lead > a {
  display: block;
}

.main-lead-img,
.image-fallback.main-lead-img {
  display: block;
  width: 100%;
  min-height: 390px;
  max-height: 500px;
  object-fit: cover;
}

.main-lead div {
  padding: 18px;
}

.main-lead h1 {
  font-size: clamp(2.1rem, 3.4vw, 4rem);
}

.main-lead p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.lead-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.side-headline {
  border: 1px solid var(--line);
  background: #fff;
}

.side-headline > a {
  display: block;
}

.side-img,
.image-fallback.side-img {
  display: block;
  width: 100%;
  min-height: 150px;
  height: 150px;
  object-fit: cover;
}

.side-headline span {
  display: inline-block;
  margin: 10px 12px 5px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.side-headline h3 {
  margin: 0 12px 14px;
  font-size: 1rem;
}

.compact-latest {
  max-height: 640px;
  overflow: hidden;
}

.headline-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.headline-strip article {
  border: 1px solid var(--line);
  background: #fff;
}

.strip-img,
.image-fallback.strip-img {
  display: block;
  width: 100%;
  height: 118px;
  min-height: 118px;
  object-fit: cover;
}

.headline-strip h3 {
  padding: 10px;
  font-size: 0.92rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 22px;
}

.headline-card,
.latest-panel,
.story-card,
.widget,
.compact-news,
.list-news,
.article-box,
.policy-card {
  border: 1px solid var(--line);
  background: var(--card);
}

.headline-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1fr;
  min-height: 430px;
}

.visual,
.thumb {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.headline-image,
.story-card > a,
.list-news > a {
  display: block;
  min-width: 0;
}

.lead-img,
.card-img,
.thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

.lead-img {
  min-height: 430px;
}

.card-img,
.image-fallback.card-img {
  min-height: 190px;
}

.thumb-img,
.image-fallback.thumb-img {
  min-height: 124px;
}

.image-fallback {
  position: relative;
  display: grid;
  min-height: 180px;
  place-items: end start;
  padding: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--red-dark));
  font-weight: 900;
}

.visual::before,
.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
}

.visual span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 7px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.56);
  border-radius: 3px;
  font-weight: 900;
}

.visual-red {
  background: linear-gradient(135deg, #7f1117, #e12d36 45%, #111827);
}

.visual-blue {
  background: linear-gradient(135deg, #0b3b75, #2f80ed 55%, #10233f);
}

.visual-gold {
  background: linear-gradient(135deg, #8a5708, #e0a01f 55%, #442d08);
}

.visual-dark {
  background: linear-gradient(135deg, #111827, #3b475b 55%, #d71920);
}

.headline-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.section-tag {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.8vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h2 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

h3 {
  line-height: 1.18;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.latest-panel {
  padding: 20px;
  background: #101828;
  color: #fff;
}

.latest-panel h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.latest-panel ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.latest-panel li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  line-height: 1.35;
  font-weight: 700;
}

.latest-panel span {
  display: inline-block;
  margin-right: 8px;
  color: #ffccd0;
  font-weight: 900;
}

.top-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.story-card {
  display: grid;
}

.story-card .visual {
  min-height: 170px;
}

.story-card h3,
.story-card p,
.story-card a {
  margin-inline: 18px;
}

.story-card h3 {
  margin-top: 16px;
  font-size: 1.25rem;
}

.story-card a {
  width: fit-content;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.story-card > a:first-child {
  width: auto;
  margin: 0;
}

.source-link {
  font-size: 0.9rem;
}

.feature {
  border-top: 4px solid var(--red);
}

.visual-board {
  margin-top: 22px;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.mosaic-card.large {
  grid-row: span 2;
  grid-column: span 2;
}

.mosaic-card a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

.mosaic-img,
.image-fallback.mosaic-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.mosaic-card:hover .mosaic-img {
  transform: scale(1.04);
}

.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.82));
}

.mosaic-card span,
.mosaic-card strong {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 1;
}

.mosaic-card span {
  bottom: 70px;
  color: #ffd4d6;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mosaic-card strong {
  bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.18;
}

.mosaic-card.large strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
}

.portal-main {
  display: grid;
  gap: 18px;
}

.portal-sidebar {
  position: sticky;
  top: 12px;
  display: grid;
  gap: 14px;
}

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

.category-card {
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
}

.category-img,
.image-fallback.category-img {
  display: block;
  width: 100%;
  height: 160px;
  min-height: 160px;
  object-fit: cover;
}

.category-card div {
  padding: 13px;
}

.category-card h3 {
  margin-top: 6px;
  font-size: 1.08rem;
}

.category-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.inspection-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 1fr;
  gap: 18px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at right top, rgba(215, 25, 32, 0.35), transparent 24%),
    linear-gradient(135deg, #101828, #10233f 62%, #7f1117);
}

.inspection-band h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.inspection-band p {
  color: #d0d5dd;
}

.inspection-band a {
  color: #fff;
  font-weight: 900;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mini-card {
  min-height: 132px;
  padding: 15px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  background: #fff;
}

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

.mini-card h3 {
  margin-top: 8px;
  font-size: 1.03rem;
}

.river-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.river-card {
  border: 1px solid var(--line);
  background: #fff;
}

.river-img,
.image-fallback.river-img {
  display: block;
  width: 100%;
  height: 140px;
  min-height: 140px;
  object-fit: cover;
}

.river-card span {
  display: block;
  margin: 10px 12px 5px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.river-card h3 {
  margin: 0 12px 14px;
  font-size: 1rem;
}

.editor-list {
  display: grid;
  gap: 0;
}

.editor-list a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.block-title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 28px 0 14px;
}

.block-title span {
  width: 7px;
  height: 24px;
  background: var(--red);
}

.block-title h2 {
  font-size: 1.5rem;
  font-weight: 900;
}

.news-stack {
  display: grid;
  gap: 12px;
}

.list-news {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 14px;
}

.thumb {
  min-height: 120px;
}

.thumb.red {
  background: linear-gradient(135deg, #d71920, #5d0b0f);
}

.thumb.blue {
  background: linear-gradient(135deg, #0b3b75, #60a5fa);
}

.thumb.green {
  background: linear-gradient(135deg, #11845b, #1f2937);
}

.list-news h3 {
  margin-top: 6px;
  font-size: 1.25rem;
}

.list-news p {
  margin-bottom: 0;
}

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

.compact-news {
  padding: 20px;
  border-top: 4px solid var(--navy);
}

.compact-news h3 {
  font-size: 1.2rem;
}

.sidebar {
  position: sticky;
  top: 12px;
  display: grid;
  gap: 16px;
}

.widget {
  padding: 18px;
}

.widget h2 {
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
  font-size: 1.18rem;
}

.popular {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: popular;
}

.popular li {
  counter-increment: popular;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  line-height: 1.3;
}

.popular li::before {
  content: counter(popular);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.dark-widget {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.dark-widget p {
  color: #d0d5dd;
}

.dark-widget a,
.widget a {
  color: var(--red);
  font-weight: 900;
}

.latest-panel a,
.popular a {
  color: inherit;
}

.mini-news-list {
  display: grid;
  gap: 10px;
}

.mini-news-list a {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.mini-news-list span {
  color: #d0d5dd;
  font-size: 0.82rem;
  font-weight: 700;
}

.inspection-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
  gap: 18px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #101828, #10233f 58%, #7f1117);
}

.inspection-strip p {
  color: #d0d5dd;
}

.inspection-strip a {
  color: #fff;
  font-weight: 900;
}

.inspection-hero {
  background:
    radial-gradient(circle at right top, rgba(215, 25, 32, 0.32), transparent 30%),
    linear-gradient(135deg, #101828, #10233f 58%, #7f1117);
}

.article-hero {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 46px);
  margin: 20px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #1f2937 58%, var(--red-dark));
}

.article-hero p {
  max-width: 850px;
  color: #e5e7eb;
  font-size: 1.08rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.article-box {
  padding: clamp(20px, 3vw, 32px);
}

.article-detail {
  border: 1px solid var(--line);
  background: #fff;
}

.article-detail-head {
  padding: clamp(24px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
}

.article-detail-head h1 {
  max-width: 980px;
}

.article-detail-image {
  background: var(--soft);
}

.detail-img,
.image-fallback.detail-img {
  display: block;
  width: 100%;
  max-height: 560px;
  min-height: 360px;
  object-fit: cover;
}

.article-detail-body {
  max-width: 860px;
  padding: clamp(24px, 4vw, 44px);
}

.article-detail-body p {
  color: #344054;
  font-size: 1.08rem;
}

.article-detail-body h2 {
  margin-top: 30px;
  font-size: 1.55rem;
}

.news-brief {
  padding: 18px;
  margin: 22px 0;
  border-left: 5px solid var(--red);
  background: #fff5f5;
}

.news-brief h2 {
  margin-top: 0;
}

.news-brief ul,
.update-list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #344054;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.inspection-longform {
  margin-bottom: 24px;
}

.article-box h2 {
  margin-top: 26px;
  font-size: 1.55rem;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

th,
td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--soft);
}

.source-note {
  padding: 14px;
  margin: 18px 0;
  border-left: 4px solid var(--red);
  background: #fff5f5;
  color: #344054;
  font-weight: 700;
}

.policy-card {
  max-width: 920px;
  padding: clamp(22px, 3vw, 36px);
  margin: 20px 0 40px;
}

.policy-card h2 {
  margin-top: 24px;
  font-size: 1.4rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 42px;
  border-top: 4px solid var(--navy);
}

.footer strong {
  font-size: 1.2rem;
}

.footer p {
  margin: 6px 0 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #344054;
  font-weight: 800;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  width: min(720px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid #d0d5dd;
  background: #fff;
  box-shadow: 0 18px 60px rgba(16, 24, 40, 0.18);
}

.cookie-consent p {
  margin: 5px 0 0;
  color: #475467;
  font-size: 0.9rem;
}

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

.cookie-actions a,
.cookie-actions button {
  border: 1px solid #d0d5dd;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 9px 12px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.cookie-actions button:last-child {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.ad-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .logo-row,
  .front-page,
  .hero-layout,
  .headline-card,
  .portal-layout,
  .content-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .top-grid,
  .headline-strip,
  .lead-side-grid,
  .category-grid,
  .mini-card-grid,
  .river-grid,
  .mosaic-grid,
  .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar,
  .portal-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .masthead,
  .page,
  .footer {
    width: min(100% - 18px, 1180px);
  }

  .logo {
    display: grid;
    gap: 2px;
  }

  .logo-row {
    gap: 12px;
    padding: 16px 0 12px;
  }

  .logo-main {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .header-ad,
  .ad-leaderboard {
    min-height: 70px;
  }

  .header-ad strong,
  .ad-leaderboard strong {
    font-size: 0.95rem;
  }

  .top-grid,
  .headline-strip,
  .lead-side-grid,
  .category-grid,
  .mini-card-grid,
  .river-grid,
  .ad-showcase,
  .two-col,
  .mosaic-grid,
  .inspection-band,
  .inspection-strip,
  .breaking-ribbon,
  .list-news,
  .footer {
    grid-template-columns: 1fr;
  }

  .mosaic-card.large {
    grid-row: span 1;
  }

  .footer {
    display: grid;
  }

  .breaking-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-lead-img,
  .image-fallback.main-lead-img {
    min-height: 260px;
  }

  .breaking-ribbon strong {
    padding: 10px;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    right: 10px;
    bottom: 10px;
    width: min(420px, calc(100% - 20px));
    padding: 12px;
  }

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

  .cookie-consent p {
    font-size: 0.84rem;
  }

  .cookie-actions a,
  .cookie-actions button {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
}
