:root {
  --sq-bg: #f8fbff;
  --sq-bg-soft: #ffffff;
  --sq-bg-deep: #08172c;
  --sq-bg-deeper: #102a43;
  --sq-card: rgba(255, 255, 255, 0.97);
  --sq-card-strong: #ffffff;
  --sq-line: rgba(56, 103, 160, 0.08);
  --sq-line-strong: rgba(56, 103, 160, 0.15);
  --sq-text: #173754;
  --sq-text-strong: #12304d;
  --sq-muted: #6f8397;
  --sq-blue: #1b74ea;
  --sq-blue-strong: #0f5fc9;
  --sq-blue-soft: rgba(27, 116, 234, 0.09);
  --sq-orange: #f26a21;
  --sq-cyan: #1ba4b8;
  --sq-green: #198754;
  --sq-radius-xl: 30px;
  --sq-radius-lg: 22px;
  --sq-radius-md: 16px;
  --sq-shadow-sm: 0 14px 30px rgba(24, 63, 104, 0.055);
  --sq-shadow-lg: 0 22px 48px rgba(24, 63, 104, 0.1);
  --sq-max: 1240px;
  --sq-font-sans: "Noto Sans SC", "Source Han Sans SC", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "WenQuanYi Micro Hei", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--sq-font-sans);
  color: var(--sq-text);
  background:
    radial-gradient(circle at 84% 10%, rgba(64, 143, 238, 0.14), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(27, 164, 184, 0.08), transparent 22%),
    linear-gradient(180deg, #fdfeff 0%, #f8fbff 44%, #f0f6fb 100%);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: var(--sq-font-sans);
  color: var(--sq-text);
  background: transparent;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
  pointer-events: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.page-shell {
  width: min(1200px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.page-main {
  display: grid;
  gap: 22px;
}

.section-block,
.panel-shell,
.article-panel,
.sidebar-card,
.channel-panel,
.topic-card,
.news-card,
.archive-card,
.channel-link-card,
.compact-item,
.hero-aside__card,
.hero-lead-card,
.hero-stat,
.legal-nav,
.legal-panel {
  background: var(--sq-card);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--sq-shadow-sm);
  backdrop-filter: blur(18px);
}

.section-block,
.panel-shell,
.article-panel,
.sidebar-card,
.legal-panel,
.legal-nav {
  border-radius: var(--sq-radius-xl);
}

.section-block,
.panel-shell {
  padding: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sq-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.5;
}

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

.section-head__copy {
  display: grid;
  gap: 8px;
}

.section-title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.18;
}

.section-desc {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.98rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sq-blue-strong);
  font-weight: 700;
  white-space: nowrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: var(--sq-blue-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--sq-muted);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.btn--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #2c82ff 0%, var(--sq-blue) 100%);
  box-shadow:
    0 16px 32px rgba(29, 114, 243, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn--ghost {
  color: var(--sq-blue-strong);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(29, 114, 243, 0.18);
}

.btn--ghost:hover {
  border-color: rgba(29, 114, 243, 0.3);
  box-shadow: 0 12px 28px rgba(29, 114, 243, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding-bottom: 10px;
}

.site-header.is-scrolled .header-bar {
  box-shadow: var(--sq-shadow-lg);
}

.header-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  background:
    radial-gradient(circle at top left, rgba(29, 114, 243, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 253, 0.95) 100%);
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 26px;
  box-shadow:
    0 18px 42px rgba(16, 42, 67, 0.1),
    inset 0 -1px 0 rgba(15, 76, 129, 0.04);
  backdrop-filter: blur(18px);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, #24649b 0%, #0f4c81 100%);
  box-shadow: 0 12px 24px rgba(15, 76, 129, 0.24);
  overflow: hidden;
}

.brand-mark::after {
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  content: "";
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-copy strong {
  color: var(--sq-text-strong);
  font-size: 1.12rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--sq-muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.nav-toggle {
  display: none;
  grid-column: 3;
  place-items: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--sq-text-strong);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.site-nav {
  min-width: 0;
  flex: 1 1 auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 15px;
  border-radius: 16px;
  color: var(--sq-text-strong);
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-link:hover,
.nav-item.is-active > .nav-link,
.nav-item.is-branch > .nav-link {
  color: var(--sq-blue-strong);
  background: var(--sq-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(29, 114, 243, 0.14);
}

.submenu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: -6px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--sq-muted);
}

.submenu-toggle i {
  display: none;
}

.submenu-toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  box-sizing: border-box;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.nav-item:hover > .submenu-toggle,
.nav-item.is-active > .submenu-toggle,
.nav-item.is-branch > .submenu-toggle,
.nav-item.nav-item--open > .submenu-toggle {
  color: var(--sq-blue-strong);
}

.nav-item--has-submenu:hover .nav-submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.nav-item.nav-item--open .nav-submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.nav-item.nav-item--open > .submenu-toggle::before {
  transform: translateY(1px) rotate(-135deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 4px;
  min-width: 196px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.96) 100%);
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 18px;
  box-shadow:
    0 22px 46px rgba(15, 76, 129, 0.14),
    0 8px 18px rgba(15, 76, 129, 0.08);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transform-origin: 24px top;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 200ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 180ms ease;
  list-style: none;
}

.nav-submenu li {
  list-style: none;
}

.nav-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px 0 12px;
  border-radius: 12px;
  color: rgba(17, 44, 74, 0.9);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.nav-submenu a::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-left: 8px;
  box-sizing: border-box;
  border-top: 2px solid rgba(95, 112, 132, 0.55);
  border-right: 2px solid rgba(95, 112, 132, 0.55);
  transform: rotate(45deg);
  transition: border-color 180ms ease, transform 180ms ease;
}

.nav-submenu a:hover,
.nav-submenu li.is-active > a {
  color: var(--sq-blue-strong);
  background: linear-gradient(180deg, rgba(29, 114, 243, 0.1) 0%, rgba(29, 114, 243, 0.16) 100%);
  box-shadow: inset 0 0 0 1px rgba(29, 114, 243, 0.08);
  transform: translateX(2px);
}

.nav-submenu a:hover::after,
.nav-submenu li.is-active > a::after {
  border-color: currentColor;
  transform: translateX(1px) rotate(45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px 0 46px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 999px;
}

.header-search::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid var(--sq-blue);
  border-radius: 50%;
  transform: translateY(-58%);
  box-sizing: border-box;
  pointer-events: none;
}

.header-search::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  width: 8px;
  height: 2px;
  background: var(--sq-blue);
  border-radius: 999px;
  transform: translateY(3px) rotate(45deg);
  transform-origin: center;
  pointer-events: none;
}

.header-search i {
  display: none;
}

.header-search input {
  width: 190px;
  border: 0;
  padding: 0;
  color: var(--sq-text);
  background: transparent;
  outline: none;
}

.header-search button {
  border: 0;
  padding: 0;
  color: var(--sq-blue-strong);
  background: transparent;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 2.6em;
  text-align: center;
}

.header-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--sq-blue-strong);
  background: rgba(29, 114, 243, 0.1);
  border: 1px solid rgba(29, 114, 243, 0.16);
  font-weight: 700;
}

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

.hero-main {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border-radius: var(--sq-radius-xl);
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.92), rgba(15, 76, 129, 0.88)),
    #102a43;
  box-shadow: var(--sq-shadow-lg);
}

.hero-main__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
}

.hero-main__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 360px);
  gap: 24px;
  height: 100%;
  padding: 36px;
}

.hero-copy {
  align-self: end;
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.04;
  color: #ffffff;
}

.hero-text {
  max-width: 38rem;
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-stat {
  padding: 16px;
  border-radius: var(--sq-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.hero-lead-card {
  align-self: end;
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-lead-card__thumb {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 10;
  background: rgba(29, 114, 243, 0.08);
}

.hero-lead-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-lead-card__content {
  display: grid;
  gap: 10px;
}

.hero-lead-card__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.4rem;
  line-height: 1.22;
}

.hero-lead-card__text {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.96rem;
}

.hero-aside {
  display: grid;
  gap: 18px;
}

.hero-aside__card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--sq-radius-xl);
}

.card-title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.14rem;
}

.card-desc {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.92rem;
}

.notice-list,
.compact-list,
.channel-panel__list,
.rank-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.notice-list li,
.compact-item,
.channel-panel__item,
.rank-list li {
  list-style: none;
}

.notice-list a,
.compact-item a,
.channel-panel__item a,
.rank-list a {
  display: grid;
  gap: 6px;
}

.notice-list strong,
.compact-item strong,
.channel-panel__item strong,
.rank-list strong {
  color: var(--sq-text-strong);
  font-size: 0.98rem;
  line-height: 1.35;
}

.notice-list span,
.compact-item span,
.channel-panel__item span,
.rank-list span {
  color: var(--sq-muted);
  font-size: 0.86rem;
}

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

.channel-link-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--sq-radius-xl);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.channel-link-card:hover,
.news-card:hover,
.archive-card:hover,
.topic-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sq-shadow-lg);
}

.channel-link-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(180deg, #2c82ff 0%, #1d72f3 100%);
}

.channel-link-card__title {
  margin: 0;
  font-size: 1.08rem;
  color: var(--sq-text-strong);
}

.channel-link-card__text {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.92rem;
}

.channel-link-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sq-blue-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.headline-grid,
.topic-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.news-card,
.topic-card,
.related-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: var(--sq-radius-xl);
}

.news-card__thumb,
.related-card__thumb {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  background: rgba(29, 114, 243, 0.08);
}

.news-card__thumb img,
.related-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__content,
.related-card__content {
  display: grid;
  gap: 10px;
}

.news-card__title,
.related-card__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.08rem;
  line-height: 1.28;
}

.news-card__excerpt,
.related-card__excerpt {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.92rem;
}

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

.channel-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--sq-radius-xl);
}

.channel-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.channel-panel__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.18rem;
}

.channel-panel__lead {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(29, 114, 243, 0.06), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(29, 114, 243, 0.1);
}

.channel-panel__lead h3 {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.08rem;
  line-height: 1.28;
}

.channel-panel__lead p {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.92rem;
}

.topic-card {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 255, 0.92) 100%);
}

.topic-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: var(--sq-blue-strong);
  background: rgba(29, 114, 243, 0.1);
  font-size: 1.2rem;
}

.topic-card__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.15rem;
}

.topic-card__text {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.92rem;
}

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

.compact-item {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
}

.channel-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  padding: 30px;
}

.channel-hero__content,
.channel-hero__stats {
  display: grid;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--sq-muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--sq-blue-strong);
}

.channel-hero__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.channel-hero__text {
  margin: 0;
  max-width: 48rem;
  color: var(--sq-muted);
}

.hero-statcard {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 76, 129, 0.08);
}

.hero-statcard strong {
  color: var(--sq-text-strong);
  font-size: 1.3rem;
}

.hero-statcard span {
  color: var(--sq-muted);
  font-size: 0.88rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--sq-blue-strong);
  background: rgba(29, 114, 243, 0.08);
  border: 1px solid rgba(29, 114, 243, 0.12);
  font-size: 0.88rem;
  font-weight: 700;
}

.archive-layout,
.article-layout,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}

.archive-main,
.article-main {
  display: grid;
  gap: 18px;
}

.archive-grid {
  display: grid;
  gap: 18px;
}

.archive-card {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: var(--sq-radius-xl);
}

.archive-card__thumb {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  background: rgba(29, 114, 243, 0.08);
}

.archive-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card__body {
  display: grid;
  gap: 12px;
}

.archive-card__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.3rem;
  line-height: 1.25;
}

.archive-card__excerpt {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.95rem;
}

.archive-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--sq-muted);
  font-size: 0.88rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 30px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 76, 129, 0.1);
  color: var(--sq-text);
}

.pagination .current,
.pagination a:hover {
  color: var(--sq-blue-strong);
  border-color: rgba(29, 114, 243, 0.24);
  background: rgba(29, 114, 243, 0.1);
}

.sidebar-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.sidebar-card__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.08rem;
}

.sidebar-navlist {
  display: grid;
  gap: 2px;
}

.sidebar-navlist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 2px;
  border-bottom: 1px solid rgba(15, 39, 69, 0.08);
  color: var(--sq-text);
  font-size: 0.94rem;
  font-weight: 600;
}

.sidebar-navlist a:last-child {
  border-bottom: 0;
}

.sidebar-navlist a i {
  color: #94a3b8;
  font-size: 0.84rem;
}

.sidebar-navlist a:hover {
  color: var(--sq-blue-strong);
}

.sidebar-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar-taglist button,
.sidebar-taglist a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(15, 39, 69, 0.1);
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1;
}

.sidebar-taglist button {
  cursor: pointer;
}

.sidebar-taglist button:hover,
.sidebar-taglist a:hover {
  border-color: rgba(29, 114, 243, 0.24);
  background: rgba(29, 114, 243, 0.08);
  color: #1d72f3;
}

.rank-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(29, 114, 243, 0.1);
  color: var(--sq-blue-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--sq-text);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 76, 129, 0.1);
  font-size: 0.88rem;
}

.article-panel {
  padding: 28px 32px;
}

.article-breadcrumb {
  margin-bottom: 18px;
}

.article-header {
  display: grid;
  gap: 16px;
}

.article-header__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
}

.article-summary {
  padding: 18px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(29, 114, 243, 0.08), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(29, 114, 243, 0.12);
  color: var(--sq-text);
}

.article-summary p {
  margin: 0;
}

.article-cover {
  overflow: hidden;
  margin-top: 22px;
  border-radius: 26px;
  background: rgba(29, 114, 243, 0.08);
}

.article-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.article-tools a,
.article-tools button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: 999px;
  color: var(--sq-blue-strong);
  background: rgba(255, 255, 255, 0.88);
}

.article-content {
  margin-top: 28px;
  color: var(--sq-text);
  font-size: 1.05rem;
  line-height: 1.95;
}

.article-content p {
  margin: 0 0 1.2em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 1.8em 0 0.8em;
  color: var(--sq-text-strong);
  line-height: 1.3;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
}

.article-content blockquote {
  margin: 1.6em 0;
  padding: 1.2em 1.4em;
  border-left: 4px solid var(--sq-blue);
  border-radius: 0 20px 20px 0;
  background: rgba(29, 114, 243, 0.06);
  color: var(--sq-text-strong);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  overflow: hidden;
  border-radius: 18px;
  font-size: 0.96rem;
}

.article-content th,
.article-content td {
  padding: 12px 14px;
  border: 1px solid rgba(15, 76, 129, 0.08);
  text-align: left;
}

.article-content th {
  background: rgba(29, 114, 243, 0.08);
}

.article-content img {
  margin: 1.6em auto;
  border-radius: 22px;
  box-shadow: var(--sq-shadow-sm);
}

.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article-nav {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.article-nav__item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 76, 129, 0.08);
}

.article-nav__item span {
  color: var(--sq-muted);
  font-size: 0.84rem;
}

.article-side {
  display: grid;
  gap: 18px;
}

.related-card {
  padding: 18px;
  border-radius: 24px;
}

.legal-layout {
  grid-template-columns: 280px minmax(0, 1fr);
}

.legal-nav,
.legal-panel {
  padding: 24px;
}

.legal-nav {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.legal-nav__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.08rem;
}

.legal-nav__menu {
  display: grid;
  gap: 8px;
  list-style: none;
}

.legal-nav__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  font-weight: 600;
}

.legal-nav__menu a:hover,
.legal-nav__menu li.is-active a {
  color: var(--sq-blue-strong);
  background: rgba(29, 114, 243, 0.08);
}

.legal-panel__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.legal-panel__meta {
  margin: 14px 0 0;
  color: var(--sq-muted);
}

.legal-panel__body {
  margin-top: 24px;
}

.site-footer {
  margin-top: 26px;
}

.footer-shell {
  display: grid;
  gap: 20px;
  padding: 26px 30px;
  border-radius: var(--sq-radius-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand h2,
.footer-col h3 {
  margin: 0;
  color: var(--sq-text-strong);
}

.footer-brand p,
.footer-col p {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  color: var(--sq-text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 76, 129, 0.08);
  color: var(--sq-muted);
  font-size: 0.88rem;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #2c82ff 0%, var(--sq-blue) 100%);
  box-shadow: 0 16px 28px rgba(29, 114, 243, 0.24);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[data-reveal] {
  animation: sqFadeUp 0.8s ease both;
}

[data-reveal="2"] {
  animation-delay: 0.08s;
}

[data-reveal="3"] {
  animation-delay: 0.16s;
}

[data-reveal="4"] {
  animation-delay: 0.24s;
}

@keyframes sqFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .hero-grid,
  .channel-hero,
  .archive-layout,
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .channel-links,
  .headline-grid,
  .topic-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-main__content,
  .channel-hero,
  .archive-layout,
  .article-layout,
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .channel-links,
  .compact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 960px) {
  .page-shell {
    width: min(var(--sq-max), calc(100vw - 24px));
    padding-top: 12px;
  }

  .header-bar {
    grid-template-columns: auto auto;
    row-gap: 14px;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-wrap {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-wrap.is-open {
    display: flex;
  }

  .site-nav {
    width: 100%;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  .submenu-toggle {
    display: inline-flex;
  }

  .nav-submenu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    display: none;
    margin-top: -2px;
    box-shadow: none;
  }

  .nav-item.nav-item--open .nav-submenu {
    display: grid;
  }

  .nav-item--has-submenu:hover .nav-submenu {
    display: none;
  }

  .nav-item.nav-item--open:hover .nav-submenu {
    display: grid;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-search {
    width: 100%;
  }

  .header-search input {
    width: 100%;
  }

  .hero-grid,
  .channel-grid,
  .footer-grid,
  .headline-grid,
  .topic-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-main {
    min-height: auto;
  }

  .hero-main__content {
    padding: 28px;
  }

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

@media (max-width: 760px) {
  .hero-grid,
  .channel-links,
  .channel-grid,
  .compact-list,
  .headline-grid,
  .topic-grid,
  .footer-grid,
  .related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-main__content,
  .hero-stats,
  .archive-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .archive-card__thumb {
    aspect-ratio: 16 / 10;
  }

  .article-panel,
  .channel-hero,
  .footer-shell,
  .legal-panel,
  .legal-nav {
    padding: 22px;
  }

  .article-header__title,
  .legal-panel__title {
    font-size: 2rem;
  }

  .hero-title,
  .channel-hero__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(var(--sq-max), calc(100vw - 16px));
  }

  .header-bar,
  .hero-main__content,
  .hero-aside__card,
  .channel-panel,
  .archive-card,
  .article-panel,
  .sidebar-card,
  .legal-panel,
  .legal-nav,
  .footer-shell {
    padding: 18px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.76rem;
  }

  .hero-title,
  .channel-hero__title,
  .article-header__title,
  .legal-panel__title {
    font-size: 1.75rem;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn,
  .header-portal-link {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .article-tools {
    display: grid;
  }
}

/* ===== 2026-04-05 news-site simplification ===== */

.brand-copy small {
  display: none;
}

.header-bar,
.nav-wrap,
.site-nav,
.nav-menu,
.nav-item {
  overflow: visible;
}

.nav-item--has-submenu::after {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  content: "";
}

.nav-submenu {
  top: calc(100% + 2px);
}

.page-intro {
  display: grid;
  gap: 12px;
  padding: 18px 24px;
}

.page-intro__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1.15;
}

.page-intro__desc {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.98rem;
}

.page-intro__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--sq-muted);
  font-size: 0.9rem;
}

.home-news-top {
  padding: 22px 24px;
}

.home-news-top__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 360px;
  gap: 24px;
}

.home-focus {
  display: grid;
  gap: 18px;
}

.home-focus__thumb {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: rgba(29, 114, 243, 0.08);
}

.home-focus__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-focus__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.1;
}

.home-focus__excerpt {
  margin: 0;
  color: var(--sq-text);
  font-size: 1rem;
}

.home-latest {
  display: grid;
  gap: 16px;
  align-content: start;
}

.home-latest__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.05rem;
}

.news-plain-list,
.news-plain-list li,
.news-plain-list ul {
  list-style: none;
}

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

.news-plain-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

.news-plain-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.news-plain-list a {
  display: grid;
  gap: 6px;
}

.news-plain-list strong {
  color: var(--sq-text-strong);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
}

.news-plain-list span,
.news-plain-list p {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.88rem;
}

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

.news-column {
  display: grid;
  gap: 16px;
  padding: 0;
}

.news-column__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(15, 76, 129, 0.08);
}

.news-column__head h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--sq-text-strong);
}

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

.news-column__lead h4 {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.06rem;
  line-height: 1.35;
}

.news-column__lead p {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.92rem;
}

.news-column__meta {
  color: var(--sq-muted);
  font-size: 0.84rem;
}

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

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

.news-topic-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 76, 129, 0.08);
}

.news-topic-card h3 {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.05rem;
}

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

.news-topic-card__meta {
  color: var(--sq-blue-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.list-stream {
  display: grid;
  gap: 18px;
  padding: 20px 24px;
}

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

.list-entry {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

.list-entry:first-child {
  padding-top: 0;
}

.list-entry:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.list-entry__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.18rem;
  line-height: 1.35;
}

.list-entry__excerpt {
  margin: 0;
  color: var(--sq-muted);
  font-size: 0.95rem;
}

.list-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--sq-muted);
  font-size: 0.88rem;
}

.article-panel {
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.08);
}

.page-detail .article-panel,
.page-list .panel-shell,
.page-detail .sidebar-card,
.page-list .sidebar-card,
.page-static .legal-panel,
.page-static .legal-nav {
  border-radius: 18px;
  backdrop-filter: none;
}

.page-detail .article-header {
  gap: 10px;
}

.page-detail .article-header__title {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
}

.page-detail .article-summary {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sq-muted);
}

.page-detail .article-summary:empty {
  display: none;
}

.page-detail .article-cover,
.page-detail .article-tools {
  display: none;
}

.content-pagination {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 76, 129, 0.08);
}

.page-detail .content-pagination {
  justify-content: center;
}

.content-pagination:empty {
  display: none;
}

.footer-compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 18px 0 0;
  color: var(--sq-muted);
  font-size: 0.88rem;
}

.footer-compact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1200px) {
  .news-portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .home-news-top__grid,
  .news-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 760px) {
  .news-portal-grid,
  .news-grid-2,
  .news-topic-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-intro,
  .home-news-top,
  .list-stream {
    padding: 18px;
  }

  .page-intro__title,
  .home-focus__title {
    font-size: 1.8rem;
  }
}

/* ===== news portal refinement ===== */

:root {
  --sq-bg: #ffffff;
  --sq-card: #ffffff;
  --sq-card-strong: #ffffff;
  --sq-line: rgba(15, 39, 69, 0.06);
  --sq-line-strong: rgba(15, 39, 69, 0.1);
  --sq-text: #203245;
  --sq-text-strong: #111827;
  --sq-muted: #5f7083;
  --sq-blue: #165dff;
  --sq-blue-strong: #1245b5;
  --sq-blue-soft: rgba(22, 93, 255, 0.08);
  --sq-radius-xl: 16px;
  --sq-radius-lg: 12px;
  --sq-radius-md: 10px;
  --sq-shadow-sm: none;
  --sq-shadow-lg: 0 8px 20px rgba(15, 39, 69, 0.05);
}

body {
  background: #f6f8fb;
}

body::before {
  opacity: 0;
}

.page-shell {
  width: min(1200px, calc(100vw - 64px));
  padding-top: 10px;
}

.section-block,
.panel-shell,
.article-panel,
.sidebar-card,
.channel-panel,
.topic-card,
.news-card,
.archive-card,
.channel-link-card,
.compact-item,
.hero-aside__card,
.hero-lead-card,
.hero-stat,
.legal-nav,
.legal-panel {
  background: #ffffff;
  border: 1px solid rgba(15, 39, 69, 0.08);
  box-shadow: none;
  backdrop-filter: none;
}

.section-block,
.panel-shell,
.article-panel,
.sidebar-card,
.legal-panel,
.legal-nav {
  border-radius: 14px;
}

.section-block,
.panel-shell {
  padding: 20px;
}

.site-header {
  padding-bottom: 8px;
}

.site-header.is-scrolled .header-bar {
  box-shadow: 0 6px 20px rgba(15, 39, 69, 0.08);
}

.header-bar {
  gap: 16px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 39, 69, 0.06);
  border-radius: 14px;
  box-shadow: none;
  backdrop-filter: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 0.92rem;
  box-shadow: none;
}

.brand-mark::after {
  inset: 8px;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.nav-link {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.nav-submenu {
  min-width: 210px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(15, 39, 69, 0.1);
  box-shadow: 0 14px 32px rgba(15, 39, 69, 0.12);
  backdrop-filter: none;
}

.nav-submenu a {
  min-height: 38px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.header-actions {
  gap: 10px;
}

.header-search {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15, 39, 69, 0.1);
  background: #ffffff;
}

.header-search input {
  width: 160px;
  font-size: 0.92rem;
}

.header-portal-link {
  min-height: 40px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 39, 69, 0.1);
  color: var(--sq-text-strong);
}

.section-head {
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
}

.section-desc {
  font-size: 0.92rem;
}

.eyebrow {
  color: #7b8aa2;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  width: 24px;
}

.chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f4f7fb;
  border: 1px solid rgba(15, 39, 69, 0.06);
  color: var(--sq-blue-strong);
  font-size: 0.78rem;
}

.page-intro {
  gap: 8px;
  padding: 16px 20px;
}

.page-intro__title {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}

.page-intro__desc {
  font-size: 0.92rem;
}

.home-news-top {
  padding: 20px;
}

.home-news-top__grid {
  align-items: start;
}

.home-focus__thumb {
  border-radius: 12px;
}

.home-focus__title {
  font-size: clamp(1.85rem, 2.9vw, 2.6rem);
}

.home-focus__excerpt {
  font-size: 0.95rem;
  line-height: 1.8;
}

.home-latest__title {
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(15, 39, 69, 0.08);
}

.news-portal-grid {
  gap: 18px;
}

.news-column__head {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 39, 69, 0.08);
}

.news-column__head h3 {
  font-size: 1.08rem;
}

.news-column__lead h4 {
  font-size: 1rem;
}

.news-plain-list {
  gap: 10px;
}

.news-plain-list li {
  padding-bottom: 10px;
}

.news-plain-list strong {
  font-size: 0.96rem;
}

.news-grid-2,
.news-topic-row {
  gap: 18px;
}

.news-topic-card {
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
}

.news-topic-card h3 {
  font-size: 1rem;
  line-height: 1.45;
}

.archive-layout,
.article-layout,
.legal-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
}

.list-stream {
  gap: 16px;
  padding: 18px 20px;
}

.list-stream__list {
  gap: 0;
}

.list-entry {
  gap: 8px;
  padding: 16px 0;
}

.list-entry__title {
  font-size: 1.08rem;
}

.list-entry__excerpt {
  font-size: 0.92rem;
  line-height: 1.75;
}

.list-entry__meta {
  font-size: 0.84rem;
}

.sidebar-card {
  gap: 14px;
  padding: 18px;
}

.sidebar-card__title {
  font-size: 1rem;
}

.rank-list li {
  gap: 10px;
}

.rank-num {
  width: 24px;
  height: 24px;
  font-size: 0.78rem;
}

.tag-cloud a {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.84rem;
}

.article-panel {
  padding: 20px 24px;
}

.article-header__title {
  font-size: clamp(1.75rem, 2.4vw, 2.2rem);
  line-height: 1.3;
}

.article-content {
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.95;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 1.6em;
  margin-bottom: 0.7em;
}

.article-nav {
  margin-top: 22px;
}

.article-nav__item {
  padding: 14px 16px;
  border-radius: 10px;
}

.content-pagination {
  margin-top: 18px;
}

.pagination {
  padding: 0;
}

.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  background: #ffffff;
}

.legal-nav,
.legal-panel {
  padding: 18px 20px;
}

.legal-nav__menu a {
  min-height: 38px;
  border-radius: 8px;
}

.footer-compact {
  justify-content: center;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 39, 69, 0.08);
}

.back-top {
  width: 42px;
  height: 42px;
  box-shadow: 0 10px 20px rgba(15, 39, 69, 0.16);
}

@media (max-width: 960px) {
  .header-bar {
    border-radius: 12px;
  }

  .nav-wrap {
    padding-top: 6px;
  }

  .header-search input {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(1280px, calc(100vw - 20px));
  }

  .section-block,
  .panel-shell,
  .article-panel,
  .sidebar-card,
  .legal-panel,
  .legal-nav,
  .home-news-top,
  .list-stream,
  .page-intro {
    padding: 16px;
  }

  .home-focus__title,
  .page-intro__title,
  .article-header__title {
    font-size: 1.6rem;
  }
}

/* Continue tightening toward a cleaner news-site reading experience. */
.site-header,
.header-bar,
.nav-wrap,
.site-nav,
.nav-menu,
.nav-item {
  overflow: visible;
}

.site-nav {
  position: relative;
  z-index: 8;
}

.header-actions {
  position: relative;
  z-index: 2;
}

.nav-item--has-submenu {
  padding-bottom: 2px;
}

.nav-submenu {
  z-index: 24;
}

.page-home .eyebrow,
.page-list .eyebrow,
.page-detail .eyebrow,
.page-static .eyebrow,
.page-list .page-intro__desc,
.page-static .page-intro__meta,
.page-detail .article-keywords,
.page-list .list-stream .section-head,
.page-home .is-legacy-home-topics {
  display: none;
}

.page-home .section-block,
.page-home .panel-shell,
.page-list .panel-shell,
.page-detail .article-panel,
.page-detail .sidebar-card,
.page-static .panel-shell,
.page-static .legal-panel,
.page-static .legal-nav {
  background: #ffffff;
  border-color: rgba(15, 39, 69, 0.08);
  box-shadow: none;
  backdrop-filter: none;
}

.page-home .section-head__copy,
.page-list .section-head__copy,
.page-detail .section-head__copy,
.page-static .section-head__copy {
  gap: 0;
}

.page-home .section-title,
.page-list .section-title {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.page-home .home-news-top__grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
}

.page-home .home-focus__title {
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  line-height: 1.22;
}

.page-home .home-focus__excerpt,
.list-entry__excerpt {
  color: #4f6379;
}

.page-home .news-grid-2 {
  gap: 28px;
}

.page-home .news-plain-list li,
.page-list .rank-list li,
.page-detail .news-plain-list li,
.page-detail .rank-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 39, 69, 0.08);
}

.page-home .news-plain-list li:first-child,
.page-list .rank-list li:first-child,
.page-detail .news-plain-list li:first-child,
.page-detail .rank-list li:first-child {
  padding-top: 0;
}

.page-home .news-plain-list li:last-child,
.page-list .rank-list li:last-child,
.page-detail .news-plain-list li:last-child,
.page-detail .rank-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-list .page-intro,
.page-static .page-intro {
  padding-bottom: 18px;
}

.page-list .page-intro__title,
.page-static .page-intro__title {
  font-size: clamp(1.7rem, 2.2vw, 2.1rem);
}

.page-list .list-stream {
  padding-top: 18px;
}

.page-detail .article-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 39, 69, 0.08);
}

.page-detail .article-summary {
  margin-top: 18px;
}

.page-detail .article-nav {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 39, 69, 0.08);
}

.page-static .legal-layout {
  grid-template-columns: 220px minmax(0, 1fr);
}

.list-entry__excerpt.is-empty,
.page-intro__desc.is-empty,
.page-intro__meta.is-empty,
.list-entry__meta.is-empty,
.meta-row.is-empty,
.meta-row span.is-empty,
.breadcrumb.is-empty,
.search-summary.is-empty,
.search-summary p.is-empty,
.article-summary.is-empty,
.content-pagination.is-empty,
.article-content.is-empty,
.list-entry__meta span.is-empty {
  display: none !important;
}

@media (max-width: 960px) {
  .page-home .home-news-top__grid,
  .page-static .legal-layout {
    grid-template-columns: 1fr;
  }
}

/* Closer shell alignment with the main ShuQia platform topbar/footer. */
:root {
  --sq-bg: #f8fafc;
  --sq-bg-soft: #ffffff;
  --sq-line: rgba(15, 76, 129, 0.08);
  --sq-line-strong: rgba(15, 76, 129, 0.14);
  --sq-text: #0f172a;
  --sq-text-strong: #0f172a;
  --sq-muted: #64748b;
}

body {
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 100%);
}

body::before {
  display: none;
}

.page-shell {
  width: min(1200px, calc(100vw - 64px));
  padding: 24px 0 40px;
}

.page-main {
  gap: 18px;
}

.site-header {
  top: 10px;
  padding-bottom: 8px;
}

.site-header.is-scrolled .header-bar {
  box-shadow:
    0 18px 42px rgba(16, 42, 67, 0.1),
    inset 0 -1px 0 rgba(15, 76, 129, 0.04);
}

.header-bar {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 14px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(29, 114, 243, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 253, 0.95) 100%);
  border: 1px solid rgba(15, 76, 129, 0.12);
  box-shadow:
    0 18px 42px rgba(16, 42, 67, 0.1),
    inset 0 -1px 0 rgba(15, 76, 129, 0.04);
  backdrop-filter: blur(18px);
}

.brand-block {
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 4px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  border: 1px solid rgba(15, 76, 129, 0.12);
  box-shadow: 0 12px 24px rgba(15, 76, 129, 0.22);
}

.brand-mark::after {
  display: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-copy small {
  display: block;
  color: var(--sq-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.nav-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.site-nav {
  padding: 6px;
  border-radius: 18px;
  border: 1px solid rgba(15, 76, 129, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.9)),
    rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.nav-menu {
  justify-content: center;
  gap: 4px;
}

.nav-link {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-item.is-active > .nav-link,
.nav-item.is-branch > .nav-link {
  color: var(--sq-blue);
  background: rgba(29, 114, 243, 0.12);
  box-shadow: none;
}

.nav-submenu {
  min-width: 210px;
  padding: 8px;
  border-radius: 16px;
}

.nav-submenu a {
  min-height: 40px;
  border-radius: 10px;
}

.header-actions {
  gap: 10px;
}

.header-search {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(29, 114, 243, 0.26);
  background: rgba(29, 114, 243, 0.12);
  color: var(--sq-blue);
  font-size: 0.98rem;
}

.header-search i,
.header-search button {
  color: var(--sq-blue);
}

.header-search input,
.header-search button {
  font-size: 0.98rem;
}

.header-search input::placeholder {
  color: #5b7aa6;
}

.header-portal-link {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(15, 76, 129, 0.12);
  background: #ffffff;
  color: #205ea8;
  font-size: 0.98rem;
  font-weight: 700;
}

.site-footer {
  margin-top: 22px;
}

.footer-compact {
  padding: 16px 18px;
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  justify-content: space-between;
}

.footer-compact__links a {
  color: var(--sq-blue-strong);
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-compact__links a:hover {
  color: var(--sq-blue);
  transform: translateY(-1px);
}

.page-home .section-block,
.page-home .panel-shell,
.page-list .panel-shell,
.page-detail .article-panel,
.page-detail .sidebar-card,
.page-static .panel-shell,
.page-static .legal-panel,
.page-static .legal-nav {
  border-radius: 18px;
}

.page-home .section-block,
.page-home .panel-shell,
.page-list .panel-shell,
.page-detail .article-panel,
.page-detail .sidebar-card,
.page-static .panel-shell,
.page-static .legal-panel,
.page-static .legal-nav {
  padding: 20px;
}

.page-home .home-news-top__grid {
  gap: 24px;
}

.page-list .list-entry {
  padding: 14px 0;
}

.page-list .list-entry:first-child {
  padding-top: 0;
}

.page-list .list-entry:last-child {
  padding-bottom: 0;
}

@media (max-width: 960px) {
  .page-shell {
    width: min(1280px, calc(100vw - 20px));
    padding-top: 16px;
  }

  .header-bar {
    border-radius: 16px;
  }

  .nav-wrap {
    grid-template-columns: 1fr;
  }

  .site-nav {
    padding: 4px;
  }
}

/* Main-site bridge tuning for content density and reading rhythm. */
.archive-layout,
.article-layout {
  grid-template-columns: minmax(0, 820px) 320px;
  justify-content: space-between;
  align-items: start;
}

.archive-main,
.article-main {
  max-width: 820px;
}

.home-news-top {
  padding-bottom: 18px;
}

.home-latest {
  padding-left: 4px;
  border-left: 1px solid rgba(15, 39, 69, 0.08);
}

.home-latest__title {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 39, 69, 0.08);
}

.page-list .list-stream__list,
.page-detail .article-content {
  color: #334155;
}

.page-list .list-entry__title {
  font-size: 1.04rem;
  font-weight: 700;
}

.page-list .list-entry__meta,
.page-detail .meta-row {
  gap: 8px 12px;
  font-size: 0.84rem;
}

.page-detail .article-panel {
  padding: 24px 28px;
}

.page-detail .article-header__title {
  font-size: clamp(1.9rem, 2.7vw, 2.35rem);
  line-height: 1.3;
}

.page-detail .article-summary p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.9;
}

.page-detail .article-content {
  margin-top: 22px;
  font-size: 1.06rem;
  line-height: 2;
}

.page-detail .article-content p,
.page-detail .article-content li {
  color: #334155;
}

.page-detail .article-content p {
  margin: 0 0 14px;
  text-indent: 2em;
}

.page-detail .article-content > p:first-child {
  text-indent: 2em;
}

.page-detail .article-content h2,
.page-detail .article-content h3,
.page-detail .article-content h4 {
  margin: 20px 0 10px;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.5;
  text-indent: 2em;
}

.page-detail .article-content h2 {
  font-size: 18px;
}

.page-detail .article-content h3 {
  font-size: 17px;
}

.page-detail .article-content h4 {
  font-size: 16px;
}

.page-detail .article-content a {
  color: #1d72f3;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-detail .article-content img {
  border-radius: 16px;
  box-shadow: none;
}

.pagination {
  gap: 8px;
  padding: 0;
}

.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 39, 69, 0.1);
  background: #ffffff;
  box-shadow: none;
}

.pagination .current,
.pagination a:hover {
  color: #1d72f3;
  border-color: rgba(29, 114, 243, 0.28);
  background: rgba(29, 114, 243, 0.08);
}

.pagination.is-empty {
  display: none;
}

@media (max-width: 1200px) {
  .archive-layout,
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .archive-main,
  .article-main {
    max-width: none;
  }
}

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

  .home-latest {
    padding-left: 0;
    border-left: 0;
  }

  .page-detail .article-panel {
    padding: 20px;
  }

  .page-detail .article-side,
  .page-list .article-side {
    position: static;
  }
}

/* Further convergence toward the main ShuQia shell and a flatter newsroom layout. */
.nav-item--has-submenu::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.nav-item--has-submenu:focus-within > .nav-submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.page-shell {
  width: min(1200px, calc(100vw - 64px));
  padding-top: 16px;
}

.page-main {
  gap: 18px;
}

.site-header {
  padding-bottom: 8px;
}

.header-bar.topbar {
  padding: 12px 16px;
  border-radius: 18px;
}

.nav-wrap.topbar-nav-cluster {
  gap: 14px;
}

.site-nav.topbar-nav-row {
  justify-content: flex-start;
}

.header-search.topbar-search {
  background: #f1f6fb;
  border-color: rgba(29, 114, 243, 0.18);
  box-shadow: none;
}

.header-search.topbar-search input {
  width: 170px;
}

.header-search.topbar-search input::placeholder {
  color: #64748b;
}

.header-portal-link.topbar-link {
  min-height: 42px;
  border-radius: 999px;
}

.page-home .section-block,
.page-home .panel-shell,
.page-list .panel-shell,
.page-detail .article-panel,
.page-detail .sidebar-card,
.page-static .panel-shell,
.page-static .legal-panel,
.page-static .legal-nav,
.footer-compact.footer-note__bottom {
  background: #ffffff;
  border-color: rgba(15, 39, 69, 0.08);
  box-shadow: none;
  backdrop-filter: none;
}

.page-home .section-head,
.page-list .section-head,
.page-detail .section-head,
.page-static .section-head {
  margin-bottom: 14px;
}

.page-home .home-news-top {
  padding: 18px 20px 20px;
}

.page-home .home-news-top__grid {
  gap: 20px;
}

.page-home .home-focus__thumb {
  border-radius: 14px;
}

.page-home .home-focus__title {
  font-size: clamp(1.72rem, 2.6vw, 2.18rem);
  line-height: 1.28;
}

.page-home .home-focus__excerpt {
  font-size: 0.96rem;
  line-height: 1.85;
}

.page-home .home-latest {
  padding-left: 0;
  border-left: 0;
}

.page-home .home-latest__title {
  padding-bottom: 8px;
  font-size: 1rem;
}

.page-home .section-block--desk {
  padding-top: 18px;
}

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

.news-desk-section {
  display: grid;
  gap: 14px;
  align-content: start;
}

.news-desk-section__head,
.news-ledger__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 39, 69, 0.08);
}

.news-desk-section__head h3,
.news-ledger__head h3 {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.04rem;
  line-height: 1.3;
}

.news-desk-lead {
  display: grid;
  gap: 6px;
}

.news-desk-lead__meta {
  color: var(--sq-muted);
  font-size: 0.82rem;
}

.news-desk-lead__meta.is-empty {
  display: none;
}

.news-desk-lead h4 {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.06rem;
  line-height: 1.42;
}

.news-plain-list--compact,
.news-plain-list--dense {
  gap: 0;
}

.news-plain-list--compact li,
.news-plain-list--dense li {
  padding: 12px 0;
}

.news-plain-list--compact strong,
.news-plain-list--dense strong {
  font-size: 0.98rem;
}

.news-plain-list__status {
  padding: 6px 0 0 !important;
  border-bottom: 0 !important;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.news-plain-list__status.is-loading {
  color: #94a3b8;
}

.news-plain-list__status.is-error {
  color: #b45309;
}

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

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

.page-list .page-intro,
.page-static .page-intro {
  padding: 16px 20px;
}

.page-list .page-intro__title,
.page-static .page-intro__title {
  font-size: clamp(1.48rem, 2.1vw, 1.86rem);
}

.page-list .list-stream {
  padding: 18px 20px 20px;
}

.page-list .list-entry {
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 12px 0;
}

.page-list .list-entry__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  border: 1px solid rgba(15, 39, 69, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, #eef5fc 0%, #dfeaf6 100%);
  box-shadow: 0 6px 14px rgba(15, 39, 69, 0.05);
}

.page-list .list-entry__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.page-list .list-entry:hover .list-entry__thumb img {
  transform: scale(1.03);
}

.page-list .list-entry__body {
  display: grid;
  align-content: start;
  gap: 5px;
  min-width: 0;
}

.page-list .list-entry__title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.page-list .list-entry__excerpt {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.68;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-list .list-entry__meta {
  color: #64748b;
  font-size: 0.8rem;
}

.page-list .pagination,
.page-detail .content-pagination {
  justify-content: center;
}

.page-search .pagination {
  justify-content: center;
}

.page-detail .content-pagination {
  min-height: 76px;
  margin-top: 18px;
  padding: 0;
  align-items: center;
  border-top: 1px solid rgba(15, 39, 69, 0.08);
}

.page-detail .article-nav {
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}

.page-search .page-intro,
.page-search .list-stream {
  padding: 18px 20px;
}

@media (max-width: 960px) {
  .page-list .list-entry {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 700px) {
  .page-list .list-entry {
    grid-template-columns: 1fr;
  }

  .page-list .list-entry__thumb {
    max-width: 220px;
  }
}

.page-search .page-intro__title {
  font-size: clamp(1.52rem, 2.2vw, 1.92rem);
}

.archive-layout--search {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.search-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #64748b;
  font-size: 0.92rem;
}

.search-summary p {
  margin: 0;
}

.search-summary strong {
  color: var(--sq-text-strong);
}

.search-refine {
  padding-bottom: 14px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(15, 39, 69, 0.08);
}

.search-refine__form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-refine__field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(15, 39, 69, 0.1);
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
}

.search-refine__field input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--sq-text-strong);
}

.search-refine__field input::placeholder {
  color: #94a3b8;
}

.page-search .list-entry {
  gap: 6px;
  padding: 12px 0;
}

.page-search .list-entry__title {
  font-size: 1rem;
}

.page-search .list-entry__excerpt {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.72;
}

.page-search .list-entry__meta {
  color: #64748b;
  font-size: 0.82rem;
}

.empty-state {
  display: none;
}

.empty-state.is-visible {
  display: grid;
}

.empty-state--search {
  gap: 12px;
  justify-items: center;
  padding: 26px 18px 8px;
  text-align: center;
}

.empty-state--content {
  gap: 12px;
  justify-items: center;
  padding: 26px 12px 6px;
  text-align: center;
}

.empty-state--list {
  gap: 12px;
  justify-items: start;
  padding: 24px 0 4px;
  text-align: left;
}

.empty-state__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #1d72f3;
  font-size: 1.1rem;
}

.empty-state__title {
  margin: 0;
  color: var(--sq-text-strong);
  font-size: 1.08rem;
  line-height: 1.4;
}

.empty-state__text {
  margin: 0;
  max-width: 32rem;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
}

.empty-state--list .empty-state__text {
  max-width: none;
}

.empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.empty-state__recommend {
  display: grid;
  gap: 10px;
  justify-items: center;
  width: 100%;
}

.empty-state--list .empty-state__recommend {
  justify-items: start;
}

.empty-state__label {
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.empty-state__links,
.empty-state__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.empty-state--list .empty-state__actions,
.empty-state--list .empty-state__links,
.empty-state--list .empty-state__tags {
  justify-content: flex-start;
}

.empty-state__links a,
.empty-state__tags button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(15, 39, 69, 0.1);
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1;
}

.empty-state__links a,
.empty-state__tags button {
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.empty-state__tags button {
  cursor: pointer;
}

.empty-state__links a:hover,
.empty-state__tags button:hover {
  border-color: rgba(29, 114, 243, 0.24);
  background: rgba(29, 114, 243, 0.08);
  color: #1d72f3;
}

.empty-state__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.empty-state__card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(15, 39, 69, 0.08);
  border-radius: 14px;
  background: #f8fafc;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.empty-state__card:hover {
  border-color: rgba(29, 114, 243, 0.24);
  background: rgba(29, 114, 243, 0.05);
  transform: translateY(-1px);
}

.empty-state__card-type {
  color: #1d72f3;
  font-size: 0.8rem;
  font-weight: 700;
}

.empty-state__card strong {
  color: var(--sq-text-strong);
  font-size: 0.96rem;
  line-height: 1.5;
}

.empty-state__card p {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.65;
}

.sidebar-card.is-empty,
.article-nav.is-empty,
.article-nav__item.is-empty,
[data-collapsible-card].is-empty,
[data-collapsible-grid].is-empty,
[data-collapsible-section].is-empty {
  display: none !important;
}

.home-news-top__grid.home-news-top__grid--single {
  grid-template-columns: minmax(0, 1fr) !important;
}

.news-desk-grid.has-single-card,
.news-ledger-grid.has-single-card {
  grid-template-columns: minmax(0, 1fr) !important;
}

.search-tips {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.search-tips li {
  margin: 0;
}

.page-detail .article-side {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: 24px;
  height: fit-content;
}

.page-list .article-side {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: 24px;
  height: fit-content;
}

.page-search .article-side {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: 24px;
  height: fit-content;
}

.page-detail .article-panel {
  padding: 22px 24px;
}

.page-detail .article-header {
  gap: 8px;
  padding-bottom: 14px;
}

.page-detail .article-header__title {
  font-size: clamp(1.62rem, 2.3vw, 2.02rem);
  line-height: 1.36;
}

.page-detail .article-summary {
  margin-top: 14px;
}

.page-detail .article-summary p {
  font-size: 0.94rem;
  line-height: 1.82;
}

.page-detail .article-content {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.9;
}

.page-detail .article-nav {
  gap: 12px;
}

.page-detail .article-nav__item {
  padding: 12px 14px;
  border-radius: 8px;
  background: #f8fafc;
}

.page-static .legal-layout {
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
}

.page-static .legal-nav,
.page-static .legal-panel {
  padding: 18px 20px;
}

.footer-compact.footer-note__bottom {
  padding: 12px 16px;
  font-size: 0.88rem;
}

.footer-compact__links.footer-note__links {
  gap: 16px;
}

@media (max-width: 1200px) {
  .news-desk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .page-shell {
    width: min(1280px, calc(100vw - 20px));
    padding-top: 14px;
  }

  .header-bar.topbar {
    border-radius: 14px;
  }

  .header-search.topbar-search input {
    width: 100%;
  }

  .header-search button {
    min-width: 3.2em;
  }

  .news-desk-grid,
  .news-ledger-grid,
  .archive-layout--search,
  .page-static .legal-layout {
    grid-template-columns: 1fr;
  }

  .page-home .home-news-top,
  .page-list .list-stream,
  .page-search .page-intro,
  .page-search .list-stream,
  .page-detail .article-panel,
  .page-static .legal-nav,
  .page-static .legal-panel {
    padding: 16px;
  }

  .search-refine__form {
    flex-direction: column;
    align-items: stretch;
  }

  .empty-state__actions {
    width: 100%;
    flex-direction: column;
  }

  .empty-state__actions .btn {
    width: 100%;
  }

  .empty-state--list {
    justify-items: center;
    padding-top: 20px;
    text-align: center;
  }

  .empty-state--list .empty-state__recommend {
    justify-items: center;
  }

  .empty-state--list .empty-state__actions,
  .empty-state--list .empty-state__links,
  .empty-state--list .empty-state__tags {
    justify-content: center;
  }

  .empty-state__cards {
    grid-template-columns: 1fr;
  }

  .page-detail .article-side,
  .page-list .article-side,
  .page-search .article-side {
    position: static;
    top: auto;
    height: auto;
  }
}

/* Homepage art direction tuned toward a classic blue portal palette. */
.page-home {
  background:
    linear-gradient(180deg, #e6f0fb 0, #f4f8fd 220px, #f7faff 100%);
}

.page-home::before {
  background-image: none;
  opacity: 0;
}

.page-home .page-shell {
  padding-top: 14px;
}

.page-home .site-header {
  padding-bottom: 12px;
}

.page-home .header-bar.topbar {
  border: 1px solid #c8d7ea;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 8px 22px rgba(0, 70, 140, 0.06);
}

.page-home .panel-shell.home-portal-hero,
.page-home .home-paper-panel {
  border: 1px solid #cdd9e8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
}

.page-home .home-portal-hero {
  overflow: hidden;
  padding: 0;
}

.page-home .home-portal-hero__head {
  margin-bottom: 0;
  padding: 14px 20px 12px;
  background: linear-gradient(180deg, #0a59aa 0%, #00468c 100%);
}

.page-home .home-portal-hero__head .section-title {
  color: #ffffff;
  font-size: clamp(1.28rem, 1.7vw, 1.56rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-home .home-news-top__grid {
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.45fr) minmax(280px, 0.95fr);
  gap: 0;
}

.page-home .home-headlines,
.page-home .home-slider,
.page-home .home-latest {
  min-width: 0;
}

.page-home .home-headlines {
  display: grid;
  gap: 14px;
  padding: 18px 18px 20px;
}

.page-home .home-block-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dde5ef;
}

.page-home .home-block-title__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: #8f160f;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-home .home-headlines__list {
  gap: 0;
}

.page-home .home-headlines__list li {
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

.page-home .home-headlines__list strong {
  color: #13304d;
  font-size: 0.96rem;
  line-height: 1.48;
}

.page-home .home-headlines__list span {
  color: #6f8398;
  font-size: 0.82rem;
}

.page-home .home-headlines__list a:hover strong {
  color: #8f160f;
}

.page-home .chip {
  border-color: #b7cbe2;
  background: #edf4fb;
  color: #00468c;
}

.page-home .home-slider {
  display: grid;
  gap: 10px;
  padding: 18px 20px 20px;
  border-left: 1px solid #d5e0ec;
  border-right: 1px solid #d5e0ec;
}

.page-home .home-slider__viewport {
  position: relative;
  min-height: 100%;
}

.page-home .home-slide {
  display: none;
  gap: 12px;
}

.page-home .home-slide.is-active {
  display: grid;
}

.page-home .home-slide__thumb {
  overflow: hidden;
  border: 1px solid #cfdbeb;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  background: #eef5fc;
}

.page-home .home-slide__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: #68809d;
  font-size: 0.84rem;
}

.page-home .home-slide__title {
  margin: 0;
  font-size: clamp(1.72rem, 2.3vw, 2.12rem);
  line-height: 1.24;
}

.page-home .home-slide__title a {
  color: #003073;
}

.page-home .home-slide__title a:hover,
.page-home .news-desk-lead h4 a:hover,
.page-home .news-plain-list a:hover strong,
.page-home .section-link:hover {
  color: #0857a6;
}

.page-home .home-slide__excerpt {
  margin: 0;
  color: #50657d;
  font-size: 0.98rem;
  line-height: 1.82;
}

.page-home .home-slider__dots {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.page-home .home-slider__dots button {
  width: 28px;
  height: 28px;
  border: 1px solid #c9d6e4;
  border-radius: 6px;
  background: #ffffff;
  color: #45627f;
  font-size: 0.84rem;
  font-weight: 700;
}

.page-home .home-slider__dots button.is-active {
  border-color: #00468c;
  background: #00468c;
  color: #ffffff;
}

.page-home .home-latest {
  gap: 0;
  padding: 18px 20px 20px;
  border-left: 1px solid #d5e0ec;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
}

.page-home .home-latest__title {
  margin-bottom: 2px;
  padding: 0 0 12px;
  border-bottom: 2px solid #d7e1ec;
  color: #003073;
  font-size: 1rem;
  font-weight: 800;
}

.page-home .home-latest .news-plain-list li {
  padding: 13px 0;
  border-bottom: 1px solid #dde5ef;
}

.page-home .home-latest .news-plain-list strong {
  color: #19324e;
  font-size: 0.97rem;
}

.page-home .home-latest .news-plain-list span {
  color: #70859c;
  font-size: 0.84rem;
}

.page-home .home-paper-panel {
  padding: 18px 20px 20px;
}

.page-home .home-board-wrap {
  display: grid;
  gap: 16px;
}

.page-home .home-board-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
  gap: 16px;
}

.page-home .home-board-card,
.page-home .home-side-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 10px 12px 14px;
  border: 1px solid #9fc0ea;
  border-radius: 0;
  background: #ffffff;
}

.page-home .home-board-card__head,
.page-home .home-side-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #9fc0ea;
  background: linear-gradient(180deg, #fafdff 0%, #edf5ff 100%);
}

.page-home .home-board-card__head h3,
.page-home .home-side-card__head h3 {
  margin: 0;
  color: #00468c;
  font-size: 1rem;
  font-weight: 800;
}

.page-home .section-link {
  color: #0857a6;
  font-size: 0.85rem;
  font-weight: 700;
}

.page-home .home-board-lead {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.page-home .home-board-lead__thumb {
  overflow: hidden;
  border: 1px solid #d5e0ec;
  background: #eef5fc;
}

.page-home .home-board-lead__thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.page-home .home-board-lead__body {
  display: grid;
  gap: 6px;
}

.page-home .home-board-lead__body h4 {
  margin: 0;
  color: #0f2f54;
  font-size: 1rem;
  line-height: 1.45;
}

.page-home .home-board-lead__body h4 a {
  color: inherit;
}

.page-home .home-board-lead__body p {
  margin: 0;
  color: #50657d;
  font-size: 0.88rem;
  line-height: 1.7;
}

.page-home .home-board-list {
  gap: 0;
}

.page-home .home-board-list li,
.page-home .home-side-card .news-plain-list li {
  padding: 9px 0;
  border-bottom: 1px dashed #d9e3ee;
}

.page-home .home-board-list li:last-child,
.page-home .home-side-card .news-plain-list li:last-child {
  border-bottom: 0;
}

.page-home .home-board-list strong,
.page-home .home-side-card .news-plain-list strong {
  color: #173250;
  font-size: 0.94rem;
  line-height: 1.52;
}

.page-home .home-side-stack {
  display: grid;
  gap: 14px;
}

.page-home .home-side-card .news-plain-list {
  gap: 0;
}

.page-home .home-side-card .news-plain-list span {
  display: none;
}

@media (max-width: 960px) {
  .page-home .home-news-top__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-slider {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #d5e0ec;
    border-bottom: 1px solid #d5e0ec;
  }

  .page-home .home-latest {
    border-top: 0;
  }

  .page-home .home-board-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-home .home-portal-hero__head {
    padding: 12px 16px 10px;
  }

  .page-home .home-headlines,
  .page-home .home-slider,
  .page-home .home-latest,
  .page-home .home-paper-panel,
  .page-home .home-board-card,
  .page-home .home-side-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-home .home-board-lead {
    grid-template-columns: 1fr;
  }
}

/* Homepage portal layout aligned with classic news portals. */
.page-home .portal-page-main {
  display: grid;
  gap: 14px;
}

.page-home .portal-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-home .portal-main {
  grid-column: 1 / span 2;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #bcd0e6;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 70, 140, 0.06);
}

.page-home .portal-topline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid #d8e3ef;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.page-home .portal-topline__badge {
  display: grid;
  place-items: center;
  width: 64px;
  min-height: 64px;
  padding: 10px 8px;
  border: 1px solid #9e2018;
  border-radius: 12px;
  background: linear-gradient(180deg, #aa1f16 0%, #83130d 100%);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  letter-spacing: 0.04em;
}

.page-home .portal-topline__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.page-home .portal-topline__body h1 {
  margin: 0;
  color: #0e4592;
  font-size: clamp(1.28rem, 1.75vw, 1.58rem);
  line-height: 1.16;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .portal-topline__body h1 a {
  color: inherit;
}

.page-home .portal-topline__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #6c7f94;
  font-size: 0.9rem;
}

.page-home .portal-topline__meta a {
  color: #8c130d;
  font-weight: 700;
}

.page-home .portal-main-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0;
}

.page-home .portal-headlines,
.page-home .portal-slider-box,
.page-home .portal-side {
  min-width: 0;
}

.page-home .portal-headlines {
  padding: 20px;
}

.page-home .portal-headlines__list {
  gap: 0;
}

.page-home .portal-headlines__list li {
  padding: 9px 0;
  border-bottom: 0;
}

.page-home .portal-headlines__list li:nth-child(5n) {
  margin-bottom: 0;
  padding-bottom: 9px;
  border-bottom: 0;
}

.page-home .portal-headlines__list li:first-child {
  padding-top: 0;
}

.page-home .portal-headlines__list strong {
  display: block;
  color: #123151;
  font-size: 0.98rem;
  line-height: 1.48;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .portal-headlines__list li:nth-child(5n + 1) strong {
  color: #9a1c14;
}

.page-home .portal-headlines__list a:hover strong {
  color: #0857a6;
}

.page-home .portal-slider-box {
  display: grid;
  gap: 12px;
  padding: 20px 16px 18px;
  border-left: 1px solid #d4e0ec;
}

.page-home .portal-slider {
  display: grid;
  gap: 8px;
}

.page-home .portal-slider__viewport {
  position: relative;
  min-height: 100%;
}

.page-home .portal-slide {
  display: none;
  gap: 10px;
}

.page-home .portal-slide.is-active {
  display: grid;
}

.page-home .portal-slide__thumb {
  overflow: hidden;
  border: 1px solid #cfdbeb;
  border-radius: 12px;
  background: #eef5fc;
  aspect-ratio: 16 / 10;
}

.page-home .portal-slide__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .portal-slide__body {
  display: grid;
  gap: 8px;
}

.page-home .portal-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #6a8099;
  font-size: 0.86rem;
}

.page-home .portal-slide__title {
  margin: 0;
  color: #003b80;
  font-size: clamp(1.06rem, 1.34vw, 1.24rem);
  line-height: 1.28;
}

.page-home .portal-slide__title a {
  color: inherit;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-home .portal-slide__excerpt {
  display: none;
}

.page-home .portal-slider__dots {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.page-home .portal-slider__dots button {
  width: 26px;
  height: 26px;
  border: 1px solid #c5d4e5;
  border-radius: 4px;
  background: #ffffff;
  color: #334e69;
  font-size: 0.82rem;
  font-weight: 800;
}

.page-home .portal-slider__dots button.is-active {
  border-color: #003b80;
  background: #003b80;
  color: #ffffff;
}

.page-home .portal-brief,
.page-home .portal-side-card,
.page-home .portal-module-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  background: #ffffff;
}

.page-home .portal-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  padding: 0 10px;
}

.page-home .portal-card-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.page-home .portal-brief {
  padding: 14px 16px 16px;
  border: 1px solid #e5b3b1;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(167, 23, 15, 0.06);
}

.page-home .portal-brief .portal-card-head {
  border: 1px solid #d63b30;
  border-radius: 10px;
  background: linear-gradient(180deg, #cf271c 0%, #a7170f 100%);
}

.page-home .portal-brief .portal-card-head h3,
.page-home .portal-brief .section-link {
  color: #ffffff;
}

.page-home .portal-brief .news-plain-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #e3d7d6;
}

.page-home .portal-brief .news-plain-list strong,
.page-home .portal-side-card .news-plain-list strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .portal-side-card .news-plain-list span {
  display: none;
}

.page-home .portal-side {
  display: grid;
  gap: 12px;
  padding: 0;
  border-left: 0;
  background: transparent;
}

.page-home .portal-side-card,
.page-home .portal-module-card {
  padding: 18px 20px 20px;
  border: 1px solid #9fc0ea;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 70, 140, 0.05);
  overflow: hidden;
}

.page-home .portal-side-card .portal-card-head,
.page-home .portal-module-card .portal-card-head {
  border: 1px solid #9fc0ea;
  border-radius: 10px;
  background: linear-gradient(180deg, #fafdff 0%, #edf5ff 100%);
}

.page-home .portal-side-card .portal-card-head,
.page-home .portal-module-card .portal-card-head,
.page-home .portal-brief .portal-card-head {
  padding: 0 14px;
}

.page-home .portal-side-card .portal-card-head h3,
.page-home .portal-module-card .portal-card-head h3 {
  color: #00468c;
}

.page-home .portal-side-card .news-plain-list,
.page-home .portal-module-card .news-plain-list {
  gap: 0;
  padding-inline: 4px;
}

.page-home .portal-side-card .news-plain-list li,
.page-home .portal-module-card .news-plain-list li {
  padding: 11px 0;
  border-bottom: 0;
}

.page-home .portal-side-card .news-plain-list li:last-child,
.page-home .portal-module-card .news-plain-list li:last-child {
  border-bottom: 0;
}

.page-home .portal-side-card .news-plain-list strong,
.page-home .portal-module-card .news-plain-list strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #15304e;
  font-size: 0.92rem;
  line-height: 1.5;
}

.page-home .portal-side-card .news-plain-list span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #6d8299;
  font-size: 0.82rem;
}

.page-home .portal-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.page-home .portal-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-home .portal-module-card {
  width: 100%;
  margin: 0;
  align-self: start;
}

.page-home .portal-module-lead {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 4px 4px 6px 2px;
}

.page-home .portal-module-lead__thumb {
  overflow: hidden;
  border: 1px solid #d7e1eb;
  border-radius: 10px;
  background: #eef5fc;
}

.page-home .portal-module-lead__thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.page-home .portal-module-lead__body {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-right: 0;
}

.page-home .portal-module-lead__body h4 {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  color: #0f2f54;
  font-size: 0.92rem;
  line-height: 1.38;
}

.page-home .portal-module-lead__body h4 a {
  color: inherit;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .portal-module-lead__body p {
  margin: 0;
  color: #51667d;
  font-size: 0.88rem;
  line-height: 1.64;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-width: 0;
}

@media (max-width: 1180px) {
  .page-home .portal-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .portal-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .page-home .portal-top {
    grid-template-columns: 1fr;
  }

  .page-home .portal-main {
    grid-column: auto;
  }

  .page-home .portal-topline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-home .portal-topline__badge {
    width: auto;
    min-height: 42px;
    padding: 8px 14px;
  }

  .page-home .portal-main-grid {
    grid-template-columns: 1fr;
  }

  .page-home .portal-slider-box,
  .page-home .portal-headlines {
    padding-left: 16px;
    padding-right: 16px;
    border-left: 0;
  }

  .page-home .portal-slider-box {
    border-top: 1px solid #d4e0ec;
    border-bottom: 1px solid #d4e0ec;
  }

  .page-home .portal-side {
    padding: 16px;
    border-left: 0;
    border-top: 1px solid #d4e0ec;
    background: linear-gradient(180deg, #fbfdff 0%, #f5f9fd 100%);
  }

  .page-home .portal-modules-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-home .portal-top {
    border-radius: 14px;
  }

  .page-home .portal-topline {
    padding: 14px 16px;
  }

  .page-home .portal-slide__title {
    font-size: 1.32rem;
  }

  .page-home .portal-module-lead {
    grid-template-columns: 1fr;
  }

  .page-home .portal-slide__excerpt,
  .page-home .portal-module-lead__body p {
    font-size: 0.92rem;
  }
}

/* 四类页面统一微调：弱化头部装饰感，统一新闻标题层级与阅读密度 */
.header-bar.topbar {
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid #d2dfec;
  border-radius: 22px;
  box-shadow: 0 8px 20px rgba(9, 54, 99, 0.05);
}

.brand-block {
  gap: 12px;
}

.brand-mark {
  border-radius: 20px;
}

.brand-copy strong {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-tagline {
  font-size: 0.9rem;
  color: #71839a;
}

.nav-wrap.topbar-nav-cluster {
  gap: 14px;
}

.site-nav.topbar-nav-row {
  padding: 6px;
  border: 1px solid #d7e3ef;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.nav-menu {
  gap: 2px;
}

.nav-link {
  min-height: 44px;
  padding: 0 18px;
  color: #17324d;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.header-search.topbar-search {
  min-height: 48px;
  border-radius: 18px;
}

.header-search.topbar-search input {
  font-size: 1rem;
  font-weight: 500;
}

.header-search button,
.header-portal-link.topbar-link {
  font-size: 1rem;
  font-weight: 650;
}

.panel-shell,
.article-panel,
.sidebar-card,
.page-home .portal-side-card,
.page-home .portal-module-card {
  border-color: #d7e3ef;
  box-shadow: 0 8px 20px rgba(9, 54, 99, 0.045);
}

.page-intro.panel-shell {
  padding: 26px 28px;
}

.page-intro__title {
  font-size: clamp(1.88rem, 2.35vw, 2.28rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

.breadcrumb {
  font-size: 0.93rem;
  color: #6f8197;
}

.page-home .header-bar.topbar {
  border-color: #cedbeb;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(0, 70, 140, 0.055);
}

.page-home .portal-top {
  border-color: #d0ddea;
  box-shadow: 0 10px 24px rgba(8, 54, 99, 0.045);
}

.page-home .portal-topline {
  padding: 22px 24px 18px;
}

.page-home .portal-topline__body h1 {
  font-size: clamp(1.88rem, 2.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  color: #0f3662;
}

.page-home .portal-topline__meta {
  color: #6b7e96;
  font-size: 0.98rem;
}

.page-home .portal-headlines__list strong {
  color: #17324d;
  font-size: 0.96rem;
  font-weight: 620;
  line-height: 1.48;
}

.page-home .portal-headlines__list li:nth-child(5n + 1) strong {
  font-weight: 700;
}

.page-home .portal-slide__title {
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.32;
}

.page-home .portal-card-head h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.page-home .portal-module-lead__body h4 {
  color: #15304d;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.4;
}

.page-home .portal-module-lead__body p {
  color: #5c6f84;
  font-size: 0.84rem;
  line-height: 1.56;
}

.page-home .portal-side-card .news-plain-list strong,
.page-home .portal-module-card .news-plain-list strong,
.page-home .portal-brief .news-plain-list strong {
  color: #1c3650;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.52;
}

.page-home .portal-side-card .news-plain-list span,
.page-home .portal-module-card .news-plain-list span,
.page-home .portal-brief .news-plain-list span {
  color: #70829a;
  font-size: 0.81rem;
}

.page-list .list-entry,
.page-search .list-entry {
  gap: 16px;
  padding: 18px 0;
}

.page-list .list-entry__title,
.page-search .list-entry__title {
  color: #17324d;
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.42;
}

.page-list .list-entry__excerpt,
.page-search .list-entry__excerpt {
  color: #607286;
  font-size: 0.9rem;
  line-height: 1.68;
}

.page-list .list-entry__meta,
.page-search .list-entry__meta,
.page-detail .meta-row {
  color: #76869a;
  font-size: 0.91rem;
}

.sidebar-card__title {
  font-size: 1rem;
  font-weight: 700;
}

.sidebar-card .news-plain-list strong,
.rank-list strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a344e;
}

.page-detail .article-header__title {
  font-size: clamp(1.66rem, 2.18vw, 1.98rem);
  font-weight: 700;
  line-height: 1.34;
}

.page-detail .article-content {
  font-size: 1rem;
  line-height: 1.86;
}

.page-search .search-summary p,
.page-search .search-tips li {
  color: #607286;
  font-size: 0.92rem;
  line-height: 1.66;
}

.page-search .list-stream__list {
  counter-reset: search-result;
  padding-left: 18px;
}

.page-search .list-entry {
  counter-increment: search-result;
}

.page-search .list-entry__title {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  column-gap: 14px;
}

.page-search .list-entry__title::before {
  content: counter(search-result);
  flex: 0 0 auto;
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef4fb;
  color: #2f5f99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  margin-top: -1px;
  box-sizing: border-box;
}

.page-search .list-entry__title a {
  display: block;
  min-width: 0;
}

.page-list .list-stream,
.page-search .list-stream {
  padding-left: 24px;
  padding-right: 24px;
}

.page-detail .article-panel {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 960px) {
  .site-nav.topbar-nav-row {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-link {
    min-height: 42px;
    font-size: 1rem;
  }

  .page-home .portal-topline__body h1 {
    font-size: 1.68rem;
  }
}

/* 二次统一微调：首页头部与内容区的气质拉齐，四类页面标题粗细回到同一阅读系统 */
.page-home .site-header {
  padding-bottom: 8px;
}

.page-home .header-bar.topbar,
.page-list .header-bar.topbar,
.page-detail .header-bar.topbar,
.page-search .header-bar.topbar {
  padding: 11px 16px;
  border-radius: 20px;
  border-color: #d7e2ee;
  box-shadow: 0 7px 18px rgba(15, 52, 88, 0.045);
}

.page-home .site-nav.topbar-nav-row,
.page-list .site-nav.topbar-nav-row,
.page-detail .site-nav.topbar-nav-row,
.page-search .site-nav.topbar-nav-row {
  border-radius: 18px;
  border-color: #dbe5ef;
}

.page-home .nav-link,
.page-list .nav-link,
.page-detail .nav-link,
.page-search .nav-link {
  min-height: 42px;
  padding: 0 17px;
  font-size: 1rem;
  font-weight: 620;
}

.page-home .header-search.topbar-search,
.page-list .header-search.topbar-search,
.page-detail .header-search.topbar-search,
.page-search .header-search.topbar-search {
  min-height: 46px;
  border-radius: 17px;
}

.page-home .portal-top {
  border-radius: 20px;
  border-color: #d7e2ee;
  box-shadow: 0 8px 20px rgba(10, 56, 99, 0.04);
}

.page-home .portal-topline {
  padding: 18px 22px 16px;
  border-bottom: 1px solid #dbe4ee;
}

.page-home .portal-topline__body h1 {
  font-size: clamp(1.76rem, 2.2vw, 2.16rem);
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-home .portal-topline__meta,
.page-home .portal-slide__meta {
  font-size: 0.95rem;
}

.page-home .portal-headlines {
  padding: 18px 18px 20px;
}

.page-home .portal-headlines__list strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.page-home .portal-slider-box {
  gap: 10px;
  padding: 18px 16px 16px;
}

.page-home .portal-slide__title {
  font-size: 1.24rem;
  font-weight: 680;
  line-height: 1.36;
}

.page-home .portal-side-card,
.page-home .portal-module-card,
.page-list .panel-shell,
.page-search .panel-shell,
.page-detail .article-panel,
.page-list .sidebar-card,
.page-search .sidebar-card,
.page-detail .sidebar-card {
  border-radius: 16px;
}

.page-home .portal-card-head h3 {
  font-size: 1.02rem;
  font-weight: 700;
}

.page-home .portal-side-card .news-plain-list strong,
.page-home .portal-module-card .news-plain-list strong,
.page-home .portal-brief .news-plain-list strong {
  font-size: 0.92rem;
  font-weight: 580;
  line-height: 1.5;
}

.page-home .portal-module-lead__body h4 {
  font-size: 0.93rem;
  font-weight: 620;
  line-height: 1.42;
}

.page-home .portal-module-lead__body p {
  font-size: 0.83rem;
  line-height: 1.54;
}

.page-list .page-intro__title,
.page-search .page-intro__title {
  font-size: clamp(1.72rem, 2.15vw, 2.02rem);
  font-weight: 700;
}

.page-list .list-entry__title,
.page-search .list-entry__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.46;
  color: #17324d;
}

.page-list .list-entry__excerpt,
.page-search .list-entry__excerpt {
  font-size: 0.89rem;
  line-height: 1.64;
  color: #617387;
}

.page-list .list-entry__meta,
.page-search .list-entry__meta,
.page-detail .meta-row {
  font-size: 0.89rem;
  color: #74869b;
}

.page-list .sidebar-card__title,
.page-search .sidebar-card__title,
.page-detail .sidebar-card__title {
  font-size: 0.98rem;
  font-weight: 700;
}

.page-list .sidebar-card .news-plain-list strong,
.page-search .sidebar-card .news-plain-list strong,
.page-detail .sidebar-card .news-plain-list strong,
.page-list .rank-list strong,
.page-search .rank-list strong,
.page-detail .rank-list strong {
  font-size: 0.93rem;
  font-weight: 580;
  line-height: 1.5;
}

.page-detail .article-header__title {
  font-size: clamp(1.58rem, 2.05vw, 1.9rem);
  font-weight: 700;
  line-height: 1.38;
}

.page-detail .article-content {
  font-size: 1rem;
  line-height: 1.84;
}

.page-search .search-summary p,
.page-search .search-tips li,
.page-list .empty-state__text,
.page-search .empty-state__text,
.page-detail .empty-state__text {
  font-size: 0.9rem;
  line-height: 1.64;
  color: #647589;
}

@media (max-width: 960px) {
  .page-home .header-bar.topbar,
  .page-list .header-bar.topbar,
  .page-detail .header-bar.topbar,
  .page-search .header-bar.topbar {
    padding: 12px 14px;
  }

  .page-home .portal-topline__body h1 {
    font-size: 1.54rem;
  }

  .page-home .portal-slide__title {
    font-size: 1.16rem;
  }
}

/* 三次统一微调：弱化首页模块内描边框，让头部、首屏、列表页和正文页回到同一新闻壳层 */
.page-home .header-bar.topbar,
.page-list .header-bar.topbar,
.page-detail .header-bar.topbar,
.page-search .header-bar.topbar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 253, 0.95) 100%);
}

.page-home .site-nav.topbar-nav-row,
.page-list .site-nav.topbar-nav-row,
.page-detail .site-nav.topbar-nav-row,
.page-search .site-nav.topbar-nav-row {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.page-home .portal-top {
  border: 1px solid #d7e2ee;
  background: #ffffff;
}

.page-home .portal-topline__badge {
  width: 60px;
  min-height: 60px;
  padding: 9px 8px;
  border-radius: 18px;
  border-color: #9a2017;
  background: linear-gradient(180deg, #ba271b 0%, #97140d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 0.94rem;
}

.page-home .portal-topline__body {
  gap: 6px;
}

.page-home .portal-topline__body h1 {
  color: #14365a;
  font-size: clamp(1.68rem, 2.08vw, 2.02rem);
  font-weight: 660;
}

.page-home .portal-topline__meta a {
  color: #7f1710;
  font-weight: 650;
}

.page-home .portal-headlines__list strong {
  color: #183550;
  font-size: 0.93rem;
  font-weight: 580;
}

.page-home .portal-headlines__list li:nth-child(5n + 1) strong {
  font-weight: 680;
}

.page-home .portal-slide__title {
  color: #13385f;
  font-size: 1.18rem;
  font-weight: 660;
}

.page-home .portal-side-card,
.page-home .portal-module-card,
.page-home .portal-brief {
  gap: 10px;
  padding: 16px 18px 18px;
  border: 1px solid #d7e2ee;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(12, 52, 92, 0.035);
}

.page-home .portal-side-card .portal-card-head,
.page-home .portal-module-card .portal-card-head,
.page-home .portal-brief .portal-card-head {
  min-height: auto;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-home .portal-card-head h3,
.page-home .portal-brief .portal-card-head h3 {
  color: #17324d;
  font-size: 0.98rem;
  font-weight: 700;
}

.page-home .portal-card-head .section-link,
.page-home .portal-brief .section-link {
  color: #4d6f90;
  font-size: 0.88rem;
  font-weight: 600;
}

.page-home .portal-side-card .news-plain-list,
.page-home .portal-module-card .news-plain-list,
.page-home .portal-brief .news-plain-list {
  padding-inline: 0;
  gap: 0;
}

.page-home .portal-side-card .news-plain-list li,
.page-home .portal-module-card .news-plain-list li,
.page-home .portal-brief .news-plain-list li {
  padding: 7px 0;
}

.page-home .portal-side-card .news-plain-list strong,
.page-home .portal-module-card .news-plain-list strong,
.page-home .portal-brief .news-plain-list strong {
  color: #27425d;
  font-size: 0.885rem;
  font-weight: 520;
  line-height: 1.36;
  letter-spacing: 0;
  font-family: inherit;
}

.page-home .portal-module-lead {
  gap: 14px;
  padding: 2px 0 4px;
}

.page-home .portal-module-lead__body h4 {
  color: #213c57;
  font-size: 0.9rem;
  font-weight: 560;
}

.page-home .portal-module-lead__body p {
  color: #617387;
  font-size: 0.82rem;
}

.page-list .panel-shell,
.page-search .panel-shell,
.page-detail .article-panel,
.page-list .sidebar-card,
.page-search .sidebar-card,
.page-detail .sidebar-card {
  border-color: #d7e2ee;
  box-shadow: 0 6px 16px rgba(12, 52, 92, 0.03);
}

.page-list .page-intro__title,
.page-search .page-intro__title,
.page-static .page-intro__title {
  color: #17324d;
  font-size: clamp(1.64rem, 2.02vw, 1.88rem);
}

.page-list .list-entry__title,
.page-search .list-entry__title {
  font-size: 0.98rem;
  font-weight: 580;
  line-height: 1.48;
}

.page-list .list-entry__excerpt,
.page-search .list-entry__excerpt {
  font-size: 0.88rem;
  line-height: 1.62;
}

.page-list .sidebar-card__title,
.page-search .sidebar-card__title,
.page-detail .sidebar-card__title {
  color: #17324d;
  font-size: 0.96rem;
}

.page-list .sidebar-card .news-plain-list strong,
.page-search .sidebar-card .news-plain-list strong,
.page-detail .sidebar-card .news-plain-list strong,
.page-list .rank-list strong,
.page-search .rank-list strong,
.page-detail .rank-list strong {
  font-size: 0.91rem;
  font-weight: 560;
}

.page-detail .article-header__title {
  color: #17324d;
  font-size: clamp(1.54rem, 1.95vw, 1.82rem);
  font-weight: 690;
}

.page-detail .article-content {
  color: #33475c;
}

.page-search .search-summary strong,
.page-list .empty-state__title,
.page-search .empty-state__title,
.page-detail .empty-state__title {
  color: #17324d;
}

@media (max-width: 960px) {
  .page-home .portal-topline__badge {
    width: auto;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 14px;
  }

  .page-home .portal-topline__body h1 {
    font-size: 1.46rem;
  }

  .page-home .portal-side-card,
  .page-home .portal-module-card,
  .page-home .portal-brief {
    padding: 14px 16px 16px;
  }
}

/* 首页继续微调：拉开头部与首屏距离，撤掉首屏大框内部新增底色 */
.page-home .site-header {
  padding-bottom: 18px;
}

.page-home .portal-top {
  background: transparent;
  box-shadow: 0 7px 18px rgba(10, 56, 99, 0.03);
}

.page-home .portal-main,
.page-home .portal-main-grid,
.page-home .portal-side {
  background: transparent;
}

.page-home .portal-headlines,
.page-home .portal-slider-box {
  background: transparent;
}

@media (max-width: 960px) {
  .page-home .site-header {
    padding-bottom: 14px;
  }
}

/* 首页首屏回收：左侧恢复原先设计，标题再收小，去掉中间横线 */
.page-home .portal-top {
  border-top: 0;
}

.page-home .portal-topline {
  padding: 18px 20px;
  border-bottom: 0;
}

.page-home .portal-topline__badge {
  width: 64px;
  min-height: 64px;
  padding: 10px 8px;
  font-size: 0.96rem;
}

.page-home .portal-topline__body {
  gap: 8px;
}

.page-home .portal-topline__body h1 {
  color: #0f3662;
  font-size: clamp(1.46rem, 1.82vw, 1.76rem);
  font-weight: 650;
}

.page-home .portal-headlines {
  padding: 20px;
  background: transparent;
}

.page-home .portal-headlines__list strong {
  color: #163451;
  font-size: 0.92rem;
  font-weight: 580;
}

.page-home .portal-slider-box {
  gap: 12px;
  padding: 20px 16px 18px;
  border-left: 1px solid #d4e0ec;
  background: transparent;
}

@media (max-width: 960px) {
  .page-home .portal-topline {
    padding: 14px 16px;
  }

  .page-home .portal-topline__body h1 {
    font-size: 1.4rem;
  }

}

/* 首页首屏最终回调：左侧恢复原样，只收小头条与幻灯片标题，移除中部分隔线 */
.page-home .portal-topline__body h1 {
  color: #0f3662;
  font-size: clamp(1.26rem, 1.58vw, 1.5rem);
  font-weight: 640;
  line-height: 1.16;
}

.page-home .portal-headlines {
  padding: 20px;
}

.page-home .portal-slider-box {
  padding: 20px 16px 18px;
  border-top: 0;
}


.page-home .portal-brief .portal-card-head {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #d63b30;
  border-radius: 10px;
  border-bottom-color: #d63b30;
  background: linear-gradient(180deg, #cf271c 0%, #a7170f 100%);
  box-shadow: none;
}

.page-home .portal-brief .portal-card-head h3,
.page-home .portal-brief .section-link {
  color: #ffffff;
}

.page-home .portal-brief .news-plain-list {
  padding-inline: 4px;
}

.page-home .portal-brief .news-plain-list li {
  padding: 6px 0;
  border-bottom: 0;
}

@media (max-width: 960px) {
  .page-home .portal-topline__body h1 {
    font-size: 1.28rem;
  }

  .page-home .portal-slide__title {
    font-size: 0.98rem;
  }
}

/* 全站最终统一：导航下方间距与外边距一致，今日数据标题恢复红色 */
.site-header {
  position: relative;
  top: auto;
  padding-bottom: 18px;
}

.page-home .site-header,
.page-list .site-header,
.page-detail .site-header,
.page-search .site-header,
.page-page .site-header {
  padding-bottom: 18px;
}

@media (max-width: 960px) {
  .site-header,
  .page-home .site-header,
  .page-list .site-header,
  .page-detail .site-header,
  .page-search .site-header,
  .page-page .site-header {
    padding-bottom: 14px;
  }
}

/* 首页首屏终态修正：保留预览版固定布局，移除内部多余分隔线 */
.page-home .portal-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.page-home .portal-main {
  grid-column: 1 / span 2;
}

.page-home .portal-topline {
  border-bottom: 0 !important;
}

.page-home .portal-main-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: transparent;
}

.page-home .portal-slider-box {
  border-left: 0 !important;
  border-top: 0 !important;
  background: transparent;
}

.page-home .portal-side {
  border-left: 0 !important;
  border-top: 0 !important;
  background: transparent;
}

/* Homepage final cleanup: remove container-level separator bands between major blocks. */
.page-home .site-header {
  padding-bottom: 16px !important;
}

.page-home .header-bar.topbar {
  box-shadow: none !important;
}

.page-home .portal-page-main,
.page-home .portal-top,
.page-home .portal-main-grid,
.page-home .portal-side {
  background: transparent !important;
  box-shadow: none !important;
}

.page-home .portal-top {
  border: 0 !important;
  border-radius: 0 !important;
}

.page-home .portal-topline,
.page-home .portal-slider-box,
.page-home .portal-side {
  border: 0 !important;
}

@media (max-width: 960px) {
  .nav-wrap {
    display: none !important;
    width: 100%;
  }

  .nav-wrap.is-open {
    display: flex !important;
  }

  .page-home .site-header {
    padding-bottom: 14px !important;
  }

  .page-home .portal-top {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .page-home .portal-main {
    grid-column: auto !important;
  }

  .page-home .portal-topline {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 14px 16px !important;
  }

  .page-home .portal-topline__badge {
    width: auto !important;
    min-height: 40px !important;
    padding: 8px 14px !important;
    border-radius: 14px !important;
  }

  .page-home .portal-main-grid,
  .page-home .portal-modules-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .page-home .portal-column {
    gap: 12px !important;
  }

  .page-home .portal-headlines,
  .page-home .portal-slider-box,
  .page-home .portal-side {
    padding: 16px !important;
  }

  .page-home .portal-side {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0 !important;
    justify-self: stretch !important;
  }

  .page-home .portal-side-card {
    width: 100% !important;
    justify-self: stretch !important;
    box-sizing: border-box;
  }

  .page-home .portal-module-lead {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .page-home .portal-module-lead__thumb {
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .page-home .portal-module-lead__thumb {
    max-width: 100%;
  }
}

.page-detail .article-content,
.page-page .article-content {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-detail .article-content table,
.page-page .article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Homepage final cleanup: keep typography and card surfaces consistent
   without stacking multiple homepage-specific art-direction patches. */
.page-home .portal-headlines__list {
  padding-inline-start: 8px;
}

.page-home .portal-side-card .news-plain-list,
.page-home .portal-module-card .news-plain-list,
.page-home .portal-brief .news-plain-list {
  padding-inline-start: 8px;
}

.page-home .portal-headlines__list strong,
.page-home .portal-slide__title,
.page-home .portal-side-card .news-plain-list strong,
.page-home .portal-module-card .news-plain-list strong,
.page-home .portal-brief .news-plain-list strong {
  color: #17324d;
  font-size: 1rem;
  font-family: "Noto Sans SC", "Source Han Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "WenQuanYi Micro Hei", sans-serif;
  font-weight: 520;
  line-height: 1.44;
}

.page-home .portal-headlines .portal-headlines__list strong {
  font-size: 1rem;
}

.page-home .portal-headlines__list a,
.page-home .portal-side-card .news-plain-list a,
.page-home .portal-module-card .news-plain-list a,
.page-home .portal-brief .news-plain-list a {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.page-home .portal-headlines__list a:hover,
.page-home .portal-headlines__list a:hover strong,
.page-home .portal-side-card .news-plain-list a:hover,
.page-home .portal-side-card .news-plain-list a:hover strong,
.page-home .portal-module-card .news-plain-list a:hover,
.page-home .portal-module-card .news-plain-list a:hover strong,
.page-home .portal-brief .news-plain-list a:hover,
.page-home .portal-brief .news-plain-list a:hover strong {
  text-decoration-color: currentColor;
}

.page-home .portal-headlines__list li:nth-child(5n + 1) a,
.page-home .portal-headlines__list li:nth-child(5n + 1) strong {
  color: #9a1c14;
  font-weight: 650;
}

.page-home .portal-main,
.page-home .portal-topline,
.page-home .portal-side-card,
.page-home .portal-module-card,
.page-home .portal-brief {
  background: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none;
  filter: none;
}

.page-home .portal-main {
  border-color: #e7edf4;
}

.page-home .portal-topline {
  border-bottom: 1px solid #e4edf7 !important;
}

.page-home .portal-side-card,
.page-home .portal-module-card {
  border-color: #e8eef5;
}

.page-home .portal-brief {
  border-color: #ecd6d4;
}

.page-home .portal-topline__badge {
  border-color: #cb382d !important;
  background: linear-gradient(180deg, #e2493b 0%, #d83f31 100%) !important;
  background-image: linear-gradient(180deg, #e2493b 0%, #d83f31 100%) !important;
  box-shadow: none !important;
}

.page-home .portal-side-card .portal-card-head,
.page-home .portal-module-card .portal-card-head,
.page-home .portal-module-lead,
.page-home .portal-module-lead__thumb,
.page-home .portal-module-lead__thumb img {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.page-home .portal-brief .portal-card-head {
  border-color: #cb382d !important;
  background: linear-gradient(180deg, #e2493b 0%, #d83f31 100%) !important;
  background-image: linear-gradient(180deg, #e2493b 0%, #d83f31 100%) !important;
  box-shadow: none !important;
}

.page-home .portal-brief .portal-card-head h3,
.page-home .portal-brief .section-link {
  color: #ffffff !important;
}

.page-home .header-search.topbar-search,
.page-list .header-search.topbar-search,
.page-detail .header-search.topbar-search,
.page-search .header-search.topbar-search {
  padding: 0 14px 0 58px !important;
  gap: 10px;
  background: #ffffff;
  border-color: #e6ebf1;
}

.page-home .header-search.topbar-search::before,
.page-list .header-search.topbar-search::before,
.page-detail .header-search.topbar-search::before,
.page-search .header-search.topbar-search::before {
  left: 21px;
  width: 12px;
  height: 12px;
}

.page-home .header-search.topbar-search::after,
.page-list .header-search.topbar-search::after,
.page-detail .header-search.topbar-search::after,
.page-search .header-search.topbar-search::after {
  left: 31px;
  width: 7px;
}

@media (min-width: 961px) {
  .page-home .site-header,
  .page-list .site-header,
  .page-detail .site-header,
  .page-search .site-header,
  .page-page .site-header {
    padding-bottom: 22px !important;
  }

  .page-home .header-bar.topbar,
  .page-list .header-bar.topbar,
  .page-detail .header-bar.topbar,
  .page-search .header-bar.topbar,
  .page-page .header-bar.topbar {
    gap: 22px;
    padding: 16px 18px;
    border-radius: 26px;
    border-color: #e5ebf2;
    background: #ffffff;
    box-shadow: none;
  }

  .page-home .nav-wrap.topbar-nav-cluster,
  .page-list .nav-wrap.topbar-nav-cluster,
  .page-detail .nav-wrap.topbar-nav-cluster,
  .page-search .nav-wrap.topbar-nav-cluster,
  .page-page .nav-wrap.topbar-nav-cluster {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
  }

  .page-home .brand-block,
  .page-list .brand-block,
  .page-detail .brand-block,
  .page-search .brand-block,
  .page-page .brand-block {
    gap: 16px;
  }

  .page-home .brand-mark,
  .page-list .brand-mark,
  .page-detail .brand-mark,
  .page-search .brand-mark,
  .page-page .brand-mark {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(15, 76, 129, 0.16);
  }

  .page-home .brand-copy strong,
  .page-list .brand-copy strong,
  .page-detail .brand-copy strong,
  .page-search .brand-copy strong,
  .page-page .brand-copy strong {
    font-size: 1.18rem;
  }

  .page-home .brand-copy small,
  .page-list .brand-copy small,
  .page-detail .brand-copy small,
  .page-search .brand-copy small,
  .page-page .brand-copy small {
    font-size: 0.92rem;
  }

  .page-home .site-nav.topbar-nav-row,
  .page-list .site-nav.topbar-nav-row,
  .page-detail .site-nav.topbar-nav-row,
  .page-search .site-nav.topbar-nav-row,
  .page-page .site-nav.topbar-nav-row {
    padding: 8px;
    border-radius: 22px;
    min-height: 66px;
    width: 100%;
    border-color: #e6ebf1;
    background: #ffffff;
    box-shadow: none;
  }

  .page-home .nav-menu,
  .page-list .nav-menu,
  .page-detail .nav-menu,
  .page-search .nav-menu,
  .page-page .nav-menu {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
  }

  .page-home .nav-item,
  .page-list .nav-item,
  .page-detail .nav-item,
  .page-search .nav-item,
  .page-page .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 0;
  }

  .page-home .nav-link,
  .page-list .nav-link,
  .page-detail .nav-link,
  .page-search .nav-link,
  .page-page .nav-link {
    white-space: nowrap;
    word-break: keep-all;
    min-height: 50px;
    padding: 0 12px;
    border-radius: 17px;
    font-size: 1.06rem;
    font-weight: 640;
  }

  .page-home .submenu-toggle,
  .page-list .submenu-toggle,
  .page-detail .submenu-toggle,
  .page-search .submenu-toggle,
  .page-page .submenu-toggle {
    width: 32px;
    height: 32px;
    margin-left: -2px;
  }

  .page-home .header-actions,
  .page-list .header-actions,
  .page-detail .header-actions,
  .page-search .header-actions,
  .page-page .header-actions {
    gap: 14px;
  }

  .page-home .header-search.topbar-search,
  .page-list .header-search.topbar-search,
  .page-detail .header-search.topbar-search,
  .page-search .header-search.topbar-search,
  .page-page .header-search.topbar-search {
    min-height: 52px;
    padding: 0 16px 0 60px !important;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: none;
  }

  .page-home .header-search.topbar-search input,
  .page-list .header-search.topbar-search input,
  .page-detail .header-search.topbar-search input,
  .page-search .header-search.topbar-search input,
  .page-page .header-search.topbar-search input {
    width: 180px;
    font-size: 1rem;
  }

  .page-home .header-search.topbar-search::before,
  .page-list .header-search.topbar-search::before,
  .page-detail .header-search.topbar-search::before,
  .page-search .header-search.topbar-search::before,
  .page-page .header-search.topbar-search::before {
    left: 22px;
  }

  .page-home .header-search.topbar-search::after,
  .page-list .header-search.topbar-search::after,
  .page-detail .header-search.topbar-search::after,
  .page-search .header-search.topbar-search::after,
  .page-page .header-search.topbar-search::after {
    left: 33px;
  }

  .page-home .header-portal-link.topbar-link,
  .page-list .header-portal-link.topbar-link,
  .page-detail .header-portal-link.topbar-link,
  .page-search .header-portal-link.topbar-link,
  .page-page .header-portal-link.topbar-link {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 680;
  }
}

/* Final homepage surface lock: align homepage with list/detail on a light gray-white page base. */
.page-home {
  background: #f6f8fb !important;
}

.page-home .header-bar.topbar,
.page-home .portal-main,
.page-home .portal-topline,
.page-home .site-nav.topbar-nav-row,
.page-home .header-search.topbar-search {
  background: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
}

.page-home .portal-page-main,
.page-home .portal-top {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Compact list-page channel head: keep semantic h1, but remove the oversized repeated title from view. */
.page-list .page-intro.panel-shell {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 24px;
  gap: 0;
}

.page-list .page-intro__title {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-list .breadcrumb {
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7c90;
}

.page-list .breadcrumb a {
  color: #165dff;
}
