:root {
  color-scheme: dark;
  --bg: #06101f;
  --surface: #0a192d;
  --surface-2: #0e213a;
  --surface-3: #132a47;
  --text: #f6f8fb;
  --muted: #9eacc1;
  --line: rgba(169, 193, 225, 0.16);
  --red: #ef3f4c;
  --red-soft: #ff6973;
  --cyan: #66c9ef;
  --green: #73d2a6;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 0%, rgba(47, 118, 173, 0.18), transparent 34rem),
    radial-gradient(circle at 8% 42%, rgba(239, 63, 76, 0.07), transparent 28rem),
    var(--bg);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  color: #06101f;
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 31, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 13px;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(239, 63, 76, 0.26);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(37, 161, 218, 0.24);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--cyan);
  text-decoration: none;
}

.article-source h2,
.related h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.related {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.related a {
  color: var(--cyan);
}

.review-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.review-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.review-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.review-toolbar select,
.editor-field input,
.editor-field textarea,
.editor-field select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: var(--surface-2);
}

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

.review-item {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  text-align: left;
  background: var(--surface-2);
  cursor: pointer;
}

.review-item.active {
  border-color: var(--cyan);
}

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

.status {
  width: max-content;
  padding: 2px 8px;
  border-radius: 999px;
  color: #06101f;
  background: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.status-review { background: #ffd166; }
.status-published { background: var(--green); }
.status-draft { background: var(--cyan); }
.status-archived { background: var(--muted); }

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

.editor-field {
  display: grid;
  gap: 6px;
}

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

.editor-field textarea {
  min-height: 120px;
  resize: vertical;
}

.review-preview {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 840px) {
  .review-shell,
  .editor-grid {
    grid-template-columns: 1fr;
  }
}

/* Original deep-blue newsroom design system */
:root {
  --bg: #050a13;
  --bg-primary: #050a13;
  --bg-secondary: #081321;
  --surface: #0d1b2a;
  --surface-2: #11263a;
  --surface-3: #15314a;
  --text: #f5f7fa;
  --muted: #a8b7c8;
  --line: rgba(73, 166, 255, 0.2);
  --red: #ff365c;
  --red-soft: #ff6681;
  --cyan: #46e8ff;
  --blue: #33a7ff;
  --gold: #ffd56a;
  --green: #47e584;
  --max: 1240px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.newsroom-site {
  background:
    radial-gradient(circle at 82% 5%, rgba(51, 167, 255, 0.12), transparent 31rem),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary) 48%, var(--bg-primary));
}

.newsroom-site .container {
  width: min(calc(100% - 48px), var(--max));
}

.breaking-strip {
  position: relative;
  z-index: 110;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 42px;
  color: #fff;
  background: #b81837;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.breaking-label {
  display: grid;
  min-width: 92px;
  place-items: center;
  padding-inline: 22px;
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.breaking-viewport {
  min-width: 0;
  overflow: hidden;
}

.breaking-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  min-height: 42px;
  align-items: center;
  gap: 38px;
  padding-inline: 26px;
  white-space: nowrap;
  animation: newsroom-ticker 36s linear infinite;
}

.breaking-track a,
.breaking-track > span {
  color: #fff;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 760;
}

.breaking-track a span {
  margin-right: 9px;
  color: var(--gold);
}

.breaking-track:hover {
  animation-play-state: paused;
}

@keyframes newsroom-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(min(-48%, -680px)); }
}

@media (prefers-reduced-motion: reduce) {
  .breaking-track {
    animation: none;
  }
}

.newsroom-header {
  position: relative;
  top: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 19, 0.86);
}

.newsroom-header .nav {
  min-height: 84px;
}

.newsroom-header .brand-logo,
.newsroom-footer .brand-logo {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  box-shadow: none;
}

.newsroom-header .nav-links a {
  color: #c5d1df;
}

.newsroom-header .nav-links .nav-channel {
  color: #04101c;
  background: var(--cyan);
}

.status-line {
  border-top: 1px solid rgba(73, 166, 255, 0.12);
  background: rgba(8, 19, 33, 0.9);
}

.status-line-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

.status-separator {
  width: 1px;
  height: 15px;
  background: var(--line);
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--green);
  font-weight: 800;
}

.status-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(71, 229, 132, 0.1);
}

.brand-hero {
  padding: clamp(72px, 9vw, 132px) 0 clamp(64px, 8vw, 108px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 10, 19, 0.96), rgba(8, 19, 33, 0.82)),
    radial-gradient(circle at 80% 34%, rgba(70, 232, 255, 0.14), transparent 26rem);
}

.brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: end;
}

.brand-hero h1 {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.12em;
  width: fit-content;
  margin: 20px 0 0;
  padding: 0 0 16px;
  border-bottom: 3px solid rgba(70, 232, 255, 0.5);
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", "SimHei", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 14px 45px rgba(0, 0, 0, 0.35);
}

.brand-title-main,
.brand-title-accent {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1em;
  align-items: center;
}

.brand-title-main b,
.brand-title-accent b {
  display: grid;
  width: 1em;
  height: 1em;
  place-items: center;
  font: inherit;
  line-height: 1;
}

.brand-title-main {
  color: var(--text);
}

.brand-title-accent {
  position: relative;
  color: #ff365c;
}

.brand-title-accent::after {
  position: absolute;
  right: 0.06em;
  bottom: -19px;
  width: 0.65em;
  height: 3px;
  border-radius: 999px;
  background: #ff365c;
  content: "";
}

.brand-subtitle {
  margin: 30px 0 0;
  color: var(--cyan);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.28em;
}

.brand-lede {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.brand-hero .button-row {
  margin-top: 32px;
}

.button-primary {
  color: #04101c;
  background: var(--cyan);
  box-shadow: none;
}

.button-primary:hover {
  color: #04101c;
  background: #8af2ff;
}

.button-secondary {
  border-color: rgba(70, 232, 255, 0.34);
  background: rgba(70, 232, 255, 0.05);
}

.coverage-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 38, 58, 0.92), rgba(13, 27, 42, 0.78));
}

.coverage-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.coverage-heading strong {
  color: var(--gold);
  font-size: 3rem;
  line-height: 0.9;
}

.coverage-panel > p {
  margin: 22px 0;
  color: var(--muted);
}

.coverage-panel dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.coverage-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

.coverage-panel dt {
  color: var(--muted);
}

.coverage-panel dd {
  margin: 0;
  font-weight: 800;
}

.desk-navigation {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 19, 33, 0.86);
}

.desk-navigation .container {
  padding-block: 15px;
}

.rail-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
}

.rail-row + .rail-row {
  margin-top: 10px;
}

.rail-title {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.scroll-rail {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}

.scroll-rail a {
  flex: 0 0 auto;
  padding: 7px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #c9d6e4;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 760;
}

.scroll-rail a:hover,
.scroll-rail a[aria-current="page"] {
  border-color: var(--line);
  color: var(--cyan);
  background: rgba(51, 167, 255, 0.07);
}

.newsroom-site .section {
  padding-block: clamp(70px, 8vw, 108px);
}

.newsroom-site .section-alt {
  background: rgba(8, 19, 33, 0.78);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-kicker span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker h2,
.newsroom-section-head h2,
.weekly-layout h2,
.collaboration-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-kicker::after {
  width: 60px;
  height: 1px;
  background: var(--red);
  content: "";
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
}

.lead-cover {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  align-self: center;
  overflow: hidden;
}

.lead-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #030914;
}

.lead-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 10, 19, 0.52));
  content: "";
}

.lead-cover > span {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 24px;
  padding: 8px 13px;
  color: #fff;
  background: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
}

.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 60px);
}

.lead-copy h3 {
  margin: 13px 0 0;
  font-size: clamp(2rem, 3.7vw, 3.55rem);
  line-height: 1.13;
  letter-spacing: -0.055em;
}

.lead-copy h3 a {
  text-decoration: none;
}

.lead-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.lead-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.lead-facts div {
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

.lead-facts dt {
  color: var(--muted);
  font-size: 0.7rem;
}

.lead-facts dd {
  margin: 3px 0 0;
  font-size: 0.8rem;
  font-weight: 780;
}

.lead-copy .button {
  align-self: flex-start;
}

.telegram-inline {
  border-block: 1px solid rgba(70, 232, 255, 0.2);
  background: linear-gradient(90deg, rgba(51, 167, 255, 0.1), rgba(70, 232, 255, 0.04));
}

.telegram-inline-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.telegram-inline-inner > div {
  display: grid;
}

.telegram-inline-inner strong {
  font-size: 1.1rem;
}

.telegram-inline-inner span {
  color: var(--muted);
  font-size: 0.8rem;
}

.newsroom-section-head {
  align-items: end;
}

.newsroom-section-head > p {
  max-width: 500px;
  color: var(--muted);
  text-align: right;
}

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

.latest-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card-cover {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-2);
}

.card-cover img,
.overview-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #030914;
  transition: transform 240ms ease;
}

.latest-card:hover .card-cover img,
.overview-item:hover .overview-cover img {
  transform: scale(1.025);
}

.latest-card-body {
  padding: 20px;
}

.latest-card h3 {
  margin: 14px 0 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

.latest-card h3 a,
.overview-item h3 a {
  text-decoration: none;
}

.latest-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.overview-tools {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 0.8fr 1.5fr;
  gap: 10px;
  margin: 28px 0 12px;
}

.overview-tools label {
  display: grid;
  gap: 6px;
}

.overview-tools label > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.overview-tools select,
.overview-tools input {
  width: 100%;
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: var(--surface);
}

.overview-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.overview-item {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 27, 42, 0.82);
}

.overview-cover {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 11px;
  background: var(--surface-2);
}

.overview-item h3 {
  margin: 11px 0 0;
  font-size: 1.55rem;
  line-height: 1.35;
}

.overview-item p {
  margin: 8px 0;
  color: var(--muted);
}

.overview-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.76rem;
}

.overview-foot a {
  margin-left: auto;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.safety-section {
  border-block: 1px solid rgba(255, 54, 92, 0.12);
  background: linear-gradient(135deg, rgba(255, 54, 92, 0.055), transparent 44%);
}

.eyebrow-alert {
  color: var(--red);
}

.eyebrow-gold {
  color: var(--gold);
}

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

.safety-card {
  padding: 24px;
  border: 1px solid rgba(255, 54, 92, 0.24);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--surface);
}

.risk-line {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.74rem;
}

.risk-line strong {
  color: var(--red-soft);
}

.safety-card h3 {
  margin: 10px 0 0;
}

.safety-card h3 a,
.safety-card > a {
  color: var(--text);
  text-decoration: none;
}

.safety-card > a {
  color: var(--cyan);
  font-weight: 800;
}

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

.topic-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 213, 106, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 213, 106, 0.045), rgba(13, 27, 42, 0.9));
}

.topic-index {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.topic-card h3 {
  margin: 18px 0 0;
  font-size: 1.55rem;
}

.topic-card > p {
  color: var(--muted);
}

.topic-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: auto 0 22px;
}

.topic-card dl div {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 213, 106, 0.18);
}

.topic-card dt {
  color: var(--muted);
  font-size: 0.68rem;
}

.topic-card dd {
  margin: 4px 0 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.topic-card .button {
  align-self: flex-start;
}

.weekly-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.weekly-layout > div:first-child > p:last-child {
  color: var(--muted);
}

.weekly-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.weekly-card h3 {
  font-size: 1.55rem;
}

.weekly-card a {
  color: var(--cyan);
}

.newsroom-join {
  border-color: rgba(70, 232, 255, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(51, 167, 255, 0.15), transparent 28rem),
    var(--surface);
}

.newsroom-join .qr-link {
  width: 216px;
}

.newsroom-join .qr-link img {
  width: 192px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.collaboration-strip {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.collaboration-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.collaboration-inner p:last-child {
  max-width: 660px;
  color: var(--muted);
}

.newsroom-footer {
  background: #050a13;
}

.newsroom-empty {
  width: 100%;
  min-height: 180px;
  border: 1px dashed var(--line);
  background: rgba(13, 27, 42, 0.58);
}

.newsroom-empty > span {
  color: var(--cyan);
  font-size: 2rem;
}

.latest-grid > .newsroom-empty,
.safety-grid > .newsroom-empty,
.topic-grid > .newsroom-empty {
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  .brand-hero-grid,
  .lead-story,
  .weekly-layout {
    grid-template-columns: 1fr;
  }

  .coverage-panel {
    max-width: 700px;
  }

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

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

  .lead-story {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .newsroom-site .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .breaking-strip {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .breaking-label {
    min-width: 72px;
    padding-inline: 12px;
  }

  .breaking-viewport {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .breaking-track {
    animation: none;
    gap: 24px;
    padding-inline: 16px;
  }

  .status-line-inner {
    min-height: 46px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .status-live {
    margin-left: 0;
  }

  .brand-hero {
    padding-block: 64px;
  }

  .brand-hero-grid {
    gap: 44px;
  }

  .brand-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .brand-subtitle {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }

  .rail-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .lead-cover {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

  .lead-copy h3 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .lead-facts {
    grid-template-columns: 1fr;
  }

  .telegram-inline-inner,
  .collaboration-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px;
  }

  .newsroom-section-head {
    align-items: flex-start;
  }

  .newsroom-section-head > p {
    text-align: left;
  }

  .latest-grid,
  .safety-grid,
  .topic-grid,
  .overview-tools {
    grid-template-columns: 1fr;
  }

  .overview-item {
    grid-template-columns: 1fr;
  }

  .overview-foot a {
    width: 100%;
    margin-left: 0;
  }

  .newsroom-join .qr-link {
    width: min(100%, 216px);
  }

  .newsroom-join .qr-link img {
    width: 100%;
  }
}

.brand-copy {
  display: grid;
  line-height: 1.18;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-channel {
  margin-left: 6px;
  color: #fff;
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.ticker {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 25, 45, 0.68);
}

.ticker-inner {
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  color: var(--muted);
  font-size: 0.78rem;
  scrollbar-width: none;
  white-space: nowrap;
}

.ticker-inner::-webkit-scrollbar {
  display: none;
}

.ticker-label {
  color: var(--red-soft);
  font-weight: 900;
}

.ticker a {
  text-decoration: none;
}

.ticker a:hover {
  color: var(--text);
}

.hero {
  padding: 76px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #f6abb1;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--red);
  content: "";
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  margin-top: 13px;
  color: var(--red-soft);
  font-size: 0.48em;
  letter-spacing: 0.08em;
}

.hero-lede {
  max-width: 720px;
  margin: 26px 0 0;
  color: #c1cbda;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(239, 63, 76, 0.2);
}

.button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover {
  transform: translateY(-1px);
}

.editor-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-badge {
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(239, 63, 76, 0.16);
}

.featured-mini {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: block;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;
  background: rgba(2, 9, 18, 0.4);
  text-decoration: none;
}

.mini-card:hover {
  border-color: rgba(102, 201, 239, 0.35);
}

.mini-card span {
  color: var(--red-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.mini-card h2,
.mini-card h3 {
  margin: 7px 0 5px;
  font-size: 1rem;
  line-height: 1.5;
}

.mini-card time {
  color: var(--muted);
  font-size: 0.75rem;
}

.section {
  padding: 76px 0;
}

.section-alt {
  border-block: 1px solid var(--line);
  background: rgba(10, 25, 45, 0.5);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.section-head p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--cyan);
  text-underline-offset: 4px;
}

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

.news-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.news-card-visual {
  display: flex;
  min-height: 118px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(239, 63, 76, 0.25), transparent 8rem),
    linear-gradient(135deg, var(--surface-3), var(--surface));
}

.news-card-visual strong {
  font-size: 1.35rem;
}

.news-card-visual span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

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

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.76rem;
}

.pill {
  padding: 3px 8px;
  border-radius: 999px;
  color: #cfefff;
  background: rgba(102, 201, 239, 0.11);
}

.news-card h3 {
  margin: 14px 0 9px;
  font-size: 1.14rem;
  line-height: 1.5;
}

.news-card h3 a {
  text-decoration: none;
}

.news-card h3 a:hover {
  color: var(--cyan);
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.news-card .card-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.filter-chip {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.filter-chip:hover,
.filter-chip[aria-current="true"] {
  border-color: rgba(239, 63, 76, 0.45);
  color: #fff;
  background: rgba(239, 63, 76, 0.13);
}

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

.category-card {
  display: flex;
  min-height: 130px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  text-decoration: none;
}

.category-card:hover {
  border-color: rgba(102, 201, 239, 0.38);
}

.category-card strong {
  font-size: 1.1rem;
}

.category-card span {
  color: var(--muted);
  font-size: 0.8rem;
}

.join-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 44px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(239, 63, 76, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 63, 76, 0.17), transparent 25rem),
    var(--surface);
  box-shadow: var(--shadow);
}

.join-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.join-card p {
  max-width: 650px;
  margin: 15px 0 0;
  color: var(--muted);
}

.qr-link {
  display: block;
  width: 192px;
  padding: 12px;
  border-radius: 20px;
  color: #06101f;
  background: #fff;
  text-align: center;
  text-decoration: none;
}

.qr-link img {
  width: 168px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 9px;
}

.qr-link span {
  display: block;
  margin-top: 7px;
  font-size: 0.74rem;
  font-weight: 850;
}

.page-hero {
  padding: 70px 0 42px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-content {
  padding: 18px 0 86px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 34px;
}

.search-input {
  min-width: 0;
  min-height: 54px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--surface);
}

.search-input::placeholder {
  color: #77869b;
}

.result-summary {
  margin: 0 0 22px;
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 58px;
  padding: 62px 0 94px;
}

.article-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin: 16px 0 20px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.article-excerpt {
  margin: 0;
  color: #bdc8d8;
  font-size: 1.06rem;
}

.article-body {
  padding-top: 24px;
}

.article-body p {
  margin: 0 0 1.35em;
  color: #d2d9e4;
  font-size: 1.02rem;
}

.article-cover {
  overflow: hidden;
  margin: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #030914;
}

.article-fact-block {
  display: grid;
  gap: 14px;
  margin: 36px 0;
  padding: 26px;
  border: 1px solid rgba(70, 232, 255, 0.25);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(70, 232, 255, 0.08), rgba(51, 167, 255, 0.025));
}

.article-fact-block h2,
.article-fact-block h3,
.article-fact-block p {
  margin: 0;
}

.article-fact-block h2 {
  font-size: 1.35rem;
}

.article-fact-block div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.article-fact-block h3 {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 0.92rem;
}

.article-source {
  margin-top: 38px;
  padding: 20px;
  border-left: 3px solid var(--red);
  border-radius: 0 14px 14px 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
}

.article-source a {
  color: var(--cyan);
}

.side-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.side-panel h2 {
  margin: 0;
  font-size: 1rem;
}

.side-panel p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.side-panel .button {
  width: 100%;
}

.country-more-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(70, 232, 255, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(70, 232, 255, 0.14), transparent 36%),
    linear-gradient(145deg, #0c1b2b, #07111e);
}

.country-more-cta h2 {
  margin: 7px 0 8px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.country-more-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px 24px;
  border: 1px dashed rgba(169, 193, 225, 0.24);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
  text-align: center;
}

.empty-state h2,
.empty-state h3 {
  margin: 0 0 8px;
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 8, 16, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  padding: 42px 0 24px;
}

.footer-copy p {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid var(--line);
  color: #77869b;
  font-size: 0.75rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 680px;
  }

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

  .side-panel {
    position: static;
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 66px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(6, 16, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links[data-open="true"] {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-links .nav-channel {
    margin-left: 0;
  }

  .hero {
    padding: 56px 0 46px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 4.9rem);
  }

  .button-row,
  .search-form {
    grid-template-columns: 1fr;
  }

  .button-row {
    display: grid;
  }

  .button,
  .search-form .button {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

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

  .news-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 0;
  }

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

  .qr-link {
    width: min(100%, 220px);
    margin-inline: auto;
  }

  .qr-link img {
    width: 100%;
  }

  .page-hero {
    padding: 56px 0 34px;
  }

  .article-layout {
    gap: 32px;
    padding: 44px 0 70px;
  }

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

  .country-more-cta {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
