/* 易检水质 · 深海蓝霓 · 水质监测风
   -- 蓝霓水波 + 声纳仪表盘 + 时间线监测
   -- 昼夜双模式，零 Google 资源
============================================================ */

:root {
  --yjsz-bg: #F0F9FF;
  --yjsz-surface: #FFFFFF;
  --yjsz-surface-2: #E0F2FE;
  --yjsz-surface-frost: rgba(255, 255, 255, 0.72);
  --yjsz-ink: #0F172A;
  --yjsz-ink-soft: #1E293B;
  --yjsz-muted: #64748B;
  --yjsz-line: #CBD5E1;
  --yjsz-line-soft: #E2E8F0;
  --yjsz-primary: #0E7490;
  --yjsz-primary-dark: #155E75;
  --yjsz-accent: #06B6D4;
  --yjsz-accent-soft: #67E8F9;
  --yjsz-gold: #F59E0B;
  --yjsz-gold-soft: #FCD34D;
  --yjsz-ripple: #22D3EE;
  --yjsz-teal: #14B8A6;
  --yjsz-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --yjsz-shadow-strong: 0 18px 50px rgba(15, 23, 42, 0.18);
  --yjsz-radius: 18px;
  --yjsz-radius-sm: 10px;
  --yjsz-wrap: 1180px;
  --yjsz-font: -apple-system, "PingFang SC", "Microsoft YaHei", "Segoe UI", "Hiragino Sans GB", "Noto Sans CJK SC", sans-serif;
}

[data-theme="dark"] {
  --yjsz-bg: #020617;
  --yjsz-surface: #0B1221;
  --yjsz-surface-2: #0F1F3D;
  --yjsz-surface-frost: rgba(11, 18, 33, 0.78);
  --yjsz-ink: #E0F2FE;
  --yjsz-ink-soft: #BAE6FD;
  --yjsz-muted: #94A3B8;
  --yjsz-line: #1E3A5F;
  --yjsz-line-soft: #16294A;
  --yjsz-primary: #22D3EE;
  --yjsz-primary-dark: #0E7490;
  --yjsz-accent: #67E8F9;
  --yjsz-accent-soft: #22D3EE;
  --yjsz-gold: #FBBF24;
  --yjsz-gold-soft: #FCD34D;
  --yjsz-ripple: #06B6D4;
  --yjsz-teal: #5EEAD4;
  --yjsz-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  --yjsz-shadow-strong: 0 18px 50px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--yjsz-font);
  color: var(--yjsz-ink);
  background:
    radial-gradient(1200px 480px at 100% -80px, rgba(6, 182, 212, 0.10), transparent 60%),
    radial-gradient(1000px 520px at -10% 80%, rgba(14, 116, 144, 0.10), transparent 60%),
    var(--yjsz-bg);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s ease, color .35s ease;
}

a { color: inherit; text-decoration: none; transition: color .2s, background .2s, border-color .2s; }
a:hover { color: var(--yjsz-primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.3; }
button { font-family: inherit; cursor: pointer; }

.yjsz-wrap {
  width: min(100% - 36px, var(--yjsz-wrap));
  margin-inline: auto;
}

/* ============== 头部 ============== */
.yjsz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--yjsz-surface-frost);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--yjsz-line-soft);
  transition: background .35s, border-color .35s, box-shadow .35s;
}
.yjsz-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(2, 6, 23, 0.08);
  border-bottom-color: transparent;
}
[data-theme="dark"] .yjsz-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.yjsz-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}

.yjsz-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.yjsz-logo:hover { color: inherit; }
.yjsz-logo img { height: 44px; width: auto; }
.yjsz-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.18), rgba(14, 116, 144, 0.22));
  border: 1px solid rgba(34, 211, 238, 0.32);
  box-shadow: inset 0 0 18px rgba(34, 211, 238, 0.18);
}
[data-theme="dark"] .yjsz-logo-mark {
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.18), rgba(8, 145, 178, 0.35));
  border-color: rgba(34, 211, 238, 0.5);
}
.yjsz-logo-text strong {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, var(--yjsz-primary), var(--yjsz-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.yjsz-logo-text em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--yjsz-muted);
  margin-top: 2px;
  letter-spacing: 0.18em;
}

.yjsz-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.yjsz-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.yjsz-nav-item { position: relative; }
.yjsz-nav-item > a {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--yjsz-ink-soft);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.yjsz-nav-item > a:hover,
.yjsz-nav-item.is-active > a {
  color: var(--yjsz-primary);
  border-bottom-color: var(--yjsz-accent);
}
.yjsz-subnav {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 170px;
  padding: 8px;
  background: var(--yjsz-surface);
  border: 1px solid var(--yjsz-line-soft);
  border-radius: var(--yjsz-radius-sm);
  box-shadow: var(--yjsz-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 10;
}
.yjsz-nav-item.has-child:hover > .yjsz-subnav,
.yjsz-nav-item.has-child.is-open > .yjsz-subnav {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.yjsz-subnav a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--yjsz-muted);
}
.yjsz-subnav a:hover,
.yjsz-subnav .is-active a { background: rgba(6, 182, 212, 0.12); color: var(--yjsz-primary); }

.yjsz-nav-foot {
  display: flex;
  align-items: center;
  gap: 10px;
}
.yjsz-search {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--yjsz-line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--yjsz-surface);
  transition: border-color .2s, box-shadow .2s;
}
.yjsz-search:focus-within {
  border-color: var(--yjsz-accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18);
}
.yjsz-search input {
  width: 158px;
  border: 0;
  padding: 9px 14px;
  font-size: 0.86rem;
  outline: none;
  background: transparent;
  color: var(--yjsz-ink);
}
.yjsz-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: linear-gradient(135deg, var(--yjsz-primary), var(--yjsz-accent));
  color: #fff;
  border-radius: 0 999px 999px 0;
}

.yjsz-theme-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--yjsz-line);
  border-radius: 50%;
  background: var(--yjsz-surface);
  color: var(--yjsz-ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.yjsz-theme-toggle:hover {
  border-color: var(--yjsz-accent);
  color: var(--yjsz-primary);
  transform: rotate(15deg);
}
.yjsz-icon-sun { display: none; }
.yjsz-icon-moon { display: block; }
[data-theme="dark"] .yjsz-icon-sun { display: block; }
[data-theme="dark"] .yjsz-icon-moon { display: none; }

.yjsz-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--yjsz-line);
  border-radius: 12px;
  background: var(--yjsz-surface);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.yjsz-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--yjsz-ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
body.nav-open .yjsz-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .yjsz-nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .yjsz-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.yjsz-nav-mask {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(2px);
  z-index: 90;
}
body.nav-open .yjsz-nav-mask { display: block; }

/* ============== Hero ============== */
.yjsz-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  color: #fff;
  background:
    radial-gradient(900px 360px at 90% 0%, rgba(34, 211, 238, 0.28), transparent 60%),
    radial-gradient(720px 320px at 0% 100%, rgba(20, 184, 166, 0.20), transparent 60%),
    linear-gradient(135deg, #0B1221 0%, #155E75 50%, #0E7490 100%);
}
[data-theme="dark"] .yjsz-hero {
  background:
    radial-gradient(900px 360px at 90% 0%, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(720px 320px at 0% 100%, rgba(20, 184, 166, 0.18), transparent 60%),
    linear-gradient(135deg, #020617 0%, #0B1221 60%, #155E75 100%);
}
.yjsz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(720px 360px at 30% 30%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(720px 360px at 30% 30%, #000, transparent 80%);
  pointer-events: none;
}

.yjsz-hero-sonar {
  position: absolute;
  top: 50%;
  right: 18%;
  width: 0;
  height: 0;
  pointer-events: none;
}
.yjsz-sonar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(103, 232, 249, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: yjsz-sonar 4.6s linear infinite;
}
.yjsz-sonar-r1 { animation-delay: 0s; }
.yjsz-sonar-r2 { animation-delay: 1.15s; }
.yjsz-sonar-r3 { animation-delay: 2.3s; }
.yjsz-sonar-r4 { animation-delay: 3.45s; }
.yjsz-sonar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #67E8F9, #22D3EE 60%, transparent 80%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.9);
}
@keyframes yjsz-sonar {
  0% { width: 60px; height: 60px; opacity: 0.85; }
  100% { width: 540px; height: 540px; opacity: 0; }
}

.yjsz-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}
.yjsz-eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  color: var(--yjsz-accent-soft);
  font-weight: 700;
}
.yjsz-hero-copy h1 {
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.yjsz-hero-desc {
  margin: 18px 0 0;
  max-width: 36em;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
}
.yjsz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.yjsz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform .2s, background .2s, box-shadow .2s, border-color .2s;
}
.yjsz-btn:hover { transform: translateY(-2px); }
.yjsz-btn-primary {
  background: linear-gradient(135deg, var(--yjsz-gold-soft), var(--yjsz-gold));
  color: #1F2937;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.4);
}
.yjsz-btn-primary:hover { color: #1F2937; box-shadow: 0 14px 32px rgba(245, 158, 11, 0.55); }
.yjsz-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.yjsz-btn-ghost:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }

.yjsz-hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}
.yjsz-hero-tags > span { font-weight: 700; color: var(--yjsz-accent-soft); }
.yjsz-hero-tags em {
  font-style: normal;
  padding: 3px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.08em;
}

/* Hero panel - gauges */
.yjsz-hero-panel {
  position: relative;
  padding: 22px 22px 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.4);
}
.yjsz-hero-panel-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.yjsz-hero-panel-hd strong { color: #fff; }
.yjsz-hero-panel-hd em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #67E8F9;
  padding: 2px 8px;
  border: 1px solid rgba(103, 232, 249, 0.4);
  border-radius: 4px;
}
.yjsz-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: yjsz-pulse 1.6s ease-out infinite;
}
@keyframes yjsz-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  100% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
}

.yjsz-gauges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
}
.yjsz-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}
.yjsz-gauge svg { position: absolute; top: 8px; }
.yjsz-gauge strong {
  margin-top: 26px;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 1;
}
.yjsz-gauge span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.05em;
  z-index: 1;
}
.yjsz-hero-panel-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}
.yjsz-hero-panel-foot strong { color: var(--yjsz-accent-soft); font-size: 0.92rem; margin-right: 4px; }

.yjsz-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  color: var(--yjsz-bg);
  pointer-events: none;
}
.yjsz-wave svg { width: 100%; height: 80px; display: block; }

/* ============== Ticker ============== */
.yjsz-ticker {
  position: relative;
  margin-top: -22px;
  z-index: 3;
}
.yjsz-ticker-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: var(--yjsz-surface);
  border: 1px solid var(--yjsz-line-soft);
  border-radius: 14px;
  box-shadow: var(--yjsz-shadow);
  overflow: hidden;
}
.yjsz-ticker-label {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yjsz-primary), var(--yjsz-accent));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.yjsz-ticker-track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.yjsz-ticker-stream {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  width: max-content;
  animation: yjsz-marquee 38s linear infinite;
}
.yjsz-ticker-stream a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--yjsz-ink-soft);
}
.yjsz-ticker-stream a i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yjsz-gold);
  box-shadow: 0 0 8px var(--yjsz-gold);
}
.yjsz-ticker-track:hover .yjsz-ticker-stream { animation-play-state: paused; }
@keyframes yjsz-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== KPIs ============== */
.yjsz-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0 28px;
}
.yjsz-kpi {
  position: relative;
  padding: 20px 22px;
  background: var(--yjsz-surface);
  border: 1px solid var(--yjsz-line-soft);
  border-radius: var(--yjsz-radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.yjsz-kpi::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.16), transparent 70%);
}
.yjsz-kpi:hover { transform: translateY(-3px); box-shadow: var(--yjsz-shadow); }
.yjsz-kpi strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--yjsz-primary), var(--yjsz-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.yjsz-kpi span {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--yjsz-muted);
}

/* ============== Section heading ============== */
.yjsz-section-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--yjsz-line-soft);
}
.yjsz-section-hd h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  position: relative;
}
.yjsz-hd-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yjsz-accent);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.18), 0 0 14px var(--yjsz-accent);
}
.yjsz-section-hd span,
.yjsz-section-hd a {
  font-size: 0.86rem;
  color: var(--yjsz-muted);
  font-weight: 600;
}
.yjsz-section-hd a:hover { color: var(--yjsz-primary); }

/* ============== Focus ============== */
.yjsz-focus { margin: 32px 0; }
.yjsz-focus-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}
.yjsz-focus-lead {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--yjsz-surface);
  border: 1px solid var(--yjsz-line-soft);
  border-radius: var(--yjsz-radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.yjsz-focus-lead:hover { transform: translateY(-3px); box-shadow: var(--yjsz-shadow-strong); color: inherit; }
.yjsz-focus-lead-cover {
  min-height: 220px;
  background: linear-gradient(135deg, #0E7490, #155E75 55%, #0B1221);
  position: relative;
}
.yjsz-focus-lead-cover img { width: 100%; height: 100%; object-fit: cover; min-height: inherit; }
.yjsz-focus-ph {
  min-height: inherit;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    radial-gradient(120px 80px at 80% 20%, rgba(103, 232, 249, 0.35), transparent 60%),
    linear-gradient(135deg, #0B1221, #0E7490 70%, #155E75);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.96rem;
}
.yjsz-focus-lead-body { padding: 16px 18px 20px; }
.yjsz-focus-lead-body h3 {
  font-size: 1.32rem;
  margin: 8px 0 8px;
  line-height: 1.4;
}
.yjsz-focus-lead-body p {
  margin: 0 0 10px;
  color: var(--yjsz-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}
.yjsz-focus-lead-body time {
  font-size: 0.82rem;
  color: var(--yjsz-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.yjsz-focus-lead-body time i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--yjsz-accent);
}

.yjsz-focus-stack {
  display: grid;
  gap: 10px;
  align-content: start;
}
.yjsz-focus-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--yjsz-surface);
  border: 1px solid var(--yjsz-line-soft);
  border-left: 3px solid var(--yjsz-accent);
  border-radius: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.yjsz-focus-card:hover { transform: translateX(4px); box-shadow: var(--yjsz-shadow); color: inherit; }
.yjsz-focus-idx {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yjsz-gold);
  letter-spacing: 0.02em;
  font-family: "SF Mono", "Consolas", monospace;
}
.yjsz-focus-card-body h4 {
  font-size: 0.96rem;
  line-height: 1.45;
  margin: 0 0 4px;
  font-weight: 700;
}
.yjsz-focus-card-body span {
  font-size: 0.78rem;
  color: var(--yjsz-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.yjsz-focus-card-body span i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--yjsz-muted);
}

/* ============== Chip ============== */
.yjsz-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(6, 182, 212, 0.14);
  color: var(--yjsz-primary);
  border: 1px solid rgba(6, 182, 212, 0.28);
  letter-spacing: 0.04em;
}
[data-theme="dark"] .yjsz-chip {
  background: rgba(34, 211, 238, 0.18);
  color: var(--yjsz-accent);
  border-color: rgba(34, 211, 238, 0.4);
}

/* ============== Channels timeline ============== */
.yjsz-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 56px;
}
.yjsz-channel-col {
  min-width: 0;
  background: var(--yjsz-surface);
  border: 1px solid var(--yjsz-line-soft);
  border-radius: var(--yjsz-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px -14px rgba(15, 23, 42, 0.12);
  transition: box-shadow .25s, transform .25s;
}
.yjsz-channel-col:hover {
  box-shadow: 0 10px 36px -16px rgba(6, 182, 212, 0.28);
  transform: translateY(-2px);
}
.yjsz-channels-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--yjsz-primary), var(--yjsz-accent));
}
.yjsz-channel-c2 .yjsz-channels-hd {
  background: linear-gradient(135deg, #B45309, var(--yjsz-gold));
}
.yjsz-channel-c3 .yjsz-channels-hd {
  background: linear-gradient(135deg, #0F766E, #14B8A6);
}
.yjsz-channels-hd h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.06em;
}
.yjsz-channels-hd a {
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  text-decoration: none;
  transition: opacity .2s;
  white-space: nowrap;
}
.yjsz-channels-hd a:hover { opacity: 0.72; }

.yjsz-news-list { padding: 4px 0; }
.yjsz-news-list li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.yjsz-news-list li.is-visible { opacity: 1; transform: translateY(0); }
.yjsz-news-list li + li { border-top: 1px solid var(--yjsz-line-soft); }
.yjsz-news-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  color: inherit;
  transition: background .2s;
}
.yjsz-news-list a:hover { background: var(--yjsz-surface-frost); }
.yjsz-news-idx {
  flex-shrink: 0;
  width: 26px;
  font-size: 0.92rem;
  font-weight: 800;
  font-family: 'Courier New', 'Consolas', monospace;
  color: var(--yjsz-accent);
  opacity: 0.55;
  transition: opacity .2s;
}
.yjsz-channel-c2 .yjsz-news-idx { color: var(--yjsz-gold); }
.yjsz-channel-c3 .yjsz-news-idx { color: #14B8A6; }
.yjsz-news-list a:hover .yjsz-news-idx { opacity: 1; }
.yjsz-news-body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.yjsz-news-body h4 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .2s;
}
.yjsz-news-list a:hover h4 { color: var(--yjsz-primary); }
.yjsz-channel-c2 .yjsz-news-list a:hover h4 { color: var(--yjsz-gold); }
.yjsz-channel-c3 .yjsz-news-list a:hover h4 { color: #0F766E; }
.yjsz-news-body time {
  flex-shrink: 0;
  font-size: 0.74rem;
  color: var(--yjsz-muted);
  font-family: 'Courier New', 'Consolas', monospace;
  letter-spacing: 0.03em;
}

/* ============== 内部页面 ============== */
.yjsz-crumb {
  padding: 14px 0;
  font-size: 0.86rem;
  color: var(--yjsz-muted);
  border-bottom: 1px solid var(--yjsz-line-soft);
  background: var(--yjsz-surface-frost);
}
[data-theme="dark"] .yjsz-crumb { background: rgba(11, 18, 33, 0.5); }
.yjsz-crumb .yjsz-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.yjsz-crumb-label {
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--yjsz-line-soft);
  font-size: 0.76rem;
  color: var(--yjsz-ink-soft);
  letter-spacing: 0.04em;
}
.yjsz-crumb-sep { color: var(--yjsz-line); }

.yjsz-layout {
  display: grid;
  grid-template-columns: 1fr 312px;
  gap: 26px;
  padding: 28px 0 56px;
}

.yjsz-panel {
  background: var(--yjsz-surface);
  border: 1px solid var(--yjsz-line-soft);
  border-radius: var(--yjsz-radius);
  padding: 22px;
  margin-bottom: 18px;
}
.yjsz-panel-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--yjsz-line-soft);
}
.yjsz-panel-hd h3 {
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.yjsz-panel-hd h3::before {
  content: "";
  width: 4px; height: 16px;
  background: linear-gradient(180deg, var(--yjsz-accent), var(--yjsz-primary));
  border-radius: 2px;
}
.yjsz-panel-hd span { font-size: 0.78rem; color: var(--yjsz-muted); }
.yjsz-list-panel, .yjsz-detail { margin-bottom: 0; }

.yjsz-page-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--yjsz-line-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.yjsz-title-wave {
  display: inline-block;
  width: 28px;
  height: 8px;
  background:
    radial-gradient(circle at 14% 50%, var(--yjsz-accent) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 50%, var(--yjsz-gold) 0 4px, transparent 5px),
    radial-gradient(circle at 86% 50%, var(--yjsz-accent) 0 4px, transparent 5px);
}
.yjsz-page-title em {
  font-style: normal;
  color: var(--yjsz-accent);
  font-weight: 800;
}

.yjsz-article-list li + li { border-top: 1px solid var(--yjsz-line-soft); }
.yjsz-article-list a {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 16px 0;
  align-items: flex-start;
  color: inherit;
  transition: transform .2s;
}
.yjsz-article-list a:hover { transform: translateX(4px); color: inherit; }
.yjsz-article-list img,
.yjsz-list-ph {
  width: 100%;
  height: 100%;
  min-height: 100px;
  border-radius: 12px;
  object-fit: cover;
}
.yjsz-list-ph {
  display: flex;
  align-items: flex-end;
  padding: 12px;
  background:
    radial-gradient(60px 40px at 80% 20%, rgba(103, 232, 249, 0.4), transparent 60%),
    linear-gradient(135deg, #0B1221, #0E7490 80%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}
.yjsz-article-body h2 {
  font-size: 1.1rem;
  margin: 4px 0 8px;
  line-height: 1.4;
  transition: color .2s;
}
.yjsz-article-list a:hover h2 { color: var(--yjsz-primary); }

/* ============== 搜索结果列表（单列，无缩略图） ============== */
.yjsz-search-list li + li { border-top: 1px solid var(--yjsz-line-soft); }
.yjsz-search-list a {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 18px 16px 18px 20px;
  position: relative;
  border-radius: 10px;
  margin: 8px 0;
  background: var(--yjsz-surface-frost);
  border: 1px solid var(--yjsz-line-soft);
}
.yjsz-search-list a::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--yjsz-accent), var(--yjsz-primary));
  transition: width .2s;
}
.yjsz-search-list a:hover {
  transform: none;
  border-color: var(--yjsz-accent);
  box-shadow: 0 6px 18px -10px rgba(6, 182, 212, 0.4);
}
.yjsz-search-list a:hover::before { width: 5px; }
.yjsz-search-list .yjsz-article-body h2 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.yjsz-search-list .yjsz-article-body p {
  -webkit-line-clamp: 2;
  margin-bottom: 8px;
}
.yjsz-article-body p {
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: var(--yjsz-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yjsz-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--yjsz-muted);
}
.yjsz-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.yjsz-meta span i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--yjsz-line);
}
.yjsz-meta.center {
  justify-content: center;
  margin: 14px 0 24px;
  padding: 10px 0;
  border-top: 1px dashed var(--yjsz-line-soft);
  border-bottom: 1px dashed var(--yjsz-line-soft);
  font-size: 0.86rem;
}

/* ============== Detail ============== */
.yjsz-detail > h1 {
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--yjsz-line-soft);
}
.yjsz-richtext {
  font-size: 1.04rem;
  line-height: 1.95;
  color: var(--yjsz-ink-soft);
}
.yjsz-richtext p { margin: 0 0 1em; }
.yjsz-richtext h2, .yjsz-richtext h3 {
  margin: 1.4em 0 0.7em;
  position: relative;
  padding-left: 12px;
}
.yjsz-richtext h2::before, .yjsz-richtext h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 4px;
  height: calc(1em - 2px);
  background: linear-gradient(180deg, var(--yjsz-accent), var(--yjsz-primary));
  border-radius: 2px;
}
.yjsz-richtext img { margin: 1.2em auto; border-radius: 12px; box-shadow: var(--yjsz-shadow); }
.yjsz-richtext ul, .yjsz-richtext ol { margin: 0 0 1em 1.4em; padding: 0; }
.yjsz-richtext ul li { list-style: disc; }
.yjsz-richtext ol li { list-style: decimal; }

.yjsz-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px dashed var(--yjsz-line-soft);
}
.yjsz-tag-row-label {
  font-size: 0.78rem;
  color: var(--yjsz-muted);
  margin-right: 6px;
}
.yjsz-tag-row a {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--yjsz-ink-soft);
  border: 1px solid var(--yjsz-line);
  background: var(--yjsz-surface);
  transition: all .2s;
}
.yjsz-tag-row a:hover {
  color: #fff;
  background: var(--yjsz-primary);
  border-color: var(--yjsz-primary);
}

.yjsz-pagerow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--yjsz-line-soft);
  font-size: 0.92rem;
}
.yjsz-pagerow a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  background: var(--yjsz-surface-2);
  border: 1px solid var(--yjsz-line-soft);
  border-radius: 10px;
  color: var(--yjsz-ink-soft);
  transition: all .2s;
}
.yjsz-pagerow a:hover {
  background: var(--yjsz-primary);
  color: #fff;
  border-color: var(--yjsz-primary);
}
.yjsz-pagerow a span { font-size: 0.74rem; color: var(--yjsz-muted); }
.yjsz-pagerow a:hover span { color: rgba(255, 255, 255, 0.8); }
.yjsz-pagerow a strong { font-weight: 700; font-size: 0.92rem; }
.yjsz-pagerow-none {
  display: inline-block;
  padding: 10px 14px;
  color: var(--yjsz-muted);
  font-size: 0.88rem;
}

.yjsz-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--yjsz-muted);
  font-size: 0.96rem;
}

/* ============== Right side ============== */
.yjsz-rank {
  counter-reset: yjszrank;
}
.yjsz-rank li {
  counter-increment: yjszrank;
  padding: 8px 0;
  border-bottom: 1px dashed var(--yjsz-line-soft);
}
.yjsz-rank li:last-child { border-bottom: 0; }
.yjsz-rank a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  color: inherit;
}
.yjsz-rank-idx::before {
  content: counter(yjszrank, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  background: var(--yjsz-surface-2);
  color: var(--yjsz-primary);
  font-family: "SF Mono", "Consolas", monospace;
}
.yjsz-rank li:nth-child(1) .yjsz-rank-idx::before {
  background: linear-gradient(135deg, var(--yjsz-gold-soft), var(--yjsz-gold));
  color: #1F2937;
}
.yjsz-rank li:nth-child(2) .yjsz-rank-idx::before {
  background: linear-gradient(135deg, #94A3B8, #64748B);
  color: #fff;
}
.yjsz-rank li:nth-child(3) .yjsz-rank-idx::before {
  background: linear-gradient(135deg, #FB923C, #C2410C);
  color: #fff;
}
.yjsz-rank-title {
  font-size: 0.88rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.yjsz-rank li:hover .yjsz-rank-title { color: var(--yjsz-primary); }

.yjsz-side-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--yjsz-line-soft);
  font-size: 0.9rem;
}
.yjsz-side-list li:last-child { border-bottom: 0; }
.yjsz-side-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}
.yjsz-side-list a i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--yjsz-accent); flex-shrink: 0;
}
.yjsz-side-list a:hover { color: var(--yjsz-primary); }

.yjsz-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.yjsz-tag-cloud a {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--yjsz-ink-soft);
  border: 1px solid var(--yjsz-line);
  background: var(--yjsz-surface);
  transition: all .2s;
}
.yjsz-tag-cloud a:hover {
  color: #fff;
  background: var(--yjsz-primary);
  border-color: var(--yjsz-primary);
}

.yjsz-ad { font-size: 0.9rem; color: var(--yjsz-muted); }

.yjsz-pagination { margin-top: 24px; }
.yjsz-page {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.yjsz-page a,
.yjsz-page .dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--yjsz-line);
  font-size: 0.9rem;
  color: var(--yjsz-ink-soft);
  background: var(--yjsz-surface);
  transition: all .2s;
}
.yjsz-page .active a,
.yjsz-page a:hover {
  background: linear-gradient(135deg, var(--yjsz-primary), var(--yjsz-accent));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

/* ============== Footer ============== */
.yjsz-footer {
  position: relative;
  padding: 64px 0 26px;
  background:
    radial-gradient(700px 240px at 90% 0%, rgba(34, 211, 238, 0.12), transparent 60%),
    linear-gradient(180deg, #0B1221 0%, #020617 100%);
  color: #94A3B8;
}
.yjsz-footer a { color: #CBD5E1; }
.yjsz-footer a:hover { color: var(--yjsz-accent); }
.yjsz-footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  color: var(--yjsz-bg);
}
.yjsz-footer-wave svg { width: 100%; height: 60px; display: block; }
.yjsz-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.yjsz-footer-brand h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  background: linear-gradient(120deg, #67E8F9, #22D3EE);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.yjsz-footer-brand p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.7;
}
.yjsz-footer-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}
.yjsz-footer-metrics span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.78rem;
  color: #94A3B8;
}
.yjsz-footer-metrics strong {
  color: var(--yjsz-accent);
  font-size: 0.96rem;
  font-weight: 800;
}
.yjsz-footer h4 {
  color: var(--yjsz-accent-soft);
  font-size: 0.96rem;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.yjsz-footer p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #94A3B8;
  display: flex;
  gap: 8px;
}
.yjsz-footer p span {
  color: #64748B;
  font-size: 0.78rem;
  width: 36px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.yjsz-foot-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.yjsz-foot-links a {
  font-size: 0.9rem;
  position: relative;
  padding-left: 12px;
}
.yjsz-foot-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background: var(--yjsz-accent);
  border-radius: 50%;
}
.yjsz-friendlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}
.yjsz-friendlinks span { color: #64748B; font-weight: 700; margin-right: 6px; }
.yjsz-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #64748B;
}

/* ============== Responsive ============== */
@media (max-width: 1080px) {
  .yjsz-kpis { grid-template-columns: repeat(2, 1fr); }
  .yjsz-channels { grid-template-columns: 1fr 1fr; }
  .yjsz-channels .yjsz-channel-col:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .yjsz-hero-inner,
  .yjsz-focus-grid,
  .yjsz-layout { grid-template-columns: 1fr; }
  .yjsz-hero-panel { order: -1; max-width: 460px; }
  .yjsz-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .yjsz-nav-toggle { display: flex; }

  .yjsz-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 340px);
    height: 100vh;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    padding: 84px 20px 24px;
    background: var(--yjsz-surface);
    border-left: 1px solid var(--yjsz-line-soft);
    transform: translateX(105%);
    transition: transform .3s ease;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
  }
  .yjsz-nav.is-open { transform: translateX(0); }

  .yjsz-nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .yjsz-nav-item > a {
    border-bottom: 0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.98rem;
  }
  .yjsz-nav-item.is-active > a,
  .yjsz-nav-item > a:hover {
    background: rgba(6, 182, 212, 0.12);
  }
  .yjsz-subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0 14px;
    margin: 0 0 4px 8px;
    display: none;
  }
  .yjsz-nav-item.has-child.is-open > .yjsz-subnav { display: block; }
  .yjsz-nav-foot { margin-top: 14px; flex-direction: column; align-items: stretch; gap: 10px; }
  .yjsz-search { width: 100%; }
  .yjsz-search input { width: 100%; flex: 1; }
  .yjsz-theme-toggle { align-self: flex-start; }
}

@media (max-width: 680px) {
  .yjsz-kpis { grid-template-columns: 1fr 1fr; }
  .yjsz-channels { grid-template-columns: 1fr; }
  .yjsz-channels .yjsz-channel-col:nth-child(3) { grid-column: auto; }
  .yjsz-hero { padding: 48px 0 80px; }
  .yjsz-hero-copy h1 { font-size: 1.85rem; }
  .yjsz-hero-desc { font-size: 0.96rem; }
  .yjsz-gauges { grid-template-columns: 1fr 1fr; gap: 8px; }
  .yjsz-gauge { padding: 8px 4px; }
  .yjsz-gauge svg { width: 60px; height: 60px; }
  .yjsz-gauge strong { font-size: 1.3rem; }
  .yjsz-focus-lead-cover { min-height: 180px; }
  .yjsz-article-list a { grid-template-columns: 1fr; }
  .yjsz-article-list img,
  .yjsz-list-ph { min-height: 160px; }
  .yjsz-pagerow { grid-template-columns: 1fr; }
  .yjsz-detail > h1 { text-align: left; justify-content: flex-start; font-size: 1.3rem; }
  .yjsz-meta.center { justify-content: flex-start; }
  .yjsz-ticker-stream { animation-duration: 28s; }
  .yjsz-hero-sonar { right: 8%; }
  .yjsz-sonar-ring { animation-duration: 3.6s; }
}

@media (prefers-reduced-motion: reduce) {
  .yjsz-ticker-stream, .yjsz-sonar-ring, .yjsz-live-dot { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
