:root {
  --ink: #182333;
  --muted: #5f6f82;
  --line: #dbe3ec;
  --paper: #ffffff;
  --wash: #f4f7fa;
  --navy: #12385a;
  --navy-2: #0b2a47;
  --red: #9b1c31;
  --gold: #b58a45;
  --teal: #2c7f86;
  --shadow: 0 18px 45px rgba(18, 56, 90, .14);
  --radius: 8px;
  --wrap: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Serif SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
  line-height: 1.7;
}

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

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

i[class^="ri-"],
i[class*=" ri-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(15, 38, 64, .08);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease;
}

.site-header.is-compact {
  box-shadow: 0 8px 26px rgba(15, 38, 64, .14);
}

.top-strip {
  max-height: 28px;
  overflow: hidden;
  background: var(--navy-2);
  color: rgba(255, 255, 255, .88);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  opacity: 1;
  transition: max-height .18s ease, opacity .12s ease;
}

.top-strip__inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.top-strip__inner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-strip__inner i {
  color: #f1d8a2;
  font-size: 14px;
}

.top-strip__inner span:first-child {
  margin-right: auto;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.masthead {
  min-height: 62px;
  max-height: 62px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height .18s ease, min-height .18s ease, opacity .12s ease, transform .18s ease;
}

.site-header.is-compact .top-strip,
.site-header.is-compact .masthead {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.site-header.is-compact .masthead {
  transform: translateY(-6px);
}

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

.brand > span:last-child {
  min-width: 0;
  display: grid;
  align-content: center;
  flex: 1;
  gap: 3px;
}

.brand__mark {
  width: 68px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #185987);
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: .03em;
}

.brand strong {
  display: block;
  color: var(--navy-2);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: .04em;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.2;
  letter-spacing: .04em;
  white-space: nowrap;
}

.nav-toggle {
  width: 42px;
  height: 38px;
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.main-nav {
  background: var(--navy);
  color: #fff;
}

.main-nav__inner {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.main-nav a {
  flex: 1;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border-left: 1px solid rgba(255, 255, 255, .16);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
}

.main-nav i {
  font-size: 16px;
}

.main-nav a:last-child {
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: var(--red);
  outline: none;
}

.hero {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-2);
}

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

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 26, 45, .92), rgba(8, 26, 45, .72) 44%, rgba(8, 26, 45, .16)),
    linear-gradient(0deg, rgba(8, 26, 45, .38), rgba(8, 26, 45, 0));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 94px 0 108px;
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 12px;
  color: var(--red);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d8a2;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: .04em;
}

.hero__lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 19px;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.notice-band a::after {
  content: "\ea6c";
  font-family: "remixicon";
  font-weight: 400;
  line-height: 1;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--light {
  background: rgba(255, 255, 255, .92);
  color: var(--navy-2);
}

.notice-band {
  background: #f8f2e6;
  border-bottom: 1px solid #eadfca;
}

.notice-band__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.notice-band strong,
.notice-band span {
  display: inline-block;
}

.notice-band strong {
  color: var(--red);
  margin-right: 18px;
  font-size: 20px;
}

.notice-band span {
  color: #514738;
}

.notice-band a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.section {
  padding: 75px 0;
}

.section--tint {
  background: var(--wash);
}

.section--deep {
  color: #fff;
  background: var(--navy-2);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 58px;
  align-items: start;
}

.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(24px, 1.2vw, 32px);
  line-height: 1.25;
  letter-spacing: .02em;
}

.section--deep h2,
.section--deep .section-kicker {
  color: #fff;
}

.section-lead,
.section-heading p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.section--deep .section-heading p {
  color: rgba(255, 255, 255, .72);
}

.section-lead {
  margin: 22px 0 0;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.info-panel {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  /*border-top: 4px solid var(--red);*/
  border-radius: var(--radius);
  /*box-shadow: var(--shadow);*/
}

.info-panel h3 {
  margin: 0 0 18px;
  color: var(--navy-2);
  font-size: 24px;
}

.overview .info-panel--compact {
  padding: 24px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.overview .info-panel--compact h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.overview .info-panel--compact .path-list li {
  min-height: auto;
  padding: 16px 0 16px 44px;
  border-bottom: 1px solid var(--line);
}

.overview .info-panel--compact .path-list li:first-child {
  padding-top: 4px;
}

.overview .info-panel--compact .path-list li + li {
  margin-top: 0;
}

.overview .info-panel--compact .path-list li::before {
  top: 18px;
  width: 26px;
  height: 26px;
  background: var(--wash);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
}

.overview .info-panel--compact .path-list li:first-child::before {
  top: 6px;
}

.path-list {
  margin: 0;
  padding: 0;
  counter-reset: path;
  list-style: none;
}

.path-list li {
  position: relative;
  padding-left: 48px;
}

.path-list li + li {
  margin-top: 22px;
}

.path-list li::before {
  counter-increment: path;
  content: counter(path);
  position: absolute;
  left: 0;
  top: 3px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.path-list strong,
.path-list span {
  display: block;
}

.path-list strong {
  color: var(--navy-2);
}

.path-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.stat-row div {
  min-height: 100px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-row strong {
  display: block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

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

.section-heading--split h2 {
  max-width: 760px;
}

.section-heading--light .section-kicker {
  color: #f1d8a2;
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1fr);
  gap: 24px;
}

.partner-feature,
.partner-list article,
.service-grid article,
.admission-card,
.news-main,
.resource-shelf article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.partner-feature {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.partner-feature img {
  width: 100%;
  height: 330px;
  /*object-fit: cover;*/
}

.partner-feature div {
  padding: 20px 24px;
}

.partner-feature h3,
.partner-list h3,
.major-card h3,
.admission-card h3,
.news-main h3,
.news-list h3,
.service-grid h3,
.resource-shelf h3 {
  margin: 0;
  color: var(--navy-2);
  line-height: 1.35;
}

.partner-feature h3,
.partner-list h3,
.major-card h3,
.admission-card h3,
.service-grid h3,
.resource-shelf h3 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.partner-feature h3::before,
.partner-list h3::before,
.major-card h3::before,
.admission-card h3::before,
.service-grid h3::before,
.resource-shelf h3::before {
  flex: 0 0 auto;
  margin-top: .15em;
  color: var(--red);
  font-family: "remixicon";
  font-size: 1.05em;
  font-weight: 400;
  line-height: 1;
}

.partner-feature h3::before,
.partner-list h3::before {
  content: "\f35a";
}

.major-card h3::before {
  content: "\f333";
}

.admission-card h3::before {
  content: "\ecef";
}

.service-grid h3::before,
.resource-shelf h3::before {
  content: "\f0e2";
}

.partner-feature p,
.partner-list p,
.major-card p,
.admission-card p,
.service-grid p,
.resource-shelf p,
.news-main p {
  color: var(--muted);
}

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

.partner-list article {
  padding: 24px;
}

.overseas-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  color: var(--navy-2);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.overseas-row span {
  color: var(--muted);
  margin-right: 8px;
}

.overseas-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: #f8f2e6;
  border-radius: 4px;
  font-size: 14px;
}

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

.major-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(18, 56, 90, .08);
}

.major-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  object-position: top;
  background: #edf3f7;
}

.major-card__body {
  padding: 24px;
}

.major-card ul {
  margin: 18px 0;
  padding-left: 18px;
  color: var(--ink);
}

.major-card li + li {
  margin-top: 8px;
}

.major-card a,
.admission-card a,
.resource-shelf a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

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

.admission-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, .96);
}

.admission-card--primary {
  grid-column: auto;
}

.admission-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--red);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 13px;
}

.admission-card span::before {
  content: "\eced";
  font-family: "remixicon";
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.admission-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.admission-card dl:last-of-type {
  margin-bottom: 18px;
}

.admission-card dt {
  color: var(--muted);
  font-size: 13px;
}

.admission-card dd {
  margin: 0;
  color: var(--navy-2);
  font-weight: 800;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admission-card > a,
.admission-card .link-row {
  margin-top: auto;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .22);
}

.process-strip span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  text-align: center;
  font-weight: 800;
}

.process-strip span::before {
  content: "\eb79";
  flex: 0 0 auto;
  color: #f1d8a2;
  font-family: "remixicon";
  font-weight: 400;
  line-height: 1;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) 430px;
  gap: 24px;
}

.news-main {
  overflow: hidden;
}

.news-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-main div {
  padding: 22px 24px;
}

.news-main time,
.news-list time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.news-main time::before,
.news-list time::before,
.news-article-list time::before {
  content: "\eb27";
  font-family: "remixicon";
  font-weight: 400;
  line-height: 1;
}

.news-list {
  border-top: 3px solid var(--navy);
}

.news-list article {
  min-height: 98px;
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.news-list article a {
  width: 100%;
}

.news-list h3 {
  margin-top: 6px;
  font-size: 17px;
}

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

.service-grid article {
  padding: 24px;
}

.resource-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.resource-shelf article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  overflow: hidden;
}

.resource-shelf img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  background: #edf3f7;
}

.resource-shelf div {
  padding: 24px;
}

.contact-section {
  padding: 46px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.contact-section h2,
.contact-section .section-kicker {
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, .76);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
  gap: 30px;
  align-items: start;
}

.contact-intro > p {
  max-width: 660px;
  margin: 12px 0 0;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.contact-list p {
  min-height: 62px;
  margin: 0;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
}

.contact-list strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f1d8a2;
  font-size: 13px;
  line-height: 1.35;
}

.contact-list i {
  font-size: 15px;
}

.contact-list span {
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.contact-form {
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(7, 27, 46, .18);
}

.contact-form__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.contact-form h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 20px;
  line-height: 1.25;
}

.contact-form__head p,
.contact-form__actions p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.contact-form label {
  display: grid;
  gap: 5px;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 8px 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.contact-form input {
  min-height: 38px;
}

.contact-form textarea {
  min-height: 78px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form__message {
  grid-column: 1 / -1;
}

.contact-form__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.contact-form button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 16px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 5px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.contact-form button:disabled {
  opacity: .7;
  cursor: wait;
}

.contact-form__actions p {
  min-height: 20px;
  color: var(--red);
  font-weight: 800;
}

.contact-form__actions p.is-ok {
  color: var(--teal);
}

.contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
}

.contact-card p {
  margin: 0;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
}

.site-footer {
  color: rgba(255, 255, 255, .76);
  background: #071b2e;
}

.site-footer__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
}

.site-footer a::before {
  content: "\ea76";
  font-family: "remixicon";
  font-weight: 400;
  line-height: 1;
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-2);
}

.page-hero__image,
.page-hero__shade {
  position: absolute;
  inset: 0;
}

.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__image--top {
  object-position: top;
}

.page-hero__shade {
  background: linear-gradient(90deg, rgba(8, 26, 45, .94), rgba(8, 26, 45, .78) 46%, rgba(8, 26, 45, .34));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 74px 0;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: .04em;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.portal-grid,
.feature-grid,
.institution-grid,
.school-list,
.compare-grid,
.download-grid,
.path-cards,
.handbook-grid,
.news-article-list {
  display: grid;
  gap: 22px;
}

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

.portal-card,
.feature-grid article,
.institution-grid article,
.school-list article,
.compare-grid article,
.path-cards article,
.news-article-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.portal-card {
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(18, 56, 90, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.portal-card:hover,
.portal-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(155, 28, 49, .32);
  box-shadow: 0 18px 38px rgba(18, 56, 90, .12);
  outline: none;
}

.portal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  background: #edf3f7;
}

.portal-card div,
.feature-grid article,
.school-list article,
.compare-grid article{
  padding: 24px;
}

.path-cards article {
  padding: 20px;
}

.portal-card h3,
.feature-grid h3,
.institution-grid h3,
.school-list h3,
.compare-grid h3,
.path-cards h3,
.news-article-list h2 {
  margin: 0;
  color: var(--navy-2);
  line-height: 1.35;
}

.portal-card h3,
.feature-grid h3,
.institution-grid h3,
.school-list h3,
.compare-grid h3,
.path-cards h3,
.news-article-list h2 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-grid h3{
  font-size: 18px;
}

.portal-card h3::before,
.feature-grid h3::before,
.institution-grid h3::before,
.school-list h3::before,
.compare-grid h3::before,
.path-cards h3::before,
.news-article-list h2::before {
  flex: 0 0 auto;
  margin-top: .15em;
  color: var(--red);
  font-family: "remixicon";
  font-size: 1.05em;
  font-weight: 400;
  line-height: 1;
}

.portal-card:nth-child(1) h3::before {
  content: "\ebbe";
}

.portal-card:nth-child(2) h3::before {
  content: "\f35a";
}

.portal-card:nth-child(3) h3::before {
  content: "\f333";
}

.portal-card:nth-child(4) h3::before {
  content: "\ecef";
}

.portal-card:nth-child(5) h3::before,
.news-article-list h2::before {
  content: "\ef8f";
}

.portal-card:nth-child(6) h3::before {
  content: "\f0e2";
}

.feature-grid h3::before,
.compare-grid h3::before {
  content: "\eb79";
}

.institution-grid h3::before,
.school-list h3::before {
  content: "\f35a";
}

.path-cards h3::before {
  content: "\f08e";
}

.portal-card p,
.feature-grid p,
.institution-grid p,
.school-list p,
.compare-grid p,
.path-cards p,
.news-article-list p {
  color: var(--muted);
}

.portal-card span,
.download-grid a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.portal-card > div > span {
  margin-top: 4px;
}

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

.feature-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

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

.support-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(18, 56, 90, .08);
}

.support-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  background: #edf3f7;
}

.support-grid div {
  padding: 22px;
}

.support-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.support-grid h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 18px;
  line-height: 1.35;
}

.support-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.compare-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.compare-grid--compact article {
  padding: 20px;
}

.handbook-feature {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.handbook-feature img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  background: #edf3f7;
}

.handbook-feature figcaption {
  padding: 14px 18px;
  color: var(--navy-2);
  font-weight: 800;
}

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

.institution-grid article {
  overflow: hidden;
}

.institution-grid--text article {
  padding: 24px;
}

.institution-grid--text .tag {
  margin-bottom: 10px;
}

.institution-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  background: #edf3f7;
}

.institution-grid div {
  padding: 24px;
}

.school-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.school-list article {
  min-height: 132px;
}

.school-list article:last-child {
  grid-column: span 2;
}

.overseas-feature-grid {
  display: grid;
  gap: 24px;
}

.overseas-card {
  display: grid;
  grid-template-columns: minmax(320px, 45%) minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(18, 56, 90, .08);
}

.overseas-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  background: #edf3f7;
}

.overseas-card > div {
  padding: 28px;
}

.overseas-card h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 24px;
  line-height: 1.28;
}

.overseas-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.school-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 18px 0;
}

.school-meta span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--navy-2);
  font-weight: 800;
  line-height: 1.45;
}

.school-meta span::before {
  content: "\eb7b";
  flex: 0 0 auto;
  color: var(--red);
  font-family: "remixicon";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.recognition-panel {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(18, 56, 90, .08);
}

.recognition-panel h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 26px;
  line-height: 1.3;
}

.recognition-panel p:not(.section-kicker) {
  color: var(--muted);
}

.recognition-panel figure {
  margin: 0;
}

.recognition-panel img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.recognition-panel figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

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

.path-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.path-cards span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 10px;
  color: #fff;
  background: var(--navy);
  border-radius: 4px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.path-cards span::before {
  content: "\f09b";
  font-family: "remixicon";
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

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

.handbook-grid--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.handbook-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(18, 56, 90, .08);
}

.handbook-grid img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  object-position: top;
  background: #edf3f7;
}

.handbook-grid figcaption {
  padding: 14px 18px;
  color: var(--navy-2);
  font-weight: 800;
}

.service-material-grid figure {
  display: grid;
  grid-template-rows: auto 1fr;
}

.service-material-grid img {
  aspect-ratio: 3 / 4.05;
  object-fit: contain;
  object-position: center;
  padding: 14px;
  background: #f7fafc;
}

.service-material-grid figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
}

.service-material-grid figcaption strong,
.service-material-grid figcaption span {
  display: block;
}

.service-material-grid figcaption span {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}

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

.download-grid a {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--line);
  /*border-left: 4px solid var(--red);*/
  border-radius: var(--radius);
}

.download-grid a::before {
  content: "\ecfd";
  flex: 0 0 auto;
  color: var(--red);
  font-family: "remixicon";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.news-article-list {
  gap: 26px;
}

.news-article-list article {
  overflow: hidden;
}

.news-article-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  min-height: 260px;
}

.news-article-list img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.news-article-list div {
  padding: 28px;
}

.news-article-list time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  margin-bottom: 8px;
}

.read-more,
.loading-line {
  color: var(--red);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.loading-line {
  margin: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.page-hero--article {
  min-height: 400px;
}

.article-wrap {
  max-width: 900px;
}

.article-back {
  margin-bottom: 22px;
}

.article-body {
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(18, 56, 90, .08);
}

.article-body time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.article-body time::before {
  content: "\eb27";
  font-family: "remixicon";
  font-weight: 400;
}

.article-body p {
  margin: 0 0 18px;
  color: #2c3c4f;
  font-size: 17px;
  line-height: 1.95;
}

.article-body h2,
.article-body h3 {
  margin: 34px 0 14px;
  color: var(--navy-2);
  line-height: 1.45;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px 1.4em;
  padding: 0;
  color: #2c3c4f;
  font-size: 17px;
  line-height: 1.9;
}

.article-body figure {
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.article-body figure img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.article-body figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.news-main > a {
  display: block;
}

.news-list a {
  display: block;
}

.admin-page {
  min-height: 100vh;
  background: #eef3f7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.admin-panel {
  min-height: 100vh;
  display: flex;
}

.admin-sidebar {
  width: 260px;
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
  border-right: 1px solid var(--line);
  box-shadow: 2px 0 18px rgba(18, 56, 90, .05);
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  color: var(--navy-2);
  border-bottom: 1px solid var(--line);
}

.admin-logo > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(18, 56, 90, .18);
}

.admin-logo strong,
.admin-logo small {
  display: block;
}

.admin-logo strong {
  font-size: 16px;
  line-height: 1.2;
}

.admin-logo small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.admin-user__avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
}

.admin-user strong,
.admin-user span {
  display: block;
}

.admin-user strong {
  color: var(--navy-2);
  font-size: 13px;
  line-height: 1.25;
}

.admin-user span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.admin-menu {
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 12px 10px;
}

.admin-menu button {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.admin-menu button.is-active,
.admin-menu button:hover {
  color: var(--red);
  background: #f8f2e6;
}

.admin-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.admin-card {
  padding:24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(18, 56, 90, .08);
}

.admin-card--login {
  width: min(420px, 100%);
  padding: 30px;
}

.admin-card--password {
  padding: 24px;
  max-width: 760px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 0 0 auto;
  padding: 18px 28px;
  color: var(--navy-2);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.admin-topbar h1,
.admin-card h1,
.admin-card h2 {
  margin: 0;
  line-height: 1.2;
}

.admin-card h1,
.admin-card h2 {
  color: var(--navy-2);
}

.admin-topbar h1 {
  color: var(--navy-2);
  font-size: 20px;
}

.admin-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.admin-content {
  flex: 1;
  overflow: auto;
  padding: 24px 28px 36px;
}

.admin-view {
  min-width: 0;
}

.admin-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
}

.admin-grid > .admin-card {
  padding: 24px;
}

.admin-list-head,
.admin-form-head,
.admin-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-form-head {
  margin-bottom: 18px;
}

.admin-form-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-news-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  max-height: calc(100vh - 235px);
  overflow: auto;
  padding-right: 3px;
}

.admin-list-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-news-item {
  width: 100%;
  display: block;
  padding: 13px 14px;
  text-align: left;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.admin-news-item strong,
.admin-news-item span {
  display: block;
}

.admin-news-item strong {
  color: var(--navy-2);
  line-height: 1.35;
}

.admin-news-item span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

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

.admin-form label,
.admin-card--login label {
  display: grid;
  gap: 7px;
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-card--login input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.admin-form textarea {
  resize: vertical;
  line-height: 1.65;
}

.admin-editor-field {
  display: grid;
  gap: 7px;
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 800;
}

.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px 6px 0 0;
}

.rich-toolbar button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: var(--navy-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.rich-editor {
  min-height: 360px;
  overflow: auto;
  padding: 18px;
  color: #2c3c4f;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  font-family: "Noto Serif SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
  font-size: 16px;
  line-height: 1.85;
}

.rich-editor:focus {
  outline: 2px solid rgba(18, 56, 90, .16);
  outline-offset: 0;
}

.rich-editor p {
  margin: 0 0 14px;
}

.rich-editor h2,
.rich-editor h3 {
  margin: 24px 0 12px;
  color: var(--navy-2);
}

.rich-editor figure {
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafc;
}

.rich-editor figure img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.rich-editor figcaption {
  padding: 8px 10px;
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  text-align: center;
}

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

.admin-check {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: start;
}

.admin-check input {
  width: auto;
}

.admin-btn,
.admin-ghost,
.admin-danger,
.admin-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 6px;
  padding: 0 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-btn {
  margin-top:20px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
}

.admin-btn--small {
  min-height: 34px;
  padding: 0 12px;
}

.admin-ghost,
.admin-link {
  color: var(--navy-2);
  background: #fff;
  border: 1px solid var(--line);
}

.admin-topbar .admin-link,
.admin-topbar .admin-ghost {
  color: var(--navy-2);
  background: #fff;
  border-color: var(--line);
}

.admin-danger {
  color: var(--red);
  background: #fff;
  border: 1px solid #efc6cd;
}

.admin-danger:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.admin-actions--form {
  justify-content: flex-start;
}

.admin-message {
  min-height: 22px;
  margin: 4px 0 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.admin-message.is-ok {
  color: var(--teal);
}

.admin-message-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-message-item {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(220px, 1fr) minmax(260px, 1.4fr) auto;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.admin-message-item__head,
.admin-message-item__meta,
.admin-message-item__actions {
  display: flex;
  gap: 12px;
}

.admin-message-item__head {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.admin-message-item h3 {
  margin: 0;
  color: var(--navy-2);
  font-size: 18px;
  line-height: 1.35;
}

.admin-message-item__head span {
  flex: 0 0 auto;
  padding: 3px 9px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.admin-message-item[data-status="handled"] .admin-message-item__head span {
  background: var(--teal);
}

.admin-message-item__meta {
  display: grid;
  gap: 5px;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
}

.admin-message-item__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.admin-message-item__body {
  margin: 0;
  max-height: 74px;
  overflow: auto;
  white-space: pre-wrap;
  color: #26384c;
  line-height: 1.65;
}

.admin-message-item__actions {
  justify-content: flex-end;
  align-items: center;
}

.admin-empty {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 42px;
  text-align: center;
}

.admin-empty i {
  color: var(--red);
  font-size: 44px;
}

.admin-empty p {
  max-width: 520px;
  margin: 8px auto 0;
  color: var(--muted);
}

.is-hidden {
  display: none !important;
}

.resource-shelf--single {
  display: block;
  margin-top: 0;
}

.contact-card--light {
  max-width: 760px;
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.contact-card--light p {
  color: var(--ink);
}

.contact-card--light strong {
  color: var(--red);
}

.contact-card--light span {
  color: var(--ink);
}

@media (max-width: 1020px) {
  :root {
    --wrap: min(100vw - 32px, 900px);
  }

  .top-strip__inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .brand > span:last-child {
    gap: 3px;
  }

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

  .brand small {
    font-size: 12px;
    letter-spacing: .03em;
  }

  .main-nav__inner {
    flex-wrap: wrap;
  }

  .main-nav a {
    flex: 0 0 25%;
  }

  .section-grid,
  .partner-layout,
  .overseas-card,
  .recognition-panel,
  .news-layout,
  .contact-section__inner,
  .news-article-card,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .stat-row,
  .support-grid,
  .service-grid,
  .feature-grid,
  .compare-grid,
  .path-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .major-grid,
  .admission-grid,
  .portal-grid,
  .institution-grid,
  .school-list,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admission-card--primary {
    grid-column: span 2;
  }

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

  .school-list article:last-child {
    grid-column: span 2;
  }

  .overseas-card img {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  :root {
    --wrap: min(100vw - 24px, 620px);
  }

  body {
    line-height: 1.65;
  }

  .top-strip {
    display: none;
  }

  .masthead {
    min-height: 58px;
    max-height: 58px;
  }

  .brand__mark {
    width: 62px;
    height: 38px;
    font-size: 22px;
  }

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

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .site-header.is-compact .main-nav {
    display: block;
  }

  .site-header.nav-open .main-nav {
    display: block;
  }

  .main-nav__inner {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav a {
    min-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .site-header.is-compact .main-nav__inner {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-compact .main-nav a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 14px;
    border-bottom: 0;
  }

  .hero {
    min-height: 500px;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(8, 26, 45, .9), rgba(8, 26, 45, .46));
  }

  .hero__content {
    padding: 74px 0 80px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .notice-band__inner {
    display: block;
    padding: 18px 0;
  }

  .notice-band strong,
  .notice-band span {
    display: block;
  }

  .notice-band strong {
    margin-right: 0;
  }

  .notice-band a {
    display: inline-block;
    margin-top: 8px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading--split {
    display: block;
  }

  .section-heading--split .text-link {
    margin-top: 14px;
  }

  .stat-row,
  .partner-list,
  .major-grid,
  .admission-grid,
  .service-grid,
  .resource-shelf,
  .process-strip,
  .portal-grid,
  .feature-grid,
  .feature-grid--compact,
  .support-grid,
  .institution-grid,
  .school-list,
  .compare-grid,
  .compare-grid--compact,
  .download-grid,
  .path-cards,
  .handbook-grid,
  .handbook-grid--wide {
    grid-template-columns: 1fr;
  }

  .admission-card--primary {
    grid-column: auto;
  }

  .school-meta {
    grid-template-columns: 1fr;
  }

  .overseas-card > div,
  .recognition-panel {
    padding: 22px;
  }

  .recognition-panel {
    gap: 20px;
  }

  .school-list article:last-child {
    grid-column: auto;
  }

  .admission-card dl {
    grid-template-columns: 1fr;
  }

  .process-strip span {
    min-height: 52px;
  }

  .resource-shelf article {
    grid-template-columns: 122px minmax(0, 1fr);
  }

  .resource-shelf img {
    height: 176px;
  }

  .contact-list,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__head,
  .contact-form__actions {
    display: grid;
  }

  .contact-card p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-section {
    padding: 38px 0;
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero__shade {
    background: linear-gradient(0deg, rgba(8, 26, 45, .92), rgba(8, 26, 45, .5));
  }

  .page-hero__content {
    padding: 58px 0;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .news-article-list img {
    min-height: 210px;
  }

  .admin-topbar,
  .admin-list-head,
  .admin-form-head,
  .admin-actions {
    grid-template-columns: 1fr;
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-panel {
    display: block;
  }

  .admin-sidebar {
    position: static;
    width: auto;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .admin-main {
    height: auto;
    overflow: visible;
  }

  .admin-content {
    overflow: visible;
    padding: 18px 16px 28px;
  }

  .admin-news-list {
    max-height: none;
  }

  .admin-message-item {
    grid-template-columns: 1fr;
  }

  .admin-two {
    grid-template-columns: 1fr;
  }

  .admin-message-item__head,
  .admin-message-item__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-body {
    padding: 28px 22px;
  }
}

@media (max-width: 440px) {
  .hero__actions,
  .intro-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .resource-shelf article {
    display: block;
  }

  .resource-shelf img {
    height: 230px;
  }
}
