:root {
  --navy-950: #04162e;
  --navy-900: #071f3f;
  --navy-800: #0a2b55;
  --navy-700: #0d3c70;
  --blue-600: #13558c;
  --red: #c81724;
  --red-dark: #9f101b;
  --red-soft: #f8eaec;
  --ink: #12233d;
  --muted: #5e6d80;
  --line: #dce3ea;
  --paper: #f4f6f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 27, 54, 0.12);
  --radius: 8px;
  --radius-small: 6px;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

ul,
ol,
dl,
dd,
p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(200, 23, 36, 0.48);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red-dark);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.utility-bar {
  display: none;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.utility-bar__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 13px;
}

.utility-bar a:hover {
  color: var(--white);
}

.nav-shell {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(7, 31, 63, 0.1);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled .nav-shell {
  box-shadow: 0 9px 30px rgba(5, 27, 54, 0.11);
}

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

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

.brand img {
  width: 61px;
  height: 45px;
  object-fit: contain;
}

.brand__name {
  max-width: 190px;
  padding-left: 12px;
  color: var(--navy-900);
  border-left: 1px solid #ccd5de;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.brand__name small {
  color: #6a7889;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  color: var(--navy-900);
  background: transparent;
  border: 1px solid #d7dee6;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 10;
  max-height: calc(100vh - 72px);
  padding: 10px 16px 24px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(4, 22, 46, 0.16);
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.site-header.is-menu-open .site-nav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav li + li {
  border-top: 1px solid #edf0f3;
}

.site-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 600;
}

.site-nav a::after {
  content: "→";
  color: var(--red);
  font-weight: 400;
}

.header-consult {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
  overflow: hidden;
}

.hero__media img {
  position: absolute;
  top: 0;
  left: 24%;
  width: auto;
  max-width: none;
  height: 260%;
  transform: translateX(-50%);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 18, 39, 0.96) 0%, rgba(3, 18, 39, 0.82) 52%, rgba(3, 18, 39, 0.58) 100%),
    linear-gradient(0deg, rgba(3, 18, 39, 0.58), rgba(3, 18, 39, 0.08));
}

.hero__inner {
  min-height: 0;
  padding-block: 56px;
  display: grid;
  gap: 34px;
}

.hero__content {
  min-width: 0;
  align-self: center;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-index::before {
  content: "";
  width: 26px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow--light {
  color: #f08790;
  text-transform: none;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 9.4vw, 3.05rem);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero h1 span {
  display: inline-block;
  color: var(--white);
  font-size: 1.18em;
  line-height: 1.08;
}

.hero__lead {
  max-width: 530px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.85;
}

.hero__actions {
  margin-top: 25px;
  display: grid;
  gap: 10px;
}

.button {
  min-height: 46px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 30px rgba(159, 16, 27, 0.2);
}

.button--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button--ghost {
  color: var(--white);
  background: rgba(4, 22, 46, 0.24);
  border-color: rgba(255, 255, 255, 0.58);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.button--navy {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button--navy:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.button--outline {
  min-width: 0;
  color: var(--navy-900);
  background: var(--white);
  border-color: #9aa8b7;
}

.button--outline:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.hero__honors {
  margin-top: 28px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__honors article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__honor-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}

.hero__honors strong,
.hero__honors small {
  display: block;
}

.hero__honors strong {
  font-size: 12px;
}

.hero__honors small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.hero-data-panel {
  min-width: 0;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 13px;
  box-shadow: 0 22px 56px rgba(2, 15, 33, 0.26);
}

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

.hero-data-card {
  min-height: 112px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border: 1px solid #e3e7eb;
  border-radius: 7px;
  box-shadow: 0 3px 12px rgba(6, 31, 63, 0.04);
}

.hero-data-card__title {
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-data-card strong {
  margin-top: 3px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.hero-data-grid > .hero-data-card:first-child strong {
  margin-top: 7px;
}

.hero-data-card > p:not(.hero-data-card__title) {
  margin-top: 6px;
  color: #7a8694;
  font-size: 8px;
  line-height: 1.35;
}

.hero-data-card--rank {
  position: relative;
}

.hero-data-card--rank::before,
.hero-data-card--rank::after {
  content: "";
  position: absolute;
  top: 48px;
  width: 20px;
  height: 31px;
  opacity: 0.56;
  border-color: #c49d51;
  border-style: solid;
}

.hero-data-card--rank::before {
  left: 10px;
  border-width: 0 0 1px 1px;
  border-radius: 0 0 0 100%;
  transform: rotate(-14deg);
}

.hero-data-card--rank::after {
  right: 10px;
  border-width: 0 1px 1px 0;
  border-radius: 0 0 100% 0;
  transform: rotate(14deg);
}

.hero-data-card--rank strong {
  font-size: 38px;
}

.hero-data-card--rank strong small {
  font-size: 9px;
  font-weight: 700;
}

.hero-data-card--identity > span {
  margin-bottom: 7px;
  color: var(--navy-800);
  font-size: 28px;
  line-height: 1;
}

.hero-data-card__institution {
  padding-bottom: 3px;
  border-bottom: 2px solid currentColor;
}

.hero-data-card--medal .hero-data-card__medal {
  width: 58px;
  height: 58px;
  margin-bottom: 5px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.hero-core-stats {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: #f2f4f6;
  border: 1px solid #e0e5e9;
  border-radius: 7px;
}

.hero-core-stats article {
  min-height: 58px;
  padding: 8px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #dce2e7;
  border-bottom: 1px solid #dce2e7;
}

.hero-core-stats article:nth-child(2n) {
  border-right: 0;
}

.hero-core-stats article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.hero-core-stats strong {
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.hero-core-stats span {
  margin-top: 2px;
  color: #5e6d80;
  font-size: 8px;
}

.section {
  padding-block: 72px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.contact h2 {
  margin-top: 9px;
  color: var(--navy-900);
  font-size: clamp(2rem, 9vw, 3.35rem);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.section-heading__intro {
  max-width: 580px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about__layout {
  display: grid;
  gap: 34px;
}

.about__content {
  align-self: center;
}

.about__content h2 {
  margin-top: 8px;
  color: var(--navy-900);
  font-size: clamp(1.9rem, 8vw, 2.55rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.about__copy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.82;
}

.about__copy p + p {
  margin-top: 13px;
}

.about-features {
  margin-block: 24px 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-features li {
  min-height: 92px;
  padding: 12px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-features__icon {
  width: 30px;
  flex: 0 0 auto;
  color: var(--navy-800);
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1;
  text-align: center;
}

.about-features__icon--ai {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-features strong,
.about-features small {
  display: block;
}

.about-features strong {
  color: var(--navy-900);
  font-size: 11px;
  line-height: 1.5;
}

.about-features small {
  margin-top: 3px;
  color: #8793a0;
  font-size: 8px;
  line-height: 1.4;
}

.about__visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #d8e0e7;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(6, 31, 63, 0.1);
}

.about__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 20, 43, 0.38), transparent 48%);
  pointer-events: none;
}

.about__visual figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  max-width: calc(100% - 36px);
  padding: 13px 16px;
  color: var(--white);
  background: rgba(5, 31, 63, 0.86);
  border-radius: 5px;
}

.about__visual figcaption strong,
.about__visual figcaption span {
  display: block;
}

.about__visual figcaption strong {
  font-size: 13px;
}

.about__visual figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid #9eacba;
}

.text-link span {
  color: var(--red);
}

.data-section {
  color: var(--ink);
  background: #fbfbfc;
  border-top: 1px solid #e7ebef;
  border-bottom: 1px solid #e7ebef;
}

.data-heading {
  margin-bottom: 18px;
}

.data-heading h2 {
  font-size: clamp(1.9rem, 8vw, 2.4rem);
}

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

.data-card {
  min-height: 102px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border: 1px solid #dfe4e9;
  border-radius: var(--radius-small);
}

.data-card strong {
  display: block;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: clamp(1.85rem, 9vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
}

.data-card h3 {
  margin-top: 9px;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.data-card p {
  margin-top: 3px;
  color: #909ba6;
  font-size: 8px;
}

.data-footer {
  margin-top: 13px;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border-top: 1px solid #e1e6eb;
}

.data-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #74808e;
  font-size: 9px;
}

.data-note span {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy-800);
  border: 1px solid #aab5c0;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.dba {
  overflow: hidden;
  background: var(--white);
}

.dba-heading {
  margin-bottom: 28px;
}

.dba-heading h2 {
  font-size: clamp(2rem, 7vw, 2.4rem);
}

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

.dba-card {
  position: relative;
  min-width: 0;
  min-height: 205px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dfe5eb;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dba-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity 180ms ease;
}

.dba-card:hover {
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(5, 27, 54, 0.11);
  transform: translateY(-4px);
}

.dba-card:hover::before {
  opacity: 1;
}

.dba-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy-800);
  border: 1px solid #cfd8e1;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.dba-card h3 {
  margin-top: 18px;
  color: var(--navy-900);
  font-size: 15px;
  line-height: 1.45;
}

.dba-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.dba-timeline {
  position: relative;
  margin-top: 34px;
  padding-left: 26px;
  display: grid;
}

.dba-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 22px;
  left: 7px;
  border-left: 1px dashed var(--navy-700);
}

.dba-timeline li {
  position: relative;
  min-height: 68px;
  padding: 0 0 16px 10px;
  display: flex;
  flex-direction: column;
}

.dba-timeline__node {
  position: absolute;
  top: 2px;
  left: -25px;
  z-index: 1;
  width: 12px;
  height: 12px;
  background: var(--navy-800);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--navy-800);
}

.dba-timeline li:nth-child(even) .dba-timeline__node {
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.dba-timeline strong,
.dba-timeline small {
  display: block;
}

.dba-timeline strong {
  color: var(--navy-900);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.dba-timeline small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.dba-footer {
  margin-top: 4px;
  display: flex;
  justify-content: flex-end;
}

.alumni {
  background: var(--paper);
}

.alumni .section-heading h2,
.news .section-heading h2 {
  font-size: clamp(2rem, 7vw, 2.4rem);
}

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

.alumni-card {
  position: relative;
  min-width: 0;
  min-height: 154px;
  padding: 20px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e3e8ed;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.alumni-card::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 3px;
  background: var(--red);
}

.alumni-card:hover {
  z-index: 1;
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(5, 27, 54, 0.12);
  transform: translateY(-5px);
}

.alumni-card__portrait {
  width: 82px;
  height: 82px;
  overflow: hidden;
  background: #e8ecf0;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #dce2e8, 0 8px 20px rgba(6, 31, 63, 0.1);
}

.alumni-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.alumni-card__tag {
  overflow: hidden;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alumni-card h3 {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 15px;
  line-height: 1.4;
}

.alumni-card__content > p:last-child {
  margin-top: 7px;
  color: #7d8997;
  font-size: 10px;
  line-height: 1.65;
}

.news {
  background: var(--white);
}

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

.news-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #dfe5eb;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  box-shadow: 0 18px 50px rgba(5, 27, 54, 0.11);
  transform: translateY(-4px);
}

.news-card__media {
  position: relative;
  height: 210px;
  display: block;
  overflow: hidden;
  background: #d9e0e7;
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 22, 46, 0.47), transparent 60%);
}

.news-card__media img {
  position: absolute;
  width: auto;
  max-width: none;
  height: 300%;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.news-card:hover .news-card__media img {
  transform: scale(1.03);
}

.news-card--one .news-card__media img {
  top: 0;
  right: 0;
}

.news-card--two .news-card__media img {
  top: -195%;
  right: 0;
  height: 500%;
}

.news-card--three .news-card__media img {
  right: -15%;
  bottom: 0;
}

.news-card__category {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  padding: 5px 10px;
  color: var(--white);
  background: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.news-card__body {
  padding: 22px 20px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-card__date {
  color: #8b97a5;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.news-card h3 {
  margin-top: 9px;
  color: var(--navy-900);
  font-size: 17px;
  line-height: 1.55;
}

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

.news-card__body > p:not(.news-card__date) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.news-card__more {
  margin-top: auto;
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  color: var(--red-dark);
  border-top: 1px solid #e8ecf0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 94%, rgba(10, 43, 85, 0.07), transparent 24%),
    #f6f7f9;
  border-top: 1px solid #e4e8ed;
}

.contact__inner {
  display: grid;
  gap: 36px;
}

.contact__copy {
  align-self: center;
}

.contact h2 {
  margin-top: 9px;
}

.contact__lead {
  max-width: 500px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.contact-details {
  margin-top: 34px;
  display: grid;
  gap: 22px;
  font-style: normal;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.contact-details__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
}

.contact-details strong,
.contact-details p {
  display: block;
}

.contact-details strong {
  color: var(--navy-900);
  font-size: 12px;
}

.contact-details p {
  margin-top: 3px;
  color: #526277;
  font-size: 13px;
  line-height: 1.55;
}

.contact-wechat {
  width: min(100%, 310px);
  margin-top: 26px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid #dbe2e9;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(5, 27, 54, 0.07);
}

.contact-wechat img {
  width: 128px;
  height: 128px;
  flex: 0 0 auto;
  object-fit: contain;
  background: var(--white);
}

.contact-wechat figcaption,
.contact-wechat strong,
.contact-wechat span {
  display: block;
}

.contact-wechat strong {
  color: var(--navy-900);
  font-size: 14px;
}

.contact-wechat span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.contact-form {
  min-width: 0;
  padding: 28px 22px 24px;
  background: var(--white);
  border: 1px solid #dbe2e9;
  border-radius: var(--radius);
  box-shadow: 0 20px 56px rgba(5, 27, 54, 0.09);
}

.contact-form__heading {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6eaee;
}

.contact-form__heading p {
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-form__heading h3 {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 16px;
  line-height: 1.5;
}

.contact-form__grid {
  display: grid;
  gap: 14px;
}

.contact-form label,
.contact-form label > span {
  display: block;
}

.contact-form label > span {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #d9e0e7;
  border-radius: 4px;
  font: inherit;
  font-size: 12px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(13, 60, 112, 0.1);
}

.contact-form input::placeholder {
  color: #9aa5b1;
}

.contact-form__submit {
  width: 100%;
  max-width: 200px;
  margin: 20px auto 0;
  display: flex;
  cursor: pointer;
}

.contact-form__note {
  margin-top: 9px;
  color: #8c97a3;
  font-size: 9px;
  text-align: center;
}

.form-status {
  min-height: 18px;
  margin-top: 8px;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.form-status.is-error {
  color: var(--red-dark);
}

.form-status.is-success {
  color: var(--navy-700);
}

.consult-float {
  display: none;
}

.wechat-popover[hidden],
.consult-modal[hidden],
.mobile-consult [hidden] {
  display: none !important;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  align-items: end;
}

.consult-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 19, 41, 0.7);
  backdrop-filter: blur(2px);
}

.consult-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: calc(100vh - 12px);
  max-height: calc(100dvh - 12px);
  padding: 28px 18px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -22px 70px rgba(3, 19, 41, 0.24);
  -webkit-overflow-scrolling: touch;
}

.consult-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: #f0f3f6;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
}

.consult-dialog__header {
  padding: 4px 48px 18px 0;
  border-bottom: 1px solid var(--line);
}

.consult-dialog__header > p {
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.consult-dialog__header h2 {
  margin-top: 6px;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.45;
}

.consult-dialog__header h2 span {
  display: block;
}

.consult-dialog__header > span {
  margin-top: 7px;
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.consult-dialog__form {
  padding-top: 19px;
}

.consult-dialog__grid {
  display: grid;
  gap: 14px;
}

.consult-dialog__form label,
.consult-dialog__form label > span {
  display: block;
}

.consult-dialog__form label > span {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.consult-dialog__form input,
.consult-dialog__form select {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #d7dfe7;
  border-radius: var(--radius-small);
  outline: 0;
  font: inherit;
  font-size: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.consult-dialog__form input:focus,
.consult-dialog__form select:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(13, 60, 112, 0.11);
}

.consult-dialog__form input::placeholder {
  color: #98a3af;
}

.consult-dialog__submit {
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.consult-dialog__note {
  margin-top: 3px;
  color: #8995a2;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.site-footer {
  padding-bottom: calc(66px + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-900);
}

.site-footer__top {
  padding-block: 60px 42px;
  display: grid;
  gap: 40px;
}

.footer-brand img {
  width: 132px;
  height: auto;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.footer-brand p {
  margin-top: 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.footer-brand span {
  margin-top: 7px;
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.site-footer h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 13px;
}

.footer-map ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-map a {
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-map a:hover {
  color: var(--white);
}

.footer-social p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.footer-social__icons {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.footer-social__icons span,
.footer-social__icons a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.site-footer__bottom {
  padding-block: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.mobile-consult {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  height: calc(66px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 -8px 28px rgba(4, 22, 46, 0.22);
}

.mobile-consult > a,
.mobile-consult > button {
  min-width: 0;
  min-height: 66px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.mobile-consult > a span,
.mobile-consult > button span {
  font-size: 18px;
  line-height: 1;
}

.mobile-consult b {
  font: inherit;
  white-space: nowrap;
}

.mobile-consult .mobile-consult__open {
  background: var(--red);
}

@media (min-width: 560px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .hero__actions {
    display: flex;
    align-items: center;
  }

  .button {
    min-width: 166px;
  }

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

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

  .hero-core-stats article,
  .hero-core-stats article:nth-child(2n),
  .hero-core-stats article:nth-last-child(-n + 2) {
    border-right: 1px solid #dce2e7;
    border-bottom: 0;
  }

  .hero-core-stats article:last-child {
    border-right: 0;
  }

  .data-card {
    padding: 15px 10px;
  }

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

  .alumni-card {
    padding: 18px;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 13px;
  }

  .alumni-card__portrait {
    width: 72px;
    height: 72px;
  }

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

  .contact-form__heading h3 {
    font-size: 18px;
  }
}

@media (min-width: 760px) {
  .section {
    padding-block: 96px;
  }

  .section-heading--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
  }

  .section-heading__intro {
    margin-top: 0;
    padding-bottom: 5px;
  }

  .about,
  .data-section {
    padding-block: 60px;
  }

  .dba {
    padding-block: 56px;
  }

  .alumni,
  .news {
    padding-block: 72px;
  }

  .data-section {
    padding-block: 38px;
  }

  .about__visual {
    min-height: 360px;
  }

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

  .data-card {
    min-height: 100px;
  }

  .data-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .dba-card {
    min-height: 222px;
  }

  .dba-timeline {
    margin-top: 38px;
    padding: 24px 0 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .dba-timeline::before {
    top: 8px;
    right: 0;
    bottom: auto;
    left: 0;
    border-top: 1px dashed var(--navy-700);
    border-left: 0;
  }

  .dba-timeline li {
    min-height: 0;
    padding: 0 8px;
    align-items: center;
    text-align: center;
  }

  .dba-timeline__node {
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .news-grid {
    gap: 14px;
  }

  .news-card {
    min-height: 180px;
    display: grid;
    grid-template-columns: minmax(140px, 0.4fr) minmax(0, 0.6fr);
  }

  .news-card__media {
    height: 100%;
    min-height: 180px;
  }

  .site-footer__top {
    grid-template-columns: 1.15fr 1fr 0.8fr;
    gap: 56px;
  }
}

@media (min-width: 760px) and (hover: hover) and (pointer: fine) {
  .consult-modal {
    padding: 24px;
    align-items: center;
  }

  .consult-dialog {
    width: min(100%, 780px);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    margin-inline: auto;
    padding: 34px 36px 30px;
    border-radius: 10px;
    box-shadow: 0 28px 90px rgba(3, 19, 41, 0.3);
  }

  .consult-dialog__close {
    top: 16px;
    right: 16px;
  }

  .consult-dialog__header {
    padding-right: 60px;
  }

  .consult-dialog__header h2 {
    font-size: 25px;
  }

  .consult-dialog__header h2 span {
    display: inline;
  }

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

  .consult-dialog__form input,
  .consult-dialog__form select {
    height: 48px;
    font-size: 13px;
  }

  .consult-dialog__submit {
    max-width: 220px;
    margin-inline: auto;
  }

  .consult-float {
    position: fixed;
    right: 16px;
    bottom: 88px;
    z-index: 180;
    display: grid;
    overflow: visible;
    color: var(--white);
    background: rgba(7, 31, 63, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-small);
    box-shadow: 0 16px 42px rgba(4, 22, 46, 0.26);
  }

  .consult-float__item {
    width: 64px;
    min-height: 66px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    font-size: 9px;
    line-height: 1.35;
    transition: background 180ms ease;
  }

  .consult-float__item:hover,
  .consult-float__item:focus-visible {
    background: var(--navy-700);
  }

  .consult-float__item--accent {
    background: var(--red);
  }

  .consult-float__item--accent:hover,
  .consult-float__item--accent:focus-visible {
    background: var(--red-dark);
  }

  .consult-float__item:last-child {
    border-bottom: 0;
  }

  .consult-float__item > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
  }

  .wechat-popover {
    position: absolute;
    top: 58px;
    right: calc(100% + 14px);
    width: 210px;
    padding: 15px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #dce3ea;
    border-radius: var(--radius);
    box-shadow: 0 18px 52px rgba(4, 22, 46, 0.23);
    text-align: center;
  }

  .wechat-popover::after {
    content: "";
    position: absolute;
    top: 29px;
    right: -7px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid #dce3ea;
    border-right: 1px solid #dce3ea;
    transform: rotate(45deg);
  }

  .wechat-popover img {
    width: 178px;
    height: 182px;
    margin-inline: auto;
    object-fit: contain;
    background: var(--white);
  }

  .wechat-popover strong {
    margin-top: 9px;
    display: block;
    color: var(--navy-900);
    font-size: 14px;
  }

  .wechat-popover p {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .mobile-consult {
    display: none;
  }
}

@media (min-width: 760px) and (max-width: 960px) and (max-height: 540px) {
  .consult-float {
    display: none;
  }

  .mobile-consult {
    display: grid;
  }

  .site-footer {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .consult-modal {
    padding: 0;
    align-items: end;
  }

  .consult-dialog {
    width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    margin: 0;
    padding: 24px 18px calc(20px + env(safe-area-inset-bottom));
    border-radius: 14px 14px 0 0;
  }

  .consult-dialog__header h2 {
    font-size: 20px;
  }

  .consult-dialog__header h2 span {
    display: block;
  }

  .consult-dialog__grid {
    grid-template-columns: 1fr;
  }

  .consult-dialog__form input,
  .consult-dialog__form select {
    height: 50px;
    font-size: 16px;
  }

  .consult-dialog__submit {
    max-width: none;
    margin-inline: 0;
  }
}

@media (min-width: 980px) {
  .hero__inner {
    min-height: 540px;
    padding-block: 40px;
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    align-items: center;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 2.8vw, 2.8rem);
  }

  .hero__lead {
    font-size: 13px;
  }

  .hero-data-panel {
    padding: 11px;
    display: flex;
    align-self: center;
    flex-direction: column;
    height: 400px;
  }

  .hero-data-grid {
    flex: 1;
  }

  .hero-data-card {
    min-height: 0;
  }

  .about__layout {
    grid-template-columns: minmax(390px, 0.43fr) minmax(0, 0.57fr);
    align-items: center;
    gap: 38px;
  }

  .about__visual {
    min-height: 440px;
  }

  .about-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-features li {
    min-height: 106px;
    padding: 12px 5px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .about-features strong {
    font-size: 10px;
  }

  .data-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .data-section {
    padding-block: 34px;
  }

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

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

  .contact__inner {
    grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
    align-items: center;
    gap: 56px;
  }
}

@media (min-width: 1100px) {
  .dba-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 11px;
  }

  .dba-card {
    min-height: 228px;
    padding: 22px 16px 20px;
  }
}

@media (min-width: 1180px) {
  html {
    scroll-padding-top: 120px;
  }

  body {
    padding-bottom: 0;
  }

  .utility-bar {
    display: block;
  }

  .nav-shell__inner {
    min-height: 86px;
    gap: 24px;
  }

  .brand img {
    width: 72px;
    height: 53px;
  }

  .brand__name {
    max-width: none;
    font-size: 13px;
    white-space: nowrap;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    max-height: none;
    padding: 0;
    flex: 1;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    transition: none;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 1.8vw, 31px);
  }

  .site-nav li + li {
    border: 0;
  }

  .site-nav a {
    position: relative;
    min-height: 86px;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--red);
    opacity: 0;
    transform: scaleX(0.3);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a:hover::after,
  .site-nav a.is-current::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .header-consult {
    min-height: 42px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: var(--navy-900);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 180ms ease;
  }

  .header-consult:hover {
    background: var(--red-dark);
  }

  .hero__inner {
    min-height: 550px;
    padding-block: 42px;
  }

  .hero-data-panel {
    height: auto;
    align-self: stretch;
  }

  .hero-data-card {
    min-height: 135px;
  }

  .hero-core-stats article {
    min-height: 62px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 2.8vw, 2.9rem);
  }

  .hero__lead {
    font-size: 13px;
  }

  .hero__scroll {
    position: absolute;
    right: 29px;
    bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.56);
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }

  .hero__scroll i {
    width: 1px;
    height: 38px;
    display: block;
    background: linear-gradient(var(--red) 40%, rgba(255, 255, 255, 0.35) 40%);
  }

}

@media (min-width: 1320px) {
  .brand__name {
    font-size: 14px;
  }

  .header-consult {
    padding-inline: 18px;
  }
}

@media (max-width: 480px) {
  .brand__name {
    max-width: 160px;
    font-size: 10px;
  }
}

@media (max-width: 430px) {
  .site-footer {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .hero-data-card > p:not(.hero-data-card__title),
  .hero-core-stats span,
  .data-card p {
    font-size: 9px;
  }

  .about-features strong {
    font-size: 12px;
  }

  .about-features small,
  .data-note,
  .dba-timeline small,
  .site-footer__bottom {
    font-size: 10px;
  }

  .dba-card {
    min-height: 0;
    padding: 20px 18px;
  }

  .dba-card h3 {
    margin-top: 14px;
  }

  .dba-card p,
  .alumni-card__content > p:last-child {
    font-size: 11px;
  }

  .dba-timeline li {
    min-height: 58px;
  }
}

@media (max-width: 370px) {
  .brand__name {
    display: none;
  }

  .data-card {
    min-height: 112px;
    padding-inline: 7px;
  }

  .data-card h3 {
    font-size: 9px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* WordPress V1 adapter */
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a { color: var(--red); }
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after { transform: scaleX(1); }
.news-list-card__media img { width:100%; height:100%; object-fit:cover; display:block; }
.uga-article { max-width: 980px; margin: 0 auto; }
.uga-article__cover { margin: 0 0 28px; }
.uga-article__cover img { width:100%; height:auto; border-radius:18px; display:block; }
.uga-article__content { font-size:17px; line-height:1.95; color:var(--navy-700); }
.uga-article__content img { max-width:100%; height:auto; border-radius:12px; }
.uga-article__content h2,.uga-article__content h3 { color:var(--navy-900); margin-top:1.8em; }
@media (max-width:767px){ .uga-article__content{font-size:16px;} }


/* WP V1.1：底部备案号预留区 */
.footer-icp {
  text-align: center;
}
.footer-icp a,
.footer-icp span {
  color: inherit;
  transition: color 180ms ease;
}
.footer-icp a:hover {
  color: var(--white);
}


/* UGA V6：页脚固定微信二维码 */
.footer-wechat-qr {
  width: 94px;
  margin-top: 14px;
  display: block;
  padding: 5px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.footer-wechat-qr img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-wechat-qr:hover {
  transform: translateY(-1px);
}

@media (max-width: 759px) {
  .footer-wechat-qr {
    width: 88px;
  }
}


/* UGA V6.2：备案链接 + 友情链接 */
.site-footer .footer-bottom a,
.footer-friend-links a {
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-bottom a:hover,
.footer-friend-links a:hover {
  text-decoration: underline;
}

.footer-friend-links {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.8;
}

.footer-friend-links__label {
  flex: 0 0 auto;
  color: rgba(255,255,255,.88);
}

.footer-friend-links__items {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.footer-friend-links__items a {
  color: rgba(255,255,255,.72);
}

@media (max-width: 759px) {
  .footer-friend-links {
    padding: 0 20px 20px;
    display: block;
  }
  .footer-friend-links__label {
    display: block;
    margin-bottom: 4px;
  }
}


/* UGA V6.4：页脚富文本备案与友情链接 */
.footer-rich-text p {
  margin: 0;
}

.footer-rich-text a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.28);
}

.footer-rich-text a:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.82);
}

.site-footer__bottom .footer-icp {
  text-align: center;
}

.footer-friend-links__items.footer-rich-text {
  display: block;
}

.footer-friend-links__items.footer-rich-text a {
  display: inline-block;
  margin-right: 18px;
}


/* UGA V6.6：文章上一篇 / 下一篇内链 */
.uga-article-nav {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(8, 39, 76, .12);
}

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

.uga-article-nav__item {
  padding: 18px 20px;
  border: 1px solid rgba(8, 39, 76, .12);
  border-radius: 10px;
  background: #fff;
}

.uga-article-nav__item span {
  display: block;
  margin-bottom: 7px;
  color: #d4142a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.uga-article-nav__item a {
  color: #08274c;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.65;
}

.uga-article-nav__item a:hover {
  color: #d4142a;
}

.uga-article-nav__item p {
  margin: 0;
  color: #7c8796;
}

.uga-article-nav__item--next {
  text-align: right;
}

.uga-article-nav__back {
  margin-top: 18px;
  text-align: center;
}

.uga-article-nav__back a {
  color: #08274c;
  text-decoration: none;
  font-weight: 700;
}

.uga-article-nav__back a:hover {
  color: #d4142a;
}

@media (max-width: 759px) {
  .uga-article-nav__grid {
    grid-template-columns: 1fr;
  }

  .uga-article-nav__item--next {
    text-align: left;
  }
}


/* UGA V6.7：新闻列表紧凑化与SEO/性能友好布局 */
.news-grid,
.news-list,
.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.news-card,
.news-list__card,
.news-archive-card {
  width: 100%;
  max-width: none;
  height: 100%;
}

.news-card__media,
.news-card__image-wrap,
.news-archive-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card__media img,
.news-card__image-wrap img,
.news-archive-card__media img,
.news-card img.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body,
.news-archive-card__body {
  padding: 18px 18px 20px;
}

.news-card__title,
.news-archive-card__title {
  font-size: 17px;
  line-height: 1.6;
}

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

@media (max-width: 640px) {
  .news-grid,
  .news-list,
  .news-archive-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* UGA V6.8：新闻卡片最终尺寸锁定 */
.news-grid,
.news-list,
.news-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 380px)) !important;
  justify-content: start;
  gap: 24px !important;
}

.news-card,
.news-list__card,
.news-archive-card {
  width: 100% !important;
  max-width: 380px !important;
}

.news-card__media,
.news-card__image-wrap,
.news-archive-card__media {
  aspect-ratio: 16 / 9 !important;
  max-height: 214px;
  overflow: hidden;
}

.news-card__media img,
.news-card__image-wrap img,
.news-archive-card__media img,
.news-card img.news-card__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.news-card__body,
.news-archive-card__body {
  padding: 16px 16px 18px !important;
}

.news-card__title,
.news-archive-card__title {
  font-size: 16px !important;
  line-height: 1.55 !important;
}

@media (max-width: 1180px) {
  .news-grid,
  .news-list,
  .news-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 380px)) !important;
  }
}

@media (max-width: 640px) {
  .news-grid,
  .news-list,
  .news-archive-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .news-card,
  .news-list__card,
  .news-archive-card {
    max-width: 100% !important;
  }

  .news-card__media,
  .news-card__image-wrap,
  .news-archive-card__media {
    max-height: none;
  }
}


/* UGA V7：反垃圾蜜罐字段，正常访客不可见 */
.uga-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* =========================================================
 * UGA V8：防复制与图片保护
 * 不改变HTML正文，因此不影响搜索引擎读取与索引。
 * ========================================================= */
.uga-content-protected {
  -webkit-touch-callout: none;
}

.uga-content-protected main,
.uga-content-protected .site-header,
.uga-content-protected .site-footer,
.uga-content-protected .consult-float,
.uga-content-protected .consult-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.uga-content-protected img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

/* 表单必须继续允许正常输入、选择与粘贴 */
.uga-content-protected input,
.uga-content-protected textarea,
.uga-content-protected select,
.uga-content-protected option,
.uga-content-protected [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default;
}


/* UGA V9.0.2：来访时间提示 */
.uga-visit-note {
  display: block;
  margin: 4px 0 7px;
  font-size: 13px;
  line-height: 1.5;
  color: #d71920;
  font-weight: 500;
}

/* =========================================================
 * UGA V9.1：AI / SEO / GEO 文章结构
 * ========================================================= */
.uga-ai-answer{margin:0 0 28px;padding:20px 22px;border-left:4px solid #d71920;background:#f7f9fc;border-radius:0 8px 8px 0}
.uga-ai-answer__label{margin:0 0 6px!important;font-size:13px!important;font-weight:700;letter-spacing:.08em;color:#d71920}
.uga-ai-facts{margin:28px 0;padding:20px 24px;background:#f8fafc;border:1px solid #e5e9ef;border-radius:8px}.uga-ai-facts ul{margin-bottom:0}
.uga-ai-source-image{margin:30px auto;text-align:center}.uga-ai-source-image img{display:block;max-width:100%;height:auto;margin:auto;border-radius:6px}
.uga-ai-faq{margin-top:36px}.uga-ai-faq h3{margin-top:22px;font-size:1.08em}.uga-ai-related{margin-top:34px;padding-top:20px;border-top:1px solid #e5e9ef}
.uga-ai-update{margin-top:24px;color:#657084}.uga-ai-contact{margin:36px 0 8px;padding:24px;background:#f8fafc;border:1px solid #e5e9ef;border-radius:10px;text-align:center}.uga-ai-contact__text{margin-bottom:16px;line-height:1.8}.uga-ai-contact img{display:block;width:min(680px,100%);height:auto;margin:0 auto;border-radius:8px}


/* V9.2.6 新闻统一品牌封面 */
.news-card__media img.uga-news-unified-cover,
.news-card--one .news-card__media img.uga-news-unified-cover,
.news-card--two .news-card__media img.uga-news-unified-cover,
.news-card--three .news-card__media img.uga-news-unified-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news-card:hover .news-card__media img.uga-news-unified-cover { transform: scale(1.025); }
.uga-article__cover--brand img { width:100%; aspect-ratio:16/9; object-fit:cover; object-position:center; }


/* =========================================================
   UGA V9.4.1：首页新闻卡片显示修复
   仅修首页新闻活动卡片：恢复日期 / 标题 / 摘要 / 查看详情。
   不影响新闻内页、自动发文、微信桥接及其他模块。
   ========================================================= */
body.home .news .news-grid .news-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 380px !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

body.home .news .news-grid .news-card__media {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  flex: 0 0 auto !important;
}

body.home .news .news-grid .news-card__body {
  position: relative !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 218px !important;
  padding: 18px 18px 20px !important;
  overflow: visible !important;
  background: #fff !important;
}

body.home .news .news-grid .news-card__date {
  margin: 0 !important;
}

body.home .news .news-grid .news-card h3 {
  margin: 9px 0 0 !important;
  min-height: calc(1.55em * 2) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

body.home .news .news-grid .news-card__body > p:not(.news-card__date) {
  margin: 10px 0 16px !important;
  min-height: calc(1.75em * 2) !important;
  line-height: 1.75 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

body.home .news .news-grid .news-card__more {
  margin-top: auto !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 640px) {
  body.home .news .news-grid .news-card {
    max-width: 100% !important;
  }
  body.home .news .news-grid .news-card__body {
    min-height: 208px !important;
  }
}
