:root {
  --blue-900: #003b78;
  --blue-800: #075093;
  --blue-700: #0b65b1;
  --blue: #075093;
  --blue-100: #eaf5ff;
  --cyan: #22a7b8;
  --green: #22a68b;
  --ink: #12233a;
  --muted: #68778a;
  --line: #e3eaf2;
  --page: #f3f7fb;
  --card: #ffffff;
  --shadow: 0 12px 32px rgba(12, 60, 107, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0, rgba(38, 143, 206, .08), transparent 28%),
    linear-gradient(180deg, #fff 0, var(--page) 260px, #edf4fb 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease, transform .2s ease;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(34, 167, 184, .32);
  outline-offset: 2px;
}

button:disabled,
a[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .58;
}

.container {
  width: min(1260px, calc(100% - 56px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  color: #dceeff;
  background: linear-gradient(90deg, #003b78, #075da1);
  font-size: 12px;
}

.topbar__inner {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.topbar a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(214, 226, 238, .9);
  box-shadow: 0 8px 24px rgba(6, 47, 92, .06);
  backdrop-filter: blur(12px);
}

.header__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  color: var(--blue-900);
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #1c2d43;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding: 21px 0 20px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 0;
  height: 3px;
  background: var(--blue-800);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-900);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 34px;
}

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

.icon-button,
.menu-toggle {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: var(--blue-900);
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
}

.icon-button svg,
.menu-toggle svg,
.entry svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home {
  display: grid;
  gap: 10px;
  padding-bottom: 10px;
}

.hero {
  min-height: 180px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 49, 92, .92) 0%, rgba(0, 62, 116, .76) 43%, rgba(0, 75, 135, .2) 100%),
    url("./../prototype/assets/hero-education.svg") center / cover no-repeat;
}

.hero__inner {
  min-height: 180px;
  display: flex;
  align-items: center;
}

.hero__copy {
  max-width: 620px;
  padding: 8px 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero p {
  margin: 8px 0 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, .88);
}

.hero__button {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 5px;
  font-weight: 700;
}

.hero__button:hover,
.site-search button:hover,
.site-search a:hover,
.detail-attachments a:hover,
.back-link:hover,
.site-pager a:not([aria-disabled="true"]):hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12, 60, 107, .12);
}

.hero__button::after,
.more-link::after,
.panel__head a::after,
.entry em::after,
.expert a::after {
  content: "›";
  margin-left: 8px;
  font-weight: 900;
}

.notice-line__inner {
  min-height: 40px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(12, 60, 107, .06);
  font-size: 14px;
}

.notice-line__tag {
  color: #fff;
  background: var(--blue-800);
  border-radius: 4px;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 13px;
}

.notice-line time {
  color: var(--muted);
}

.more-link,
.panel__head a,
.entry em,
.expert a {
  color: var(--blue-800);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

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

.entry {
  min-height: 88px;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid #dceaf6;
  background: linear-gradient(135deg, #f8fcff, #eaf6ff);
  box-shadow: 0 10px 26px rgba(12, 60, 107, .07);
}

.entry--green {
  background: linear-gradient(135deg, #fbfffe, #e8f8f4);
}

.entry--cyan {
  background: linear-gradient(135deg, #fbffff, #e8f8fb);
}

.entry__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--blue-800);
  border: 7px solid currentColor;
  border-radius: 7px;
}

.entry--green .entry__icon {
  color: var(--green);
}

.entry--cyan .entry__icon {
  color: var(--cyan);
}

.entry strong,
.entry small,
.entry em {
  display: block;
}

.entry strong {
  color: var(--blue-900);
  font-size: 18px;
  margin-bottom: 5px;
}

.entry small {
  color: #43576c;
  font-size: 13px;
  margin-bottom: 6px;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr .95fr;
  gap: 18px;
}

.panel {
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(12, 60, 107, .06);
}

.panel__head {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.panel__head h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: 18px;
}

.news-panel,
.research-panel,
.results-panel {
  min-height: 198px;
}

.news-item {
  min-height: 38px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  border-bottom: 1px solid #edf2f7;
}

.news-item:last-child,
.result-item:last-child {
  border-bottom: 0;
}

.news-item strong,
.result-item strong {
  overflow: hidden;
  color: #26384e;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-item time,
.result-item time {
  color: #7b8a9b;
  font-size: 12px;
  text-align: right;
}

.thumb {
  width: 54px;
  height: 30px;
  border-radius: 4px;
  background: linear-gradient(135deg, #dceef8, #76aaca);
  position: relative;
  overflow: hidden;
}

.thumb::before {
  content: "";
  position: absolute;
  inset: 7px 9px;
  border: 2px solid rgba(255, 255, 255, .72);
}

.thumb--two { background: linear-gradient(135deg, #e6f5ff, #4b95c6); }
.thumb--three { background: linear-gradient(135deg, #f6f9ff, #7ea0b9); }
.thumb--four { background: linear-gradient(135deg, #dcefed, #398f9c); }

.topic-list {
  list-style: none;
  margin: 0;
  padding: 6px 12px 10px;
}

.topic-list li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 29px;
  color: #26384e;
  font-size: 13px;
}

.topic-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  grid-row: 1;
}

.topic-list span {
  grid-column: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topic-list a {
  grid-column: 2;
  min-width: 0;
}

.topic-list a span {
  grid-column: auto;
}

.topic-list em {
  color: #277b72;
  background: #e5f6f3;
  border-radius: 4px;
  padding: 4px 8px;
  font-style: normal;
  font-size: 12px;
}

.result-item {
  min-height: 54px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid #edf2f7;
}

.result-item time {
  grid-column: 2;
  text-align: left;
}

.book {
  grid-row: 1 / 3;
  width: 46px;
  height: 48px;
  border-radius: 4px;
  background: linear-gradient(135deg, #0c5da8, #6db8e5);
  box-shadow: inset -8px 0 rgba(255, 255, 255, .18);
}

.book--teal {
  background: linear-gradient(135deg, #138c92, #9ee6df);
}

.book--yellow {
  background: linear-gradient(135deg, #f0b234, #2d91be);
}

.expert-row {
  display: grid;
}

.expert-panel {
  min-height: 88px;
}

.experts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 9px 14px 11px;
}

.expert {
  min-height: 60px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 13px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid #e6eef6;
  border-radius: 7px;
  background: #fff;
}

.avatar {
  grid-row: 1 / 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #ffe2cc 0 12px, transparent 13px),
    radial-gradient(circle at 50% 82%, #24496a 0 20px, transparent 21px),
    linear-gradient(135deg, #dceef8, #9fbad0);
}

.avatar--two,
.avatar--four {
  background:
    radial-gradient(circle at 50% 34%, #ffe8d6 0 12px, transparent 13px),
    radial-gradient(circle at 50% 82%, #1d6b79 0 20px, transparent 21px),
    linear-gradient(135deg, #e8f7fb, #b8d9e8);
}

.expert strong {
  font-size: 14px;
}

.expert small {
  color: #526579;
  font-size: 12px;
}

.footer {
  color: #dceeff;
  background: linear-gradient(90deg, #003b78, #075da1);
  padding: 9px 0 7px;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) 1.22fr;
  gap: 26px;
  align-items: start;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand img {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .96);
  border-radius: 50%;
}

.footer__brand strong,
.footer__brand span {
  display: block;
}

.footer__brand strong {
  color: #fff;
  font-size: 16px;
}

.footer__brand span {
  margin-top: 4px;
  font-size: 12px;
}

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

.footer__cols strong,
.footer__cols a {
  display: block;
}

.footer__cols strong {
  color: #fff;
  margin-bottom: 6px;
  font-size: 13px;
}

.footer__cols a {
  color: rgba(220, 238, 255, .82);
  font-size: 12px;
  line-height: 1.55;
}

.footer__bottom {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(220, 238, 255, .72);
  font-size: 12px;
  text-align: center;
}

.site-header--static {
  position: sticky;
  top: 0;
}

.site-page {
  min-height: calc(100vh - 88px);
  padding: 42px 0 64px;
  background: #f4f7fb;
}

.site-page__head {
  padding: 20px 0 24px;
}

.site-page__head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.site-page__head h1 {
  margin: 8px 0 10px;
  color: var(--blue-900);
  font-size: 34px;
  letter-spacing: 0;
}

.site-page__head p {
  margin: 0;
  color: #64748b;
}

.site-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.site-tabs a {
  padding: 8px 12px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #fff;
  color: #52657a;
  font-size: 14px;
  font-weight: 700;
}

.site-tabs a[aria-current="page"] {
  border-color: var(--blue);
  color: var(--blue);
  background: #eaf5fb;
}

.site-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  margin-top: 14px;
}

.site-search input {
  min-width: 0;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
}

.site-search input:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(11, 101, 177, .12);
}

.site-search button,
.site-search a {
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-search a {
  background: #eaf5fb;
  color: var(--blue);
}

.content-list {
  display: grid;
  gap: 14px;
}

.content-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #fff;
}

.content-card[aria-live],
.detail-article[aria-live] {
  border-style: dashed;
  background: #fbfdff;
}

a.content-card:hover {
  border-color: #8fc0dc;
  box-shadow: 0 14px 34px rgba(22, 70, 113, .08);
  transform: translateY(-1px);
}

.content-card span {
  width: max-content;
  max-width: 100%;
  color: #277b72;
  background: #e5f6f3;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
}

.content-card strong {
  color: var(--blue-900);
  font-size: 18px;
}

.content-card p {
  margin: 0;
  color: #52657a;
  line-height: 1.75;
}

.content-card small,
.detail-meta {
  color: #7b8a9b;
}

.site-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 0 0;
}

.site-pager a,
.back-link {
  color: var(--blue);
  font-weight: 700;
}

.site-pager a[aria-disabled="true"] {
  pointer-events: none;
  color: #9aa8b8;
}

.detail-article {
  max-width: 860px;
  padding: 34px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #fff;
}

.detail-article h1 {
  margin: 18px 0 12px;
  color: var(--blue-900);
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0;
}

.detail-body {
  margin-top: 26px;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.detail-body p {
  margin: 0 0 16px;
}

.detail-attachments {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e6eef6;
}

.detail-attachments h2 {
  margin: 0 0 14px;
  color: var(--blue-900);
  font-size: 20px;
}

.detail-attachments div {
  display: grid;
  gap: 10px;
}

.detail-attachments a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #f8fbff;
}

.detail-attachments a:focus-visible {
  background: #eef7ff;
}

.detail-attachments strong {
  color: var(--blue);
}

.detail-attachments small {
  color: #7b8a9b;
}

.section-page {
  padding-top: 0;
}

.section-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 59, 120, .94), rgba(7, 80, 147, .82)),
    url("./../prototype/assets/hero-education.svg") center / cover no-repeat;
}

.section-hero__inner {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-hero span,
.section-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.section-hero h1 {
  margin: 9px 0 8px;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-hero p {
  width: min(720px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
}

.section-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding-top: 24px;
}

.section-side {
  position: sticky;
  top: 88px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(12, 60, 107, .06);
}

.section-side a {
  padding: 10px 12px;
  border-radius: 7px;
  color: #40566f;
  font-weight: 700;
}

.section-side a:hover,
.section-side a[aria-current="page"] {
  color: var(--blue);
  background: #eaf5fb;
}

.section-main {
  display: grid;
  gap: 16px;
}

.section-card {
  padding: 22px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(12, 60, 107, .05);
}

.section-card h2 {
  margin: 6px 0 12px;
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1.28;
}

.section-card p {
  margin: 0;
  color: #52657a;
  line-height: 1.8;
}

.section-kicker {
  color: var(--blue);
}

.metric-grid,
.feature-grid,
.process-grid,
.resource-grid,
.contact-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.metric-grid {
  grid-template-columns: repeat(3, 1fr);
}

.metric-grid strong,
.feature-grid div,
.process-grid div,
.contact-grid div,
.resource-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid #e1ebf4;
  border-radius: 8px;
  background: #f8fbff;
}

.metric-grid b {
  color: var(--blue);
  font-size: 25px;
}

.metric-grid span,
.contact-grid span {
  color: #52657a;
  font-weight: 500;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid strong,
.process-grid strong,
.contact-grid strong,
.resource-card strong {
  color: var(--blue-900);
  font-size: 17px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid b {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  border-left: 4px solid var(--blue);
  border-radius: 7px;
  background: #f8fbff;
}

.timeline strong {
  color: var(--blue);
}

.compact-list {
  margin-top: 12px;
}

.empty-state {
  padding: 18px;
  border: 1px dashed #bed4e6;
  border-radius: 8px;
  color: #64748b;
  background: #fbfdff;
}

.resource-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.resource-card:hover {
  border-color: #8fc0dc;
  box-shadow: 0 14px 34px rgba(22, 70, 113, .08);
  transform: translateY(-1px);
}

.resource-card span,
.tag-cloud span {
  width: max-content;
  max-width: 100%;
  color: #277b72;
  background: #e5f6f3;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
}

.resource-card small {
  color: #7b8a9b;
}

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

.section-action,
.message-form button {
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.message-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.message-form input,
.message-form textarea {
  width: 100%;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  resize: vertical;
}

.map-placeholder,
.resource-player {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-top: 14px;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  color: #52657a;
  background:
    linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.72)),
    repeating-linear-gradient(45deg, #e8f1f8 0 10px, #f5f9fc 10px 20px);
  text-align: center;
}

.resource-player {
  min-height: 260px;
  gap: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 59, 120, .94), rgba(34, 167, 184, .86)),
    url("./../prototype/assets/hero-education.svg") center / cover no-repeat;
}

.resource-player strong {
  font-size: 26px;
}

.resource-player span {
  color: rgba(255, 255, 255, .82);
}

@media (max-height: 830px) and (min-width: 1000px) {
  .topbar__inner { height: 30px; }
  .header__inner { height: 62px; }
  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: 22px; }
  .hero,
  .hero__inner { min-height: 205px; }
  .hero h1 { font-size: 38px; }
  .hero p { margin: 10px 0 14px; }
  .home { gap: 10px; padding-bottom: 10px; }
  .notice-line__inner { min-height: 38px; }
  .entry { min-height: 96px; padding: 14px 20px; }
  .entry__icon { width: 54px; height: 54px; border-width: 6px; }
  .entry strong { font-size: 18px; }
  .entry small { font-size: 12px; }
  .news-panel,
  .research-panel,
  .results-panel { min-height: 216px; }
  .news-item { min-height: 39px; padding: 7px 12px; }
  .topic-list li { min-height: 32px; }
  .result-item { min-height: 54px; padding: 8px 12px; }
  .expert-panel { min-height: 102px; }
  .experts { padding: 10px 14px 12px; }
  .expert { min-height: 62px; padding: 7px 10px; }
  .avatar { width: 48px; height: 48px; }
  .footer { padding: 13px 0 9px; }
  .footer__brand img { width: 42px; height: 42px; }
  .footer__bottom { margin-top: 8px; padding-top: 7px; }
}

@media (max-width: 1080px) {
  .container {
    width: min(100% - 32px, 1260px);
  }

  .topbar__left span:nth-child(3),
  .topbar__right span {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 106px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(12, 60, 107, .12);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .quick-entry,
  .portal-grid,
  .experts,
  .footer__inner,
  .section-layout,
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }

  .section-side {
    position: static;
  }

  .feature-grid,
  .resource-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .results-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    background: #f2f6fb;
  }

  .container {
    width: min(100% - 24px, 1260px);
  }

  .topbar {
    display: none;
  }

  .header__inner {
    height: 62px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

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

  .icon-button {
    display: inline-grid;
  }

  .nav-links {
    top: 62px;
  }

  .home {
    gap: 12px;
    padding-bottom: 12px;
  }

  .hero {
    min-height: 200px;
    background:
      linear-gradient(90deg, rgba(0, 49, 92, .9) 0%, rgba(0, 62, 116, .65) 62%, rgba(0, 75, 135, .18) 100%),
      url("./../prototype/assets/hero-education.svg") center / cover no-repeat;
  }

  .hero__inner {
    min-height: 200px;
  }

  .hero h1 {
    font-size: 27px;
  }

  .hero p {
    max-width: 290px;
    margin: 9px 0 0;
    font-size: 13px;
  }

  .hero__button {
    display: none;
  }

  .notice-line__inner {
    display: none;
  }

  .quick-entry {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .entry {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    text-align: center;
  }

  .entry__icon {
    width: 38px;
    height: 38px;
    border-width: 0;
    margin: 0 auto;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-700), #1b9ad0);
    border-radius: 7px;
  }

  .entry--green .entry__icon {
    background: linear-gradient(135deg, #16a085, #42c2a8);
  }

  .entry--cyan .entry__icon {
    background: linear-gradient(135deg, #169bb0, #54c4d6);
  }

  .entry small,
  .entry em {
    display: none;
  }

  .entry strong {
    margin: 0;
    color: #21354c;
    font-size: 12px;
  }

  .portal-grid,
  .experts,
  .footer__inner,
  .footer__cols {
    grid-template-columns: 1fr;
  }

  .research-panel,
  .results-panel {
    display: none;
  }

  .panel__head {
    height: 44px;
  }

  .panel__head h2 {
    font-size: 17px;
  }

  .news-panel {
    min-height: auto;
  }

  .news-item {
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 72px;
  }

  .news-item .thumb {
    grid-row: 1 / 3;
    width: 76px;
    height: 48px;
  }

  .news-item strong {
    white-space: normal;
    line-height: 1.35;
  }

  .news-item time {
    grid-column: 2;
    text-align: left;
  }

  .expert-row {
    display: none;
  }

  .footer {
    padding: 16px 0 12px;
  }

  .footer__cols {
    display: none;
  }

  .footer__bottom {
    text-align: left;
  }

  .site-page {
    padding: 24px 0 42px;
  }

  .section-page {
    padding-top: 0;
  }

  .section-hero__inner {
    min-height: 150px;
  }

  .section-hero h1 {
    font-size: 28px;
  }

  .section-hero p {
    font-size: 14px;
  }

  .section-layout,
  .metric-grid,
  .feature-grid,
  .process-grid,
  .resource-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-side {
    display: flex;
    overflow-x: auto;
    padding: 8px;
  }

  .section-side a {
    flex: 0 0 auto;
  }

  .section-card {
    padding: 18px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .site-page__head h1 {
    font-size: 27px;
  }

  .site-search {
    grid-template-columns: 1fr;
  }

  .site-search button,
  .site-search a {
    width: 100%;
    text-align: center;
  }

  .content-card {
    padding: 16px;
  }

  .detail-article {
    padding: 22px 18px;
  }

  .detail-article h1 {
    font-size: 26px;
  }

  .detail-attachments a {
    align-items: flex-start;
    flex-direction: column;
  }
}
