:root {
  --ink: #101114;
  --muted: #656b75;
  --subtle: #8a9099;
  --paper: #f7f7f5;
  --card: #ffffff;
  --line: #deded8;
  --accent: #c5162e;
  --accent-dark: #8f1021;
  --navy: #172033;
  --green: #087f5b;
  --shadow: 0 18px 50px rgba(16, 17, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans Tamil", system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.035) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 72px 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.utility-bar,
.masthead,
.nav,
main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: var(--ink);
  border-radius: 2px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 28px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.headline-tools {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-search {
  position: relative;
  flex: 1;
  max-width: 420px;
}

.site-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-search input {
  width: 100%;
  min-height: 44px;
  padding: 10px 42px 10px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  font: inherit;
  outline: none;
}

.site-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197, 22, 46, 0.12);
}

.site-search button {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  color: var(--muted);
  background: #f1f1ed;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
}

.site-search button:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.solid-button,
.ghost-button {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

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

.ghost-button {
  color: var(--ink);
  background: transparent;
}

.solid-button:hover {
  background: var(--accent-dark);
}

.ghost-button:hover {
  background: #ecece7;
}

.nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 0 0 12px;
}

.nav button {
  min-width: max-content;
  padding: 9px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.nav button.active {
  color: var(--ink);
  border-color: var(--accent);
}

.ambient-rail {
  position: fixed;
  top: 172px;
  z-index: 5;
  display: none;
  width: 118px;
  color: var(--muted);
  pointer-events: none;
}

.left-rail {
  left: max(18px, calc((100vw - 1540px) / 2));
  min-height: 420px;
  padding: 18px 0;
  border-left: 1px solid var(--line);
}

.left-rail strong {
  display: block;
  margin: 18px 0 26px;
  padding-left: 14px;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.left-rail span {
  display: block;
  margin: 16px 0;
  padding-left: 14px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.right-rail {
  right: max(18px, calc((100vw - 1540px) / 2));
  width: 180px;
  pointer-events: auto;
}

.rail-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rail-headlines {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.rail-headlines a {
  display: grid;
  gap: 7px;
  padding: 12px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(16, 17, 20, 0.06);
  backdrop-filter: blur(8px);
}

.rail-headlines a:hover {
  border-color: var(--accent);
}

.rail-headlines span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.rail-headlines strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.visitor-counter {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 2px;
  min-width: 112px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(16, 17, 20, 0.92);
  border-left: 4px solid var(--accent);
  box-shadow: 0 16px 40px rgba(16, 17, 20, 0.18);
  backdrop-filter: blur(10px);
}

.visitor-counter span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visitor-counter strong {
  font-size: 24px;
  line-height: 1.1;
}

main {
  padding: 22px 0 56px;
}

.live-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ad-slot {
  position: relative;
  display: grid;
  place-items: center;
  margin: 22px 0;
  min-height: 96px;
  padding: 14px;
  color: var(--subtle);
  background:
    linear-gradient(135deg, rgba(16, 17, 20, 0.03), rgba(197, 22, 46, 0.04)),
    #fff;
  border: 1px dashed #c8c8c0;
}

.ad-slot span {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ad-slot::after {
  content: "Google AdSense";
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 800;
}

.adsbygoogle {
  display: block;
  width: 100%;
  min-height: 90px;
}

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

.ad-infeed {
  margin-top: 0;
}

.ad-rectangle {
  min-height: 280px;
  margin: 18px 0 0;
}

.bottom-ad {
  margin-top: 28px;
}

.live-strip strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(197, 22, 46, 0.12);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

#tickerTrack {
  display: inline-flex;
  gap: 36px;
  padding-right: 36px;
  animation: ticker 72s linear infinite;
}

#tickerTrack span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

#tickerTrack span::before {
  content: "/";
  margin-right: 14px;
  color: var(--accent);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

.lead-package {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  gap: 26px;
  align-items: stretch;
  min-height: 360px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lead-story > div:first-child {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.lead-story h3 {
  margin: 12px 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.13;
}

.empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 34px;
}

.lead-story p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.lead-media,
.card-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  color: #fff;
  font-weight: 800;
  background:
    linear-gradient(rgba(23, 32, 51, 0.28), rgba(23, 32, 51, 0.28)),
    var(--navy);
  overflow: hidden;
}

.lead-media::after,
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 17, 20, 0.22));
}

.lead-media img,
.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.media-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: end start;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(197, 22, 46, 0.82), rgba(23, 32, 51, 0.9)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 12px);
}

.image-missing .media-fallback {
  display: grid;
}

.image-missing::after {
  display: none;
}

.media-fallback span,
.media-fallback strong {
  display: block;
}

.media-fallback span {
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.82;
}

.media-fallback strong {
  max-width: 95%;
  margin-top: 6px;
  font-size: clamp(20px, 3vw, 38px);
  line-height: 1.1;
}

.briefing-panel,
.side-panel {
  background: var(--card);
  border: 1px solid var(--line);
}

.briefing-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.briefing-panel h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.briefing-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.briefing-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.briefing-stats span {
  padding: 14px;
  background: #f1f1ed;
  border-top: 3px solid var(--accent);
  color: var(--muted);
  font-size: 13px;
}

.briefing-stats strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
}

.lens-section {
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--line);
}

.source-lens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.lens-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 260px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(16, 17, 20, 0.06);
  overflow: hidden;
}

.lens-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(197, 22, 46, 0.92), rgba(23, 32, 51, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 14px);
}

.lens-main span,
.lens-main small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lens-main h3 {
  margin: 18px 0;
  font-size: 24px;
  line-height: 1.35;
}

.lens-sources {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.lens-source {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-items: start;
  padding: 14px;
  color: inherit;
  background: #fff;
  text-decoration: none;
}

.lens-source:hover {
  background: #fafaf7;
}

.lens-source strong {
  font-size: 13px;
}

.lens-source p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.lens-tone {
  padding: 3px 6px;
  color: #fff;
  background: var(--navy);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.lens-tone.urgent {
  background: var(--accent);
}

.lens-tone.critical {
  background: #7c2d12;
}

.lens-tone.explainer {
  background: #2563eb;
}

.lens-tone.straight {
  color: var(--ink);
  background: #e8e8e2;
}

.empty-lens {
  grid-column: 1 / -1;
  display: block;
  min-height: 0;
  padding: 22px;
}

.empty-lens h3 {
  margin: 0 0 8px;
}

.empty-lens p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding: 26px 0 16px;
}

.section-title h2 {
  margin: 0;
  font-size: 32px;
}

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

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  background: var(--card);
}

.card-media {
  min-height: 150px;
  background: #d6d8d9;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.news-card h3 {
  margin: 10px 0;
  font-size: 19px;
  line-height: 1.4;
}

.news-card p {
  color: var(--muted);
  line-height: 1.65;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
}

.meta span + span::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}

.read-link {
  margin-top: auto;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.read-link:hover {
  text-decoration: underline;
}

.side-panel {
  position: sticky;
  top: 150px;
  padding: 18px;
}

.side-panel h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.source-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.source-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #fff;
}

.source-item small {
  color: var(--muted);
}

.source-ok,
.source-bad {
  font-size: 12px;
  font-weight: 800;
}

.source-ok {
  color: var(--green);
}

.source-bad {
  color: var(--accent);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  max-width: 380px;
  padding: 16px;
  color: #fff;
  background: var(--navy);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 260ms ease;
}

.toast.show {
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 17, 20, 0.72);
}

.modal-card {
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin: 9vh auto;
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-card h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.22;
}

.modal-card p {
  color: var(--muted);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  font-size: 25px;
  background: #f1f1ed;
  border: 1px solid var(--line);
  cursor: pointer;
}

.link-button {
  display: inline-flex;
  align-items: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 36px;
  padding: 22px 0 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.static-page a:hover {
  color: var(--accent);
}

.static-page {
  width: min(820px, calc(100% - 32px));
  margin: 48px auto;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.static-brand {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.static-page h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.static-page h2 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.static-page p {
  color: var(--muted);
  line-height: 1.8;
}

.static-card {
  padding: 18px;
  background: #f7f7f5;
  border-left: 4px solid var(--accent);
}

.static-card p {
  margin-bottom: 0;
}

.static-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.static-links a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.story-page {
  width: min(980px, calc(100% - 32px));
  margin: 42px auto;
}

.story-article {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-article h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.12;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.story-image {
  width: 100%;
  max-height: 460px;
  margin: 0 0 24px;
  object-fit: cover;
  background: var(--navy);
}

.story-box {
  margin-top: 22px;
  padding: 22px;
  background: #f7f7f5;
  border-left: 4px solid var(--accent);
}

.story-box h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.story-box p,
.story-box li {
  color: var(--muted);
  line-height: 1.8;
}

.story-box ul {
  margin: 0;
  padding-left: 22px;
}

.story-rich {
  background:
    linear-gradient(135deg, rgba(197, 22, 46, 0.07), rgba(23, 32, 51, 0.04)),
    #fff;
}

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

.story-compare-grid a {
  display: grid;
  gap: 6px;
  padding: 14px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
}

.story-compare-grid a:hover {
  border-color: var(--accent);
}

.story-compare-grid span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-compare-grid strong {
  font-size: 14px;
}

.story-compare-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

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

.related-list a {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
}

.related-list a:hover {
  border-color: var(--accent);
}

.related-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.related-list strong {
  line-height: 1.5;
}

@media (min-width: 1500px) {
  .ambient-rail {
    display: block;
  }
}

@media (max-width: 1080px) {
  .lead-package,
  .layout,
  .lead-story,
  .source-lens,
  .lens-card {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

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

@media (max-width: 720px) {
  .utility-bar,
  .masthead,
  .nav,
  main {
    width: min(100% - 20px, 1240px);
  }

  body {
    background-size: 44px 100%;
  }

  .site-header {
    position: static;
  }

  .utility-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }

  .masthead {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .brand {
    width: 100%;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .headline-tools {
    width: 100%;
  }

  .site-search {
    width: 100%;
    max-width: none;
  }

  .headline-tools button {
    flex: 1;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav {
    gap: 8px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav button {
    padding: 9px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

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

  main {
    padding-top: 12px;
  }

  .live-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
    overflow: hidden;
  }

  #tickerTrack {
    animation-duration: 95s;
  }

  .ad-slot {
    min-height: 76px;
    margin: 14px 0;
    padding: 12px;
  }

  .ad-rectangle {
    min-height: 160px;
  }

  .lead-story {
    min-height: 0;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
  }

  .lead-story > div:first-child {
    padding: 20px;
  }

  .lead-story h3 {
    font-size: 28px;
    line-height: 1.22;
  }

  .lead-media {
    min-height: 220px;
    order: -1;
  }

  .lead-package {
    gap: 16px;
    padding: 18px 0;
  }

  .briefing-panel,
  .side-panel,
  .lens-card,
  .news-card {
    border-radius: 10px;
    overflow: hidden;
  }

  .briefing-panel {
    padding: 18px;
  }

  .briefing-panel h2 {
    font-size: 23px;
  }

  .source-lens {
    gap: 12px;
  }

  .lens-main,
  .lens-source {
    padding: 16px;
  }

  .lens-main h3 {
    font-size: 21px;
  }

  .section-title {
    padding: 20px 0 12px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    background: transparent;
    border: 0;
  }

  .news-card {
    min-height: 0;
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(16, 17, 20, 0.06);
  }

  .card-media {
    min-height: 190px;
  }

  .card-body {
    padding: 16px;
  }

  .news-card h3 {
    font-size: 18px;
  }

  .news-card p {
    margin-top: 0;
  }

  .briefing-stats {
    grid-template-columns: 1fr;
  }

  .visitor-counter {
    left: auto;
    right: 12px;
    bottom: 12px;
    min-width: 86px;
    padding: 8px 10px;
    border-left: 0;
    border-top: 3px solid var(--accent);
    border-radius: 8px;
  }

  .visitor-counter strong {
    font-size: 18px;
  }

  .static-page {
    margin: 24px auto;
    padding: 24px;
  }

  .story-page {
    width: min(100% - 24px, 980px);
    margin: 24px auto;
  }

  .story-article {
    padding: 20px;
    border-radius: 10px;
  }

  .story-article h1 {
    font-size: 31px;
    line-height: 1.18;
  }

  .story-box {
    padding: 18px;
    border-left-width: 3px;
  }

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

  .story-image {
    max-height: 260px;
  }

  .site-footer {
    width: min(100% - 24px, 1240px);
    padding-bottom: 70px;
  }
}
