:root {
  --ink: #141b2d;
  --muted: #667085;
  --line: #e3d8c6;
  --paper: #f5f0e8;
  --panel: #ffffff;
  --brand: #0f5f56;
  --brand-dark: #082f2c;
  --accent: #c98d2f;
  --accent-soft: #f8ead1;
  --blue: #2563eb;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(20, 27, 45, .13);
  --soft-shadow: 0 16px 44px rgba(20, 27, 45, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbf8f2 0, var(--paper) 520px, #f8f6f1 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 340px) auto minmax(220px, 340px);
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 0 32px;
  background: rgba(8, 22, 31, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.topbar nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 8px;
  overflow: visible;
}

.topbar nav a,
.admin-link {
  padding: 9px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .66);
  white-space: nowrap;
  font-size: 14px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.topbar nav a:hover,
.topbar nav a.is-active,
.admin-link {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.topbar nav a.nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-left: auto;
  padding: 0 25px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f1bd63, var(--accent));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(201, 141, 47, .25);
  font-weight: 900;
}

.topbar nav a.nav-cta:hover {
  color: #0c1a1c;
  background: linear-gradient(180deg, #ffd17c, #d99834);
  transform: translateY(-1px);
}

.topbar-support {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f1bd63, var(--accent));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(201, 141, 47, .25);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: background .18s ease, transform .18s ease;
}

.topbar-support:hover {
  color: #0c1a1c;
  background: linear-gradient(180deg, #ffd17c, #d99834);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 38px;
  padding: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}

.mobile-menu-toggle span + span {
  margin-left: 0;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translate(-50%, -7px);
}

.mobile-menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translate(-50%, 5px);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.floating-support {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 30;
  display: grid;
  width: 104px;
  overflow: hidden;
  background: linear-gradient(180deg, #123f3b, #08161f);
  border: 1px solid rgba(255, 255, 255, .12);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  box-shadow: 0 20px 48px rgba(8, 22, 31, .32);
  transform: translateY(-50%);
}

.support-item {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 92px;
  padding: 14px 10px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  text-align: center;
}

.support-item:last-child {
  border-bottom: 0;
}

.support-item:hover {
  background: rgba(255, 255, 255, .1);
}

.support-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f3c46d, var(--accent));
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.support-item b {
  font-size: 15px;
  line-height: 1.25;
}

.mobile-support-bar {
  display: none;
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}

.support-modal.is-open {
  display: grid;
}

.support-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 31, .58);
  backdrop-filter: blur(6px);
}

.support-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 34px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(23, 32, 51, .28);
}

.support-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  color: var(--muted);
  background: #f2f5f7;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.support-qr {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  grid-auto-rows: 34px;
  gap: 8px;
  justify-content: center;
  width: 158px;
  height: 158px;
  margin: 8px auto 24px;
  padding: 18px;
  background:
    linear-gradient(45deg, transparent 48%, rgba(15, 118, 110, .18) 49% 51%, transparent 52%),
    #f7f4ef;
  border: 10px solid #fff;
  box-shadow: inset 0 0 0 1px var(--line), 0 16px 40px rgba(15, 78, 74, .12);
}

.support-qr span {
  background: var(--brand-dark);
}

.support-qr span:nth-child(2),
.support-qr span:nth-child(5) {
  background: var(--accent);
}

.support-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.35;
}

.support-dialog p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.wechat-dialog {
  width: min(420px, 100%);
  padding: 34px 26px 30px;
}

.wechat-dialog h2 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0;
}

.wechat-dialog p {
  margin-top: 12px;
  color: #667085;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.wechat-mobile-copy {
  display: none;
}

.wechat-mobile-title {
  display: none;
}

.wechat-qr-image {
  display: block;
  width: 238px;
  height: 238px;
  margin: 28px auto 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 16px 36px rgba(20, 27, 45, .1);
}

.wechat-pc-note {
  margin-top: 24px;
  color: #667085;
  font-size: 17px;
  font-weight: 900;
}

.wechat-add,
.wechat-back {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 28px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 900;
}

.wechat-add {
  color: #0c1a1c;
  background: linear-gradient(180deg, #f1bd63, var(--accent));
  box-shadow: 0 18px 36px rgba(201, 141, 47, .25);
}

.wechat-back {
  margin-top: 14px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
}

.phone-badge {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f3c46d, var(--accent));
  border-radius: 999px;
  font-size: 28px;
  font-weight: 900;
}

.phone-number {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 25px;
  letter-spacing: 0;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 28px;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 7vh 5vw 12vh;
  background:
    linear-gradient(135deg, rgba(8, 47, 44, .98), rgba(10, 25, 39, .96) 62%, rgba(48, 55, 71, .92)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 34px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy p,
.section-head p,
.admin-title p {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.45;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy span {
  display: block;
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.8;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-size: 13px;
}

.hero-actions a,
.lead-panel button,
.admin-main button,
.admin-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f3c46d, var(--accent));
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(201, 141, 47, .24);
}

.hero-actions a + a {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: none;
}

.network-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(15, 118, 110, .18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .52)),
    repeating-linear-gradient(135deg, rgba(15, 118, 110, .08) 0 1px, transparent 1px 26px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.local-hero {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  min-height: 650px;
  text-align: center;
}

.local-hero .hero-copy h1,
.local-hero .hero-copy span {
  margin-left: auto;
  margin-right: auto;
}

.local-hero .hero-copy h1 {
  max-width: 1180px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  white-space: nowrap;
}

.province-hero .hero-copy h1 {
  max-width: 1180px;
  font-size: clamp(42px, 5vw, 64px);
  white-space: nowrap;
}

.company-hero .hero-copy h1 {
  max-width: 1180px;
  font-size: clamp(40px, 5vw, 68px);
  white-space: nowrap;
}

.local-hero .trust-row,
.local-hero .hero-actions {
  justify-content: center;
}

.local-panel {
  min-height: 520px;
  padding: 40px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(19, 78, 74, .94), rgba(15, 118, 110, .84)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 28px);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: var(--shadow);
}

.local-panel::before {
  content: "LOCAL IP SERVICE";
  display: block;
  margin-bottom: 72px;
  color: rgba(255, 255, 255, .3);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.local-panel > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: var(--brand-dark);
  background: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.local-panel h2 {
  margin: 28px 0 16px;
  font-size: 38px;
  line-height: 1.15;
}

.local-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.85;
}

.local-panel dl {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
}

.local-panel dl div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.local-panel dt,
.local-panel dd {
  margin: 0;
}

.local-panel dt {
  color: rgba(255, 255, 255, .58);
}

.local-panel dd {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.network-panel::before,
.network-panel::after {
  content: "";
  position: absolute;
  inset: 72px;
  border: 1px dashed rgba(15, 118, 110, .28);
  transform: rotate(8deg);
}

.network-panel::after {
  inset: 124px;
  transform: rotate(-12deg);
}

.core-node,
.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(15, 78, 74, .16);
}

.core-node {
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  color: #fff;
  background: var(--brand-dark);
  border: 0;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 900;
}

.core-node small,
.orbit-node small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: inherit;
  opacity: .72;
}

.orbit-node {
  width: 136px;
  min-height: 82px;
  padding: 12px;
}

.node-1 { left: 8%; top: 12%; }
.node-2 { right: 10%; top: 13%; }
.node-3 { left: 4%; top: 46%; }
.node-4 { right: 6%; top: 47%; }
.node-5 { left: 16%; bottom: 10%; }
.node-6 { right: 18%; bottom: 9%; }

.service-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: -58px max(5vw, calc((100vw - 1180px) / 2)) 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.service-band div {
  min-height: 152px;
  padding: 26px;
  background: rgba(255, 252, 246, .96);
  border: 1px solid rgba(227, 216, 198, .9);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-band div:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 141, 47, .52);
  box-shadow: 0 22px 54px rgba(20, 27, 45, .13);
}

.service-band b,
.lead-panel h2,
.section-head h2,
.article-detail h1 {
  display: block;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.service-band span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.metric-band div {
  color: var(--ink);
}

.metric-band div::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--accent);
  border-radius: 999px;
}

.metric-band b {
  color: var(--ink);
  font-size: 27px;
}

.metric-band span {
  color: var(--muted);
}

.portal-topbar {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(20, 27, 45, .08);
  box-shadow: 0 12px 32px rgba(20, 27, 45, .06);
}

.portal-topbar .brand {
  color: #10223d;
}

.portal-topbar nav a,
.portal-topbar .admin-link {
  color: #526071;
}

.portal-topbar nav a:hover,
.portal-topbar nav a.is-active,
.portal-topbar .admin-link {
  color: #0f4f59;
  background: #eef5f3;
}

.portal-topbar .mobile-menu-toggle {
  background: #10223d;
  border-color: #10223d;
}

.portal-home {
  background:
    linear-gradient(180deg, #f8faf8 0, #f3f1ea 720px, #faf8f2 100%);
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: 34px;
  align-items: stretch;
  min-height: calc(100vh - 76px);
  padding: 72px max(5vw, calc((100vw - 1220px) / 2)) 82px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .94) 0 50%, rgba(236, 244, 240, .86) 50% 100%),
    repeating-linear-gradient(90deg, rgba(15, 95, 86, .07) 0 1px, transparent 1px 88px);
  border-bottom: 1px solid rgba(20, 27, 45, .08);
}

.portal-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.portal-hero__copy p {
  margin: 0 0 16px;
  color: #b7791f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.portal-hero__copy h1 {
  max-width: 840px;
  margin: 0;
  color: #10223d;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.04;
}

.portal-hero__copy > span {
  display: block;
  max-width: 660px;
  margin-top: 24px;
  color: #53606d;
  font-size: 20px;
  line-height: 1.8;
}

.portal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.portal-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: #fff;
  background: #0f4f59;
  border: 1px solid #0f4f59;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(15, 79, 89, .18);
}

.portal-hero__actions a + a {
  color: #10223d;
  background: #fff;
  border-color: rgba(16, 34, 61, .16);
  box-shadow: none;
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 46px;
}

.portal-stats strong {
  min-height: 92px;
  padding: 18px;
  color: #10223d;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 34, 61, .1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 27, 45, .07);
}

.portal-stats em {
  display: block;
  margin-bottom: 8px;
  color: #0f5f56;
  font-size: 26px;
  font-style: normal;
}

.portal-briefing {
  align-self: center;
  min-width: 0;
  padding: 26px;
  background: #10223d;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 26px 64px rgba(16, 34, 61, .2);
}

.portal-briefing__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.portal-briefing__head span {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.portal-briefing__head b {
  color: #ffe1a4;
  font-size: 13px;
}

.portal-news-row {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.portal-news-row:last-child {
  border-bottom: 0;
}

.portal-news-row span {
  color: #f1bd63;
  font-size: 13px;
  font-weight: 900;
}

.portal-news-row strong {
  font-size: 18px;
  line-height: 1.45;
}

.portal-news-row time,
.portal-empty {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.portal-news-section,
.portal-content-matrix-section,
.portal-channel-section,
.portal-trade-section,
.portal-service-section,
.portal-platform-section,
.portal-capability-section,
.portal-authority-section,
.portal-ai-section {
  padding: 94px max(5vw, calc((100vw - 1220px) / 2)) 0;
}

.portal-platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 22px;
  align-items: stretch;
}

.portal-platform-copy {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: 38px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(16, 34, 61, .98), rgba(15, 95, 86, .94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 28px);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(16, 34, 61, .18);
}

.portal-platform-copy p,
.portal-capability-grid article span {
  margin: 0 0 16px;
  color: #f1bd63;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.portal-platform-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
}

.portal-platform-copy span {
  display: block;
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.85;
}

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

.portal-platform-metrics article,
.portal-capability-grid article,
.portal-ai-grid article {
  background: #fff;
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.portal-platform-metrics article {
  display: grid;
  align-content: center;
  min-height: 172px;
  padding: 28px;
}

.portal-platform-metrics strong {
  color: #10223d;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.portal-platform-metrics span {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

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

.portal-capability-grid article {
  min-height: 300px;
  padding: 28px;
}

.portal-capability-grid h3,
.portal-ai-grid h3 {
  margin: 0 0 14px;
  color: #10223d;
  font-size: 24px;
  line-height: 1.28;
}

.portal-capability-grid p,
.portal-ai-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.portal-ai-section {
  padding-bottom: 0;
}

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

.portal-ai-grid article {
  min-height: 250px;
  padding: 26px;
  background:
    linear-gradient(180deg, #fff, #f8faf8);
}

.portal-ai-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  border-radius: 999px;
}

.portal-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 22px;
}

.portal-lead-card {
  display: grid;
  grid-template-columns: minmax(240px, .82fr) minmax(0, 1fr);
  min-height: 360px;
  background: #fff;
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.portal-lead-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.portal-lead-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 34px;
}

.portal-lead-card span,
.portal-service-grid article span {
  color: #b7791f;
  font-size: 13px;
  font-weight: 900;
}

.portal-lead-card h2 {
  margin: 14px 0 14px;
  color: #10223d;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}

.portal-lead-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.portal-digest {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background: #fdfbf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.portal-digest h3 {
  margin: 0 0 8px;
  color: #10223d;
  font-size: 24px;
}

.portal-digest a {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid rgba(20, 27, 45, .1);
}

.portal-digest b {
  color: #10223d;
  font-size: 18px;
}

.portal-digest span {
  color: var(--muted);
  line-height: 1.6;
}

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

.portal-matrix-block {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.portal-matrix-block:last-child {
  grid-column: 1 / -1;
}

.portal-matrix-block__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 20px;
  background:
    linear-gradient(180deg, #fffdf8, #f7fbf8);
  border-bottom: 1px solid rgba(20, 27, 45, .08);
}

.portal-matrix-block__head h3 {
  margin: 0;
  color: #10223d;
  font-size: 25px;
  line-height: 1.25;
}

.portal-matrix-block__head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.portal-matrix-block__head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  color: #0f5f56;
  background: #eef7f4;
  border-radius: 8px;
  font-weight: 900;
}

.portal-matrix-list {
  display: grid;
}

.portal-matrix-article {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 92px;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 14px 26px;
  border-bottom: 1px solid rgba(20, 27, 45, .07);
}

.portal-matrix-article:last-child {
  border-bottom: 0;
}

.portal-matrix-article span {
  color: #b7791f;
  font-size: 13px;
  font-weight: 900;
}

.portal-matrix-article strong {
  min-width: 0;
  color: #10223d;
  font-size: 17px;
  line-height: 1.42;
}

.portal-matrix-article time {
  color: var(--muted);
  font-size: 13px;
}

.portal-matrix-article time {
  text-align: right;
}

.portal-matrix-empty {
  margin: 0;
  padding: 20px 26px;
  color: var(--muted);
}

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

.portal-channel-card,
.portal-service-grid article {
  min-height: 190px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.portal-channel-card:hover,
.portal-service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 95, 86, .32);
  box-shadow: 0 22px 54px rgba(20, 27, 45, .12);
}

.portal-channel-card b,
.portal-service-grid h3 {
  display: block;
  margin: 0 0 14px;
  color: #10223d;
  font-size: 24px;
  line-height: 1.25;
}

.portal-channel-card span,
.portal-service-grid p {
  display: block;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.portal-authority-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 26px;
  background:
    linear-gradient(180deg, #fff, #f9faf7);
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.portal-authority-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 95, 86, .32);
  box-shadow: 0 22px 54px rgba(20, 27, 45, .12);
}

.portal-authority-card span {
  color: #b7791f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portal-authority-card b {
  color: #10223d;
  font-size: 25px;
  line-height: 1.25;
}

.portal-authority-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.portal-service-grid article {
  display: flex;
  flex-direction: column;
}

.portal-service-grid h3 {
  margin-top: 14px;
}

.portal-service-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 40px;
  margin-top: auto;
  padding: 0 16px;
  color: #0f4f59;
  background: #eef5f3;
  border-radius: 8px;
  font-weight: 900;
}

.portal-trade-layout {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.portal-trade-intro {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(16, 34, 61, .98), rgba(15, 95, 86, .94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 28px);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(16, 34, 61, .18);
}

.portal-trade-intro span,
.portal-trade-grid article span {
  color: #f1bd63;
  font-size: 13px;
  font-weight: 900;
}

.portal-trade-intro h3 {
  margin: 22px 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.24;
}

.portal-trade-intro p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.85;
}

.portal-trade-intro a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f1bd63, var(--accent));
  border-radius: 8px;
  font-weight: 900;
}

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

.portal-trade-grid article {
  min-height: 202px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.portal-trade-grid h3 {
  margin: 12px 0 12px;
  color: #10223d;
  font-size: 23px;
  line-height: 1.3;
}

.portal-trade-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.portal-city-card {
  min-height: 138px;
}

.portal-column-page {
  background:
    linear-gradient(180deg, #f8faf8 0, #f3f1ea 520px, #faf8f2 100%);
}

.portal-column-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: end;
  padding: 86px max(5vw, calc((100vw - 1220px) / 2)) 72px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .96) 0 58%, rgba(236, 244, 240, .88) 58% 100%),
    repeating-linear-gradient(90deg, rgba(15, 95, 86, .06) 0 1px, transparent 1px 88px);
  border-bottom: 1px solid rgba(20, 27, 45, .08);
}

.portal-column-hero p {
  margin: 0 0 16px;
  color: #b7791f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.portal-column-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #10223d;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.05;
}

.portal-column-hero span {
  display: block;
  max-width: 780px;
  margin-top: 22px;
  color: #53606d;
  font-size: 19px;
  line-height: 1.85;
}

.portal-column-hero aside {
  padding: 28px;
  color: #fff;
  background: #10223d;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(16, 34, 61, .18);
}

.portal-column-hero aside b {
  display: block;
  margin-bottom: 16px;
  font-size: 24px;
}

.portal-column-hero ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
}

.portal-column-hero aside a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 16px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f1bd63, var(--accent));
  border-radius: 8px;
  font-weight: 900;
}

.portal-column-content {
  padding: 92px max(5vw, calc((100vw - 1220px) / 2));
}

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

.portal-column-grid article {
  min-height: 210px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.portal-column-grid h2 {
  margin: 0 0 14px;
  color: #10223d;
  font-size: 23px;
  line-height: 1.28;
}

.portal-column-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.portal-column-list {
  margin-top: 76px;
}

.portal-column-articles {
  display: grid;
  background: #fff;
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.portal-column-article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 110px;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(20, 27, 45, .08);
}

.portal-column-article:last-child {
  border-bottom: 0;
}

.portal-column-article span {
  color: #b7791f;
  font-size: 13px;
  font-weight: 900;
}

.portal-column-article strong {
  color: #10223d;
  font-size: 18px;
  line-height: 1.45;
}

.portal-column-article time {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.portal-column-empty {
  margin: 0;
  padding: 24px;
  color: var(--muted);
}

.portal-column-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.portal-column-pagination a,
.portal-column-pagination span,
.portal-column-pagination b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 900;
}

.portal-column-pagination a {
  color: #082f2c;
  background: #eef7f4;
  border: 1px solid rgba(15, 95, 86, .18);
}

.portal-column-pagination a:hover {
  color: #fff;
  background: #0f5f56;
}

.portal-column-pagination span {
  color: #98a2ad;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(20, 27, 45, .08);
}

.portal-column-pagination b {
  color: #10223d;
  background: #fff;
  border: 1px solid rgba(201, 141, 47, .28);
}

.portal-cities-content {
  padding: 92px max(5vw, calc((100vw - 1220px) / 2));
}

.portal-province-toc {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 34px;
}

.portal-province-toc a {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 27, 45, .06);
}

.portal-province-toc strong {
  color: #10223d;
  font-size: 18px;
}

.portal-province-toc span {
  color: var(--muted);
  font-size: 13px;
}

.portal-province-list {
  display: grid;
  gap: 22px;
}

.portal-province-block {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(20, 27, 45, .1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.portal-province-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(20, 27, 45, .08);
}

.portal-province-head p {
  margin: 0 0 8px;
  color: #b7791f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portal-province-head h2 {
  margin: 0;
  color: #10223d;
  font-size: 28px;
  line-height: 1.22;
}

.portal-province-head span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.portal-province-head > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  color: #0f4f59;
  background: #eef5f3;
  border-radius: 8px;
  font-weight: 900;
}

.portal-province-cities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 20px;
}

.portal-province-cities a {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 16px;
  background: #f8faf8;
  border: 1px solid rgba(20, 27, 45, .08);
  border-radius: 8px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.portal-province-cities a:hover {
  transform: translateY(-2px);
  background: #fffaf3;
  border-color: rgba(15, 95, 86, .3);
}

.portal-province-cities b {
  color: #10223d;
  font-size: 18px;
  line-height: 1.35;
}

.portal-province-cities span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.about-section,
.business-section,
.authority-section {
  padding: 104px max(5vw, calc((100vw - 1180px) / 2)) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.about-copy {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 46px;
  background:
    linear-gradient(180deg, #fff, #fffaf3);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.about-copy p + p {
  margin-top: 18px;
}

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

.business-grid article {
  display: grid;
  align-content: start;
  min-height: 350px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.business-grid article::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.business-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 141, 47, .42);
  box-shadow: 0 26px 64px rgba(20, 27, 45, .12);
}

.business-grid span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  padding: 0 10px;
  color: var(--brand-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  font-weight: 900;
}

.business-grid h3 {
  margin: 18px 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

.business-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.business-grid a {
  align-self: end;
  width: max-content;
  margin-top: 24px;
  padding: 11px 16px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.business-grid a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.authority-section {
  padding-top: 86px;
  padding-bottom: 56px;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.authority-section .section-head {
  padding: 0;
  margin-bottom: 30px;
  color: #fff;
}

.authority-section .section-head p {
  color: var(--accent);
}

.authority-section .section-head h2 {
  color: #fff;
}

.authority-section {
  margin-top: 104px;
  background:
    linear-gradient(135deg, rgba(8, 47, 44, .98), rgba(20, 27, 45, .96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 28px);
}

.authority-grid div {
  min-height: 210px;
  padding: 28px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.authority-grid b {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

.authority-grid span {
  color: rgba(255, 255, 255, .74);
  line-height: 1.75;
}

.proof-section {
  padding: 104px max(5vw, calc((100vw - 1180px) / 2)) 0;
}

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

.proof-grid div {
  min-height: 190px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  position: relative;
}

.proof-grid div::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 42px;
  height: 4px;
  background: var(--brand);
  border-radius: 0 0 999px 999px;
}

.proof-grid b {
  display: block;
  margin-bottom: 14px;
  font-size: 21px;
}

.proof-grid span {
  color: var(--muted);
  line-height: 1.75;
}

.news-section {
  padding: 104px max(5vw, calc((100vw - 1180px) / 2)) 88px;
}

.district-home-news {
  padding-bottom: 88px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: 0;
}

.section-head p {
  letter-spacing: 1.5px;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
  text-align: left;
}

.section-head-row > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  white-space: nowrap;
}

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

.news-list article,
.news-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 120px;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.news-list article:last-child,
.news-row:last-child {
  border-bottom: 0;
}

.news-list time,
.news-row time {
  color: var(--muted);
  font-size: 13px;
}

.news-list a {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.news-list span,
.news-row span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.news-page {
  padding: 42px max(5vw, calc((100vw - 1180px) / 2)) 48px;
}

.news-hero {
  position: relative;
  overflow: hidden;
  padding: 58px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 47, 44, .98), rgba(20, 27, 45, .96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 30px);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.news-hero p {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.news-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
}

.news-hero > span {
  display: block;
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.85;
}

.news-index {
  display: grid;
  gap: 16px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
  margin-top: 30px;
}

.news-row {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  min-height: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.news-row:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 141, 47, .45);
  box-shadow: 0 22px 54px rgba(20, 27, 45, .11);
}

.news-row time {
  display: grid;
  place-items: center;
  width: 86px;
  min-height: 86px;
  color: var(--brand-dark);
  background: var(--accent-soft);
  border: 1px solid rgba(201, 141, 47, .28);
  border-radius: 10px;
  text-align: center;
}

.news-row time b {
  font-size: 22px;
  line-height: 1;
}

.news-row time span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.news-row h2 {
  margin: 8px 0 10px;
  font-size: 26px;
  line-height: 1.35;
}

.news-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.news-read {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 16px;
  padding: 0 14px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.news-read:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.news-aside {
  position: sticky;
  top: 100px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 47, 44, .98), rgba(20, 27, 45, .96));
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.news-aside p {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.news-aside h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.25;
}

.news-aside span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
}

.news-aside a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 18px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f3c46d, var(--accent));
  border-radius: 8px;
  font-weight: 900;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 46px;
  padding: 8px 14px;
  gap: 10px;
  margin: 0;
  color: #536176;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(227, 216, 198, .95);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(20, 27, 45, .06);
  font-size: 14px;
  line-height: 1.4;
}

.breadcrumb a {
  color: var(--brand-dark);
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.breadcrumb-separator {
  color: var(--accent);
  font-weight: 900;
}

.breadcrumb-current {
  min-width: 0;
  max-width: 420px;
  overflow: hidden;
  color: var(--muted);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-links {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.related-links > p {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.related-links h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.3;
}

.related-links a {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
  line-height: 1.55;
}

.related-links a:hover {
  color: var(--brand);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  padding: 88px 5vw;
}

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

.article-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 141, 47, .45);
  box-shadow: 0 24px 58px rgba(20, 27, 45, .12);
}

.article-card img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.article-detail img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card div {
  padding: 22px;
}

.article-detail span,
.city-card span,
.metric span,
.table-card small {
  color: var(--muted);
  font-size: 13px;
}

.article-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.article-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.35;
}

.article-card p {
  margin: 0;
}

.article-card p,
.lead-panel p,
.article-detail p {
  color: var(--muted);
  line-height: 1.8;
}

.lead-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 28px;
  background: var(--brand-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.lead-panel p {
  color: rgba(255, 255, 255, .74);
}

.lead-panel form,
.admin-form {
  display: grid;
  gap: 12px;
}

.lead-panel input,
.lead-panel select,
.lead-panel textarea,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.lead-panel textarea,
.admin-form textarea {
  min-height: 96px;
  resize: vertical;
}

.lead-panel button {
  color: var(--brand-dark);
  background: var(--accent);
}

.city-section {
  padding: 0 5vw 88px;
}

.portal-city-section {
  padding: 92px max(5vw, calc((100vw - 1220px) / 2)) 88px;
}

.coverage-section {
  padding: 72px max(5vw, calc((100vw - 1180px) / 2)) 64px;
}

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

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

.district-grid span,
.district-grid a {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 18px;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.district-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(23, 32, 51, .1);
}

.city-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(23, 32, 51, .1);
}

.city-card strong {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
}

.province-coverage .city-grid {
  grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  gap: 12px;
}

.province-coverage .city-card {
  min-height: 74px;
  gap: 4px;
  padding: 14px 18px;
  box-shadow: 0 10px 24px rgba(23, 32, 51, .06);
}

.province-coverage .city-card span {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.province-coverage .city-card strong {
  font-size: 18px;
  line-height: 1.24;
  max-width: 100%;
  white-space: nowrap;
  word-break: keep-all;
}

.local-coverage .city-grid {
  grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
}

.local-coverage .city-card {
  padding-right: 22px;
}

.local-coverage .city-card strong {
  font-size: 17px;
}

footer {
  margin-top: 0;
  padding: 28px 5vw;
  color: rgba(255, 255, 255, .62);
  background: #08161f;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}

.article-page {
  padding: 42px max(5vw, calc((100vw - 1160px) / 2)) 48px;
}

.thanks {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 24px;
}

.not-found-page {
  min-height: calc(100vh - 132px);
  padding: 78px max(5vw, calc((100vw - 1120px) / 2)) 86px;
  background:
    radial-gradient(circle at 16% 20%, rgba(15, 95, 86, .2), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(201, 141, 47, .18), transparent 28%),
    linear-gradient(135deg, #fbf8f2 0%, #f3ede4 52%, #edf5f1 100%);
}

.not-found-hero {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  min-height: 430px;
  padding: 72px 72px 68px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 48, 44, .97), rgba(17, 30, 45, .98)),
    #08161f;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(20, 27, 45, .18);
}

.not-found-hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(241, 189, 99, .28);
  border-radius: 50%;
}

.not-found-hero::after {
  content: "";
  position: absolute;
  right: 80px;
  top: 76px;
  width: 190px;
  height: 190px;
  background:
    linear-gradient(135deg, rgba(241, 189, 99, .22), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  transform: rotate(8deg);
}

.not-found-code {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 9px 16px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f1bd63, var(--accent));
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}

.not-found-hero p {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: #f1bd63;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.not-found-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.not-found-hero > span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.9;
}

.not-found-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.not-found-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease;
}

.not-found-actions a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .08);
}

.not-found-actions a.primary {
  color: #0c1a1c;
  background: linear-gradient(180deg, #f1bd63, var(--accent));
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(201, 141, 47, .24);
}

.not-found-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin-top: 22px;
}

.not-found-grid a {
  min-height: 142px;
  padding: 26px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.not-found-grid b,
.not-found-grid span {
  display: block;
}

.not-found-grid b {
  color: var(--ink);
  font-size: 22px;
}

.not-found-grid span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.article-crumbs {
  max-width: 1128px;
  margin: 0 auto;
  padding: 18px 0 6px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  justify-content: center;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.article-title {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.article-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
}

.article-title time {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.article-detail {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.article-detail--text {
  padding: 46px 54px;
}

.article-detail > :not(img) {
  margin-left: 42px;
  margin-right: 42px;
}

.article-detail--text > :not(img) {
  margin-left: 0;
  margin-right: 0;
}

.article-detail p {
  margin-top: 26px;
  margin-bottom: 0;
  color: #3f4d61;
  font-size: 18px;
  line-height: 2;
}

.article-detail h2 {
  margin: 38px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
}

.article-detail h2 + p {
  margin-top: 14px;
}

.article-detail p:last-child {
  padding-bottom: 0;
}

.article-internal-links {
  margin-top: 34px;
  padding: 24px;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-internal-links h2 {
  margin-top: 0;
  font-size: 22px;
}

.article-internal-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.article-internal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.article-faq {
  margin-top: 34px;
  padding: 28px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-faq h2 {
  margin-top: 0;
  font-size: 22px;
}

.article-faq div {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(20, 27, 45, .1);
}

.article-faq div:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.article-faq b {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.article-faq span {
  color: var(--muted);
  line-height: 1.75;
}

.admin-shell {
  background: #eef2f6;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(16, 32, 31, .96), rgba(11, 27, 40, .92)),
    #10201f;
}

.admin-login-card {
  width: min(460px, 100%);
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.admin-login-card h1 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.15;
}

.admin-eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-login-form {
  margin-top: 20px;
  padding: 0;
  border: 0;
}

.admin-app {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-nav {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100vh;
  padding: 24px;
  background: #10201f;
}

.admin-nav .brand {
  margin-bottom: 22px;
  color: #fff;
}

.admin-nav button {
  min-height: 42px;
  color: rgba(255, 255, 255, .72);
  text-align: left;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  cursor: pointer;
}

.admin-nav button.is-active {
  color: #10201f;
  background: var(--accent);
}

.admin-logout {
  margin-top: auto;
  min-height: 40px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
}

.admin-logout:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}

.admin-main {
  padding: 34px;
}

.admin-title {
  margin-bottom: 24px;
}

.admin-title h1 {
  margin: 0;
  font-size: 34px;
}

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

.metric,
.table-card,
.admin-form {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric b {
  display: block;
  margin-top: 10px;
  font-size: 32px;
}

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

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

.admin-wide-panel {
  max-width: 780px;
}

.import-form {
  margin-top: 18px;
}

.import-form h2,
.admin-subtitle {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.import-form .helper {
  margin-bottom: 0;
}

.import-form textarea {
  min-height: 220px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
}

.admin-subtitle {
  margin: 22px 0 12px;
}

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

.import-log-card small {
  line-height: 1.6;
}

.import-errors {
  color: var(--danger);
}

.table-grid {
  display: grid;
  gap: 12px;
}

.table-card {
  display: grid;
  gap: 8px;
}

.table-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 26px;
  padding: 0 9px;
  color: var(--brand-dark);
  background: #d9f5ef;
  border-radius: 999px;
  font-size: 12px;
}

.badge.real {
  color: #7c2d12;
  background: #ffedd5;
}

.helper {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.notice {
  padding: 12px 14px;
  color: var(--brand-dark);
  background: #d9f5ef;
  border: 1px solid #9bd8cc;
  border-radius: 6px;
}

.notice-error {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.metrics-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.metric small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.admin-panel {
  display: grid;
  gap: 14px;
}

.admin-panel h2,
.admin-panel h3 {
  margin: 0;
  color: var(--ink);
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

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

.status-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.status-list p {
  margin: 0;
}

.status-list b {
  color: var(--ink);
}

.tool-actions .badge,
.quick-actions .badge,
.quick-actions button,
.action-link,
.backup-card button,
.admin-panel button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
}

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

.backup-card button {
  width: max-content;
}

.restore-upload-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.audit-result {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: var(--brand-dark);
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 8px;
}

.audit-result.has-error {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.import-errors {
  display: grid;
  gap: 5px;
}

.admin-shell {
  --admin-bg: #f5f0e8;
  --admin-panel: #fffdf8;
  --admin-ink: #141b2d;
  --admin-muted: #667085;
  --admin-line: #e3d8c6;
  --admin-soft-line: #efe5d6;
  --admin-sidebar: #082f2c;
  --admin-primary: #0f5f56;
  --admin-primary-dark: #082f2c;
  --admin-success: #0f5f56;
  --admin-warning: #c98d2f;
  --admin-danger: #b42318;
  --admin-accent: #c98d2f;
  --admin-accent-soft: #f8ead1;
  color: var(--admin-ink);
  background:
    linear-gradient(180deg, #fbf8f2 0, var(--admin-bg) 520px, #f8f6f1 100%);
}

.admin-login {
  background:
    linear-gradient(135deg, rgba(8, 47, 44, .96), rgba(15, 95, 86, .9)),
    #082f2c;
}

.admin-login-card {
  width: min(430px, 100%);
  padding: 32px;
  background: var(--admin-panel);
  border-color: rgba(227, 216, 198, .95);
  border-top: 4px solid var(--admin-accent);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 47, 44, .28);
}

.admin-login-card h1 {
  margin: 10px 0 22px;
  font-size: 30px;
  letter-spacing: 0;
}

.admin-eyebrow {
  color: var(--admin-accent);
  letter-spacing: 0;
  text-transform: none;
}

.admin-login-form {
  display: grid;
  gap: 14px;
  margin-top: 0;
  padding: 18px;
  background: #fbf8f2;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
}

.admin-login-form input {
  min-height: 46px;
}

.admin-login-form button {
  min-height: 48px;
  color: #0c1a1c;
  background: linear-gradient(180deg, #f1bd63, var(--admin-accent));
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(201, 141, 47, .22);
}

.admin-app {
  grid-template-columns: 232px minmax(0, 1fr);
}

.admin-nav {
  gap: 8px;
  padding: 22px 18px;
  background: var(--admin-sidebar);
  border-right: 1px solid rgba(248, 234, 209, .12);
}

.admin-nav .brand {
  display: block;
  margin: 0 0 18px;
  padding: 0 6px 18px;
  border-bottom: 1px solid rgba(248, 234, 209, .14);
  font-size: 20px;
  line-height: 1.35;
}

.admin-nav button,
.admin-logout {
  min-height: 40px;
  padding: 0 12px;
  border-color: transparent;
  border-radius: 6px;
  font-size: 15px;
}

.admin-nav button:hover,
.admin-logout:hover {
  color: #fff;
  background: rgba(248, 234, 209, .1);
}

.admin-nav button.is-active {
  color: #0c1a1c;
  background: linear-gradient(180deg, #f1bd63, var(--admin-accent));
  box-shadow: 0 12px 26px rgba(201, 141, 47, .22);
}

.admin-main {
  padding: 28px 32px 40px;
}

.admin-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--admin-line);
}

.admin-title p {
  margin: 0 0 6px;
  color: var(--admin-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.admin-title h1 {
  color: var(--admin-ink);
  font-size: 30px;
  letter-spacing: 0;
}

.admin-front-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  background: var(--admin-primary);
  border: 1px solid var(--admin-primary);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.admin-front-link:hover {
  color: #fff;
  background: var(--admin-primary-dark);
  border-color: var(--admin-primary-dark);
}

.admin-statusbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--admin-muted);
  background: #fffdf8;
  border: 1px solid var(--admin-line);
  border-radius: 999px;
  font-size: 13px;
}

.status-pill b {
  color: var(--admin-ink);
}

.status-info {
  border-color: rgba(15, 95, 86, .24);
  background: #eef8f5;
}

.status-success {
  border-color: rgba(201, 141, 47, .32);
  background: var(--admin-accent-soft);
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.admin-stat {
  min-height: 138px;
  padding: 18px;
  background: var(--admin-panel);
  border: 1px solid var(--admin-line);
  border-left: 4px solid var(--admin-line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 27, 45, .055);
}

.admin-stat span {
  color: var(--admin-muted);
  font-size: 14px;
}

.admin-stat strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--admin-ink);
  font-size: 34px;
  line-height: 1;
}

.admin-stat small {
  display: block;
  color: var(--admin-muted);
  line-height: 1.45;
}

.admin-stat-info {
  border-left-color: var(--admin-primary);
}

.admin-stat-success {
  border-left-color: var(--admin-primary);
}

.admin-stat-warn {
  border-left-color: var(--admin-warning);
}

.admin-panel,
.admin-form,
.table-card,
.metric {
  background: var(--admin-panel);
  border-color: var(--admin-line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 27, 45, .045);
}

.admin-panel {
  padding: 20px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 2px;
}

.admin-panel-head h2 {
  font-size: 20px;
}

.panel-caption {
  color: var(--admin-muted);
  font-size: 13px;
}

.admin-layout {
  grid-template-columns: minmax(380px, 460px) minmax(0, 1fr);
  gap: 16px;
}

.admin-import-layout {
  grid-template-columns: minmax(620px, 1.45fr) minmax(320px, 0.55fr);
}

.admin-import-panel textarea {
  min-height: 310px;
}

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

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

.quick-actions button,
.quick-actions .action-link,
.admin-panel button,
.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  min-height: 40px;
  color: var(--admin-ink);
  background: #fffdf8;
  border: 1px solid var(--admin-line);
  border-radius: 6px;
  font-weight: 800;
}

.quick-actions button:hover,
.admin-panel button:hover,
.action-link:hover {
  border-color: var(--admin-primary);
  color: var(--admin-primary);
  background: #eef8f5;
}

.primary-action,
.primary-link,
.admin-panel .primary-action {
  color: #fff;
  background: var(--admin-primary);
  border-color: var(--admin-primary);
}

.primary-action:hover,
.primary-link:hover,
.admin-panel .primary-action:hover {
  color: #fff;
  background: var(--admin-primary-dark);
  border-color: var(--admin-primary-dark);
}

.danger-action,
.admin-panel .danger-action {
  color: var(--admin-danger);
  background: #fff;
  border-color: #fecaca;
}

.danger-action:hover,
.admin-panel .danger-action:hover {
  color: #fff;
  background: var(--admin-danger);
  border-color: var(--admin-danger);
}

.ops-table,
.config-list,
.admin-table {
  display: grid;
  border: 1px solid var(--admin-soft-line);
  border-radius: 8px;
  overflow: hidden;
}

.ops-table div,
.config-list div,
.admin-table-row {
  display: grid;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--admin-soft-line);
}

.ops-table div,
.config-list div {
  grid-template-columns: 110px minmax(0, 1fr);
}

.ops-table div:last-child,
.config-list div:last-child,
.admin-table-row:last-child {
  border-bottom: 0;
}

.ops-table span,
.config-list span,
.admin-table-row span {
  min-width: 0;
  color: var(--admin-muted);
}

.ops-table b,
.config-list b,
.admin-table-row b {
  min-width: 0;
  color: var(--admin-ink);
  overflow-wrap: anywhere;
}

.admin-table-row {
  grid-template-columns: minmax(180px, 1.4fr) minmax(150px, .9fr) minmax(180px, 1fr);
}

.backup-table .admin-table-row {
  grid-template-columns: minmax(240px, 1.5fr) minmax(150px, .8fr) 90px 80px;
}

.admin-table-head {
  min-height: 38px;
  background: #fbf8f2;
  font-size: 13px;
  font-weight: 900;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 16px;
}

.flow-steps span {
  min-height: 34px;
  padding: 8px 10px;
  color: var(--admin-muted);
  background: #fbf8f2;
  border: 1px solid var(--admin-soft-line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.flow-steps .is-active {
  color: var(--admin-primary);
  border-color: rgba(15, 95, 86, .26);
  background: #eef8f5;
}

.risk-box {
  display: grid;
  gap: 6px;
  padding: 14px;
  color: #7c2d12;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
}

.risk-box span {
  color: #9a3412;
  line-height: 1.55;
}

.result-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.result-strip div {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--admin-soft-line);
  border-radius: 6px;
}

.result-strip span {
  display: block;
  color: var(--admin-muted);
  font-size: 12px;
}

.result-strip b {
  display: block;
  margin-top: 5px;
  color: var(--admin-ink);
  font-size: 20px;
}

.audit-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 12px;
}

.audit-summary .admin-stat {
  min-height: 108px;
}

.audit-summary .admin-stat strong {
  font-size: 28px;
}

.settings-analytics-panel {
  grid-column: 1 / -1;
}

.analytics-form {
  display: grid;
  gap: 14px;
}

.analytics-form label {
  display: grid;
  gap: 10px;
  width: min(100%, 860px);
}

.analytics-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 210px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
  resize: vertical;
}

.admin-form textarea {
  min-height: 260px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
}

.admin-form label {
  color: var(--admin-ink);
  font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  margin-top: 7px;
  border-color: var(--admin-line);
  border-radius: 6px;
}

.helper {
  color: var(--admin-muted);
}

.notice {
  margin-bottom: 16px;
  border-radius: 8px;
}

@media (max-width: 1040px) {
  .hero,
  .content-grid,
  .about-grid,
  .news-layout,
  .article-layout,
  .admin-layout,
  .portal-hero,
  .portal-news-layout,
  .portal-trade-layout,
  .portal-column-hero,
  .portal-platform-layout {
    grid-template-columns: 1fr;
  }

  .service-band,
  .city-grid,
  .district-grid,
  .proof-grid,
  .news-list article,
  .business-grid,
  .authority-grid,
  .metrics,
  .portal-channel-grid,
  .portal-service-grid,
  .portal-matrix-grid,
  .portal-stats,
  .portal-column-grid,
  .portal-platform-metrics,
  .portal-capability-grid,
  .portal-authority-grid,
  .portal-ai-grid,
  .portal-province-toc,
  .portal-province-cities {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-stats-grid,
  .admin-layout-equal,
  .result-strip,
  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-layout,
  .admin-table-row,
  .backup-table .admin-table-row,
  .ops-table div,
  .config-list div {
    grid-template-columns: 1fr;
  }

  .admin-statusbar {
    align-items: stretch;
  }

  .lead-panel {
    position: static;
  }

  .news-aside,
  .related-links {
    position: static;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 94px;
  }

  .topbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: sticky;
    min-height: 74px;
    padding: 12px 14px;
    width: 100vw;
    max-width: 100vw;
    overflow: visible;
  }

  .brand {
    display: block;
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    overflow: hidden;
    color: #fff;
    font-size: 17px;
    line-height: 38px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brand::before {
    content: none;
  }

  .brand::after {
    content: none;
  }

  .topbar-support {
    position: static;
    flex: 0 0 104px;
    z-index: 24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: 104px;
    padding: 0;
    color: #0c1a1c;
    background: linear-gradient(180deg, #f1bd63, var(--accent));
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(201, 141, 47, .3);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    position: relative;
    flex: 0 0 40px;
    z-index: 25;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 38px;
  }

  .topbar nav {
    flex: 0 0 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    padding: 10px 0 4px;
    overflow: visible;
  }

  .topbar nav.is-open {
    display: grid;
  }

  .topbar nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    color: rgba(255, 255, 255, .84);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    white-space: normal;
  }

  .topbar nav a.nav-cta {
    display: flex;
    margin-left: 0;
    min-height: 44px;
    padding: 0 16px;
    justify-content: center;
  }

  .not-found-page {
    min-height: auto;
    padding: 34px 14px 52px;
  }

  .not-found-hero {
    min-height: auto;
    padding: 38px 22px 34px;
  }

  .not-found-hero::before {
    right: -210px;
    bottom: -220px;
  }

  .not-found-hero::after {
    display: none;
  }

  .not-found-hero h1 {
    font-size: 38px;
  }

  .not-found-hero > span {
    font-size: 15px;
    line-height: 1.8;
  }

  .not-found-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .not-found-actions a {
    width: 100%;
  }

  .not-found-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .not-found-grid a {
    min-height: auto;
    padding: 20px;
  }

  .portal-topbar {
    background: rgba(255, 255, 255, .96);
  }

  .portal-topbar .brand {
    color: #10223d;
  }

  .portal-topbar nav a {
    color: #10223d;
    background: #f3f6f4;
    border-color: rgba(16, 34, 61, .08);
  }

  .portal-topbar nav a.nav-cta {
    color: #0c1a1c;
    background: linear-gradient(180deg, #f1bd63, var(--accent));
  }

  .floating-support--desktop {
    display: none;
  }

  .mobile-support-bar {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(360px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    overflow: hidden;
    background: linear-gradient(180deg, #123f3b, #08161f);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(8, 22, 31, .32);
    transform: translateX(-50%);
  }

  .mobile-support-bar .support-item {
    min-width: 0;
    min-height: 72px;
    padding: 10px 6px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 0;
  }

  .mobile-support-bar .support-item b {
    font-size: 14px;
  }

  .mobile-support-bar .support-item:last-child {
    border-right: 0;
  }

  .support-modal {
    padding: 18px;
  }

  .wechat-dialog {
    width: min(340px, calc(100vw - 36px));
    padding: 44px 20px 22px;
    border-radius: 12px;
  }

  .wechat-dialog h2 {
    font-size: 36px;
  }

  .wechat-pc-title {
    display: none;
  }

  .wechat-mobile-title {
    display: inline;
  }

  .wechat-dialog p {
    font-size: 18px;
  }

  .wechat-mobile-copy {
    display: block;
  }

  .wechat-qr-image,
  .wechat-pc-note {
    display: none;
  }

  .wechat-add,
  .wechat-back {
    display: flex;
    min-height: 54px;
    font-size: 19px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 18px 76px;
    overflow: hidden;
  }

  .portal-hero {
    min-height: auto;
    padding: 42px 18px 48px;
    max-width: 100vw;
    overflow: hidden;
  }

  .portal-column-hero {
    padding: 42px 18px 44px;
  }

  .portal-column-hero h1 {
    font-size: 36px;
  }

  .portal-column-hero span {
    width: min(100%, 20em);
    font-size: 17px;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .portal-column-hero aside {
    padding: 22px;
  }

  .portal-hero__copy h1 {
    font-size: 36px;
    line-height: 1.14;
    word-break: break-word;
  }

  .portal-hero__copy > span {
    width: min(100%, 19em);
    max-width: 100%;
    font-size: 17px;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .portal-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 300px);
  }

  .portal-hero__actions a {
    width: 100%;
  }

  .portal-stats,
  .portal-channel-grid,
  .portal-service-grid,
  .portal-column-grid,
  .portal-platform-metrics,
  .portal-capability-grid,
  .portal-authority-grid,
  .portal-ai-grid,
  .portal-province-toc,
  .portal-province-cities {
    grid-template-columns: 1fr;
  }

  .portal-briefing {
    padding: 22px;
  }

  .portal-news-section,
  .portal-content-matrix-section,
  .portal-channel-section,
  .portal-service-section,
  .portal-platform-section,
  .portal-capability-section,
  .portal-authority-section,
  .portal-ai-section,
  .portal-city-section,
  .portal-column-content,
  .portal-cities-content {
    padding-top: 58px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .portal-news-layout {
    grid-template-columns: 1fr;
  }

  .portal-matrix-grid {
    grid-template-columns: 1fr;
  }

  .portal-matrix-block:last-child {
    grid-column: auto;
  }

  .portal-matrix-block__head {
    display: grid;
    padding: 22px;
  }

  .portal-matrix-block__head a {
    width: max-content;
  }

  .portal-matrix-article {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: auto;
    padding: 16px 22px;
  }

  .portal-matrix-article time {
    text-align: left;
  }

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

  .portal-lead-card img {
    height: 190px;
    min-height: 190px;
  }

  .portal-lead-card div,
  .portal-digest,
  .portal-channel-card,
  .portal-service-grid article,
  .portal-platform-copy,
  .portal-platform-metrics article,
  .portal-capability-grid article,
  .portal-ai-grid article,
  .portal-trade-intro,
  .portal-trade-grid article,
  .portal-column-grid article {
    padding: 22px;
  }

  .portal-column-content {
    padding-bottom: 48px;
  }

  .portal-column-list {
    margin-top: 52px;
  }

  .portal-column-article {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }

  .portal-column-article time {
    text-align: left;
  }

  .portal-province-head {
    display: grid;
    align-items: start;
  }

  .portal-province-head > a {
    width: 100%;
  }

  .portal-province-block {
    padding: 20px;
  }

  .portal-trade-grid {
    grid-template-columns: 1fr;
  }

  .portal-trade-intro {
    min-height: auto;
  }

  .portal-trade-intro a {
    width: 100%;
    margin-top: 24px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .local-hero .hero-copy,
  .local-hero .hero-copy h1,
  .local-hero .hero-copy span {
    min-width: 0;
    max-width: 100%;
  }

  .local-hero .hero-copy h1 {
    width: min(8em, 100%);
    font-size: 38px;
    white-space: normal;
    word-break: break-all;
    line-break: anywhere;
  }

  .local-hero .hero-copy span {
    width: min(21em, 100%);
    font-size: 16px;
    line-height: 1.75;
    white-space: normal;
    word-break: break-all;
    line-break: anywhere;
  }

  .hero-copy span,
  .news-hero > span,
  .article-detail p,
  .article-card p,
  .news-row p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    width: 100%;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions a {
    width: 100%;
    flex: none;
    max-width: 100%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 15px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 320px);
    max-width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-row strong {
    justify-content: center;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
    word-break: break-all;
    line-break: anywhere;
  }

  .news-hero {
    padding: 32px 22px;
  }

  .news-hero h1 {
    max-width: 100%;
    font-size: 34px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-crumbs {
    padding: 12px 0 0;
  }

  .breadcrumb {
    display: flex;
    overflow-x: auto;
    width: 100%;
    padding: 8px 10px;
    gap: 8px;
    scrollbar-width: none;
  }

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

  .breadcrumb-current {
    max-width: 240px;
    flex: 0 0 auto;
  }

  .article-title h1 {
    font-size: 28px;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .news-layout {
    margin-top: 22px;
  }

  .news-row {
    grid-template-columns: 1fr;
    padding: 20px;
    overflow: hidden;
  }

  .news-row h2,
  .article-card h3,
  .article-detail h2 {
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .news-row time {
    width: 100%;
    min-height: 60px;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 8px;
  }

  .article-detail > :not(img) {
    margin-left: 22px;
    margin-right: 22px;
  }

  .article-detail--text {
    padding: 28px 22px;
    overflow: hidden;
  }

  .article-detail--text > :not(img) {
    margin-left: 0;
    margin-right: 0;
  }

  .article-detail p {
    font-size: 16px;
    line-height: 1.9;
    word-break: break-all;
    line-break: anywhere;
  }

  .article-detail h2 {
    font-size: 21px;
  }

  .article-card img {
    height: 96px;
  }

  .network-panel {
    min-height: 430px;
  }

  .local-panel {
    min-height: auto;
    padding: 28px;
  }

  .local-panel::before {
    margin-bottom: 38px;
  }

  .orbit-node {
    width: 118px;
    font-size: 13px;
  }

  .service-band,
  .articles,
  .city-grid,
  .district-grid,
  .proof-grid,
  .business-grid,
  .authority-grid,
  .metrics,
  .admin-app {
    grid-template-columns: 1fr;
  }

  .service-band {
    margin: 0;
  }

  .content-grid,
  .city-section,
  .coverage-section,
  .proof-section,
  .news-section,
  .news-page,
  .article-page,
  .about-section,
  .business-section,
  .authority-section,
  .admin-main {
    padding-left: 18px;
    padding-right: 18px;
    max-width: 100%;
    overflow: hidden;
  }

  .news-page,
  .article-page {
    padding-bottom: 34px;
  }

  .news-section {
    padding-bottom: 64px;
  }

  .coverage-section {
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .district-home-news {
    padding-bottom: 64px;
  }

  footer {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .section-head-row,
  .news-list article,
  .news-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .section-head-row {
    display: grid;
  }

  .news-list span {
    text-align: left;
  }

  .admin-nav {
    position: static;
    height: auto;
  }
}
