/* Source: style.css */
:root {
  color-scheme: light;
  --ink: #17263a;
  --muted: #536274;
  --navy: #17324d;
  --blue: #1f628d;
  --blue-dark: #174b6c;
  --blue-soft: #eaf3f8;
  --paper: #ffffff;
  --canvas: #f3f6f8;
  --line: #d9e1e7;
  --shadow: 0 18px 50px rgba(27, 48, 68, 0.1);
  --serif: Charter, "Iowan Old Style", "Palatino Linotype", "Noto Serif", "Noto Serif CJK SC", "Songti SC", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--blue-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #0c3853;
  text-decoration-thickness: 0.12em;
}

a:focus-visible {
  outline: 3px solid #b86b00;
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.85rem;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(23, 50, 77, 0.97);
  color: #fff;
}

.header-inner,
.site-main,
.footer-inner {
  width: min(100% - 2rem, 68rem);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand:hover {
  color: #fff;
}

.brand-mark {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #7ec4e6;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.5rem 0.68rem;
  border-radius: 0.35rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.site-nav .language-link {
  margin-left: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.site-main {
  margin-block: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(23, 50, 77, 0.08);
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-main a {
  overflow-wrap: anywhere;
}

.hero {
  display: grid;
  min-height: 31rem;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 15rem);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  padding: clamp(2.5rem, 6vw, 5.25rem);
  background:
    linear-gradient(115deg, rgba(234, 243, 248, 0.8), rgba(255, 255, 255, 0) 60%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.eyebrow a {
  color: inherit;
}

h1,
h2,
.course-page h1 {
  font-family: var(--serif);
  line-height: 1.12;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 6.5vw, 5.15rem);
  letter-spacing: -0.035em;
}

.hero h1 span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.31em;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lede {
  max-width: 42rem;
  margin: 1.55rem 0 0;
  color: #31445a;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.42rem);
  line-height: 1.6;
}

.compact-lede {
  font-size: 1.12rem;
}

.quick-links {
  display: flex;
  margin: 1.75rem 0 0;
  padding: 0;
  gap: 0.65rem;
  flex-wrap: wrap;
  list-style: none;
}

.quick-links a,
.button-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid #718899;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.quick-links a:hover,
.button-link:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.portrait {
  margin: 0;
}

.portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(23, 50, 77, 0.12);
  border-radius: 0.7rem;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(23, 50, 77, 0.18);
}

.page-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(10rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2.75rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 6.5rem;
}

.legacy-anchor {
  position: absolute;
  top: 0;
  left: 0;
}

.section-heading {
  align-self: start;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
}

.section-kicker {
  margin: 0 0 0.55rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-body {
  min-width: 0;
}

.section-intro {
  max-width: 48rem;
  margin: 0 0 1.6rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.7;
}

.visually-subtle,
.subheading {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0.015em;
}

.subheading:not(:first-child) {
  margin-top: 2.4rem;
}

.topic-list {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.65rem;
  flex-wrap: wrap;
  list-style: none;
}

.topic-list li {
  padding: 0.42rem 0.72rem;
  border: 1px solid #c6d7e1;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #23455d;
  font-size: 0.92rem;
}

.section-actions {
  margin-bottom: 1.75rem;
  text-align: right;
}

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

.publication-item {
  position: relative;
  padding: 1.4rem 0 1.4rem 3rem;
  border-top: 1px solid var(--line);
  counter-increment: publication;
}

.publication-item::before {
  content: counter(publication, decimal-leading-zero);
  position: absolute;
  top: 1.48rem;
  left: 0;
  color: #687786;
  font-family: var(--serif);
  font-size: 0.88rem;
}

.publication-authors,
.publication-title,
.publication-venue,
.publication-links {
  margin: 0;
}

.publication-authors {
  color: var(--muted);
  font-size: 0.9rem;
}

.author-self {
  color: var(--ink);
}

.publication-title {
  margin-top: 0.25rem;
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1.45;
}

.publication-title a {
  color: var(--navy);
  text-decoration-color: #9eb9c9;
}

.publication-venue {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.publication-links {
  display: flex;
  margin-top: 0.7rem;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.publication-links a {
  padding: 0.17rem 0.5rem;
  border: 1px solid #718899;
  border-radius: 0.25rem;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.course-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
}

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

.course-card {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #fbfcfd;
}

.course-card h4,
.course-card p {
  margin: 0;
}

.course-card h4 {
  margin-top: 0.25rem;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.course-card p:last-child {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.course-term {
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.background-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.timeline p,
.timeline h4 {
  margin: 0;
}

.timeline h4 {
  font-size: 0.98rem;
}

.timeline-period {
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 750;
}

.timeline-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
}

.contact-grid div:last-child {
  grid-column: 1 / -1;
}

.contact-grid h3,
.contact-grid p,
.contact-grid address {
  margin: 0;
}

.contact-grid h3 {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-grid address {
  font-style: normal;
}

.site-footer {
  padding: 0 0 2.5rem;
  color: #526171;
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
}

.course-main {
  max-width: 56rem;
  overflow: visible;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.breadcrumb {
  display: flex;
  margin-bottom: 2rem;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.86rem;
}

.course-header {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.course-header h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 7vw, 4rem);
  letter-spacing: -0.03em;
}

.course-page > section,
.course-columns {
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.course-page h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.course-facts {
  margin: 0;
}

.course-facts > div {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
}

.course-facts dt {
  color: var(--muted);
  font-weight: 700;
}

.course-facts dd {
  margin: 0;
}

.course-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.plain-list,
.advice-panel ol {
  margin: 0;
  padding-left: 1.3rem;
}

.plain-list li,
.advice-panel li {
  margin-bottom: 0.55rem;
}

.advice-panel {
  margin-top: 2rem;
  padding: 1.5rem !important;
  border: 1px solid #c9dce7 !important;
  border-radius: 0.5rem;
  background: var(--blue-soft);
}

.material-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.material-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.back-link {
  margin: 2rem 0 0;
}

.error-page {
  min-height: 31rem;
  padding: clamp(3rem, 8vw, 7rem);
}

.error-page h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
}

.error-page .button-link {
  margin-top: 1rem;
}

@media (max-width: 58rem) {
  html {
    scroll-padding-top: 1rem;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    padding-block: 0.7rem;
  }

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

  .page-section {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    scroll-margin-top: 1rem;
  }

  .background-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 47.5rem) {
  .header-inner,
  .site-main,
  .footer-inner {
    width: min(100% - 1rem, 68rem);
  }

  .site-nav {
    margin-inline: -0.35rem;
  }

  .site-nav a {
    padding-inline: 0.52rem;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.25rem 1.35rem;
  }

  .hero-copy {
    order: 2;
  }

  .portrait {
    width: 11rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .page-section {
    padding: 2.5rem 1.35rem;
  }

  .course-grid,
  .background-grid,
  .contact-grid,
  .course-columns {
    grid-template-columns: 1fr;
  }

  .contact-grid div:last-child {
    grid-column: auto;
  }

  .section-actions {
    text-align: left;
  }

  .publication-item {
    padding-left: 2.2rem;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 0.15rem;
  }

  .course-main {
    padding: 1.35rem;
  }

  .course-facts > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .material-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }
}

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

@media print {
  body {
    background: #fff;
  }

  .site-header,
  .skip-link,
  .quick-links,
  .site-footer {
    display: none;
  }

  .site-main {
    width: 100%;
    margin: 0;
    overflow: visible;
    border: 0;
    box-shadow: none;
  }
}

/* Source: home.css */
/* Original homepage presentation, shared by the English and Chinese pages. */
body.classic-home {
  background: #4f84a4;
  color: #000;
  font-family: "Times New Roman", Times, "Songti SC", serif;
  font-size: 1rem;
  line-height: 1.5;
}

.classic-home .site-header {
  background: #4f84a4;
  border: 0;
}

.classic-home .header-inner {
  width: calc(100% - 32px);
  max-width: 1000px;
  min-height: 80px;
  padding: 15px 10px 5px;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.classic-home .homepage-name {
  margin: 0;
  color: #fff;
  font-family: "Julius Sans One", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: normal;
}

html[lang="zh-CN"] .classic-home .homepage-name {
  font-family: "Roboto Slab", "Songti SC", serif;
  font-size: 35px;
}

.classic-home .homepage-email {
  margin: 5px 0 0;
  color: #fff;
  font: normal 0.9rem "Century Gothic", Arial, sans-serif;
  overflow-wrap: anywhere;
}

.classic-home .homepage-nav {
  gap: 0 12px;
  margin: 0;
  justify-content: flex-end;
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

.classic-home .homepage-nav a {
  min-height: 40px;
  padding: 6px 4px;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.classic-home .homepage-nav a:hover,
.classic-home .homepage-nav a:focus-visible {
  background: #364c62;
}

.classic-home .site-main {
  width: calc(100% - 32px);
  max-width: 1040px;
  margin: 30px auto 0;
  padding: 20px;
  overflow: visible;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.classic-home .site-main a {
  color: #315f7d;
  text-decoration: underline;
  text-decoration-color: rgba(49, 95, 125, 0.32);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: auto;
}

.classic-home .site-main a:hover,
.classic-home .site-main a:focus-visible {
  text-decoration-color: currentColor;
}

.classic-home .hero {
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  min-height: 0;
  padding: 20px 10px 20px 20px;
  background: #fff;
}

.classic-home .portrait {
  width: 240px;
  max-width: 100%;
  margin: 0;
}

.classic-home .portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: 3px 3px 10px #888;
}

.classic-home .hero-copy {
  min-width: 0;
  order: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.classic-home .home-biography {
  margin: 0 0 24px;
}

.classic-home #research h2 {
  margin: 0 0 10px;
  color: #213355;
  font-family: "Century Gothic", Arial, "Microsoft YaHei", sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}

.classic-home .topic-list {
  display: block;
  margin: 2px 0 22px;
  padding-left: 28px;
  list-style: circle;
}

.classic-home .topic-list li {
  margin-bottom: 6px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  color: #000;
  font-size: 1rem;
  line-height: 1.25;
}

.classic-home .home-cv {
  margin: 0;
}

.classic-home .page-section {
  display: block;
  padding: 28px 0;
  border-top: 1px solid #dbe3e8;
}

.classic-home .section-kicker {
  display: none;
}

.classic-home .section-heading h2 {
  margin: 0 0 18px 20px;
  color: #213355;
  font-family: inherit;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: normal;
}

html[lang="zh-CN"] .classic-home .section-heading h2 {
  font-size: 1.375rem;
}

.classic-home .section-actions {
  margin: 0 20px 20px;
  text-align: left;
}

.classic-home .subheading,
.classic-home .visually-subtle {
  margin: 22px 0 12px 20px;
  color: #213355;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: normal;
}

.classic-home .publication-list {
  margin: 4px 20px 26px 0;
  padding-left: 40px;
  list-style: decimal;
}

.classic-home .publication-item {
  max-width: 92ch;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}

.classic-home .publication-item:last-child {
  margin-bottom: 0;
}

.classic-home .publication-item::before {
  content: none;
}

.classic-home .publication-authors,
.classic-home .publication-title,
.classic-home .publication-venue {
  margin: 0;
  color: #000;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.classic-home .publication-venue cite {
  font-family: inherit;
  font-style: italic;
}

.classic-home .publication-links {
  margin-top: 4px;
  align-items: baseline;
  gap: 8px;
  line-height: 1.5;
}

.classic-home .publication-link-separator {
  color: #666;
}

.classic-home .publication-links a {
  padding: 0;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
}

.classic-home .course-grid {
  display: block;
  padding-left: 40px;
  list-style: circle;
}

.classic-home .course-card {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.classic-home .course-term,
.classic-home .course-card h4 {
  display: inline;
  color: #000;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.classic-home .course-term::after {
  content: ": ";
}

.classic-home .course-card p:last-child {
  display: none;
}

.classic-home .background-grid {
  display: block;
}

.classic-home .background-grid .subheading {
  margin-top: 0;
}

.classic-home .background-grid > div + div {
  margin-top: 24px;
}

.classic-home .background-grid .timeline,
.classic-home .background-grid .timeline li:last-child {
  margin-bottom: 0;
}

.classic-home .timeline {
  margin: 0 20px 18px 40px;
}

.classic-home .timeline li {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  border: 0;
}

.classic-home .timeline-period,
.classic-home .timeline li > div,
.classic-home .timeline h4,
.classic-home .timeline li > div > p {
  display: inline;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
}

.classic-home .timeline-period::after,
.classic-home .timeline h4::after {
  content: ", ";
}

.classic-home .timeline-note::before {
  content: " — ";
}

.classic-home .contact-grid {
  display: block;
  margin: 0 20px;
}

.classic-home .contact-grid > div {
  margin-bottom: 8px;
}

.classic-home .contact-grid h3,
.classic-home .contact-grid p,
.classic-home .contact-grid address {
  display: inline;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.classic-home .contact-grid h3::after {
  content: ": ";
}

.classic-home .site-footer {
  width: calc(100% - 32px);
  max-width: 1040px;
  margin: 0 auto 50px;
  padding: 15px 20px;
  background: #fff;
  color: #666;
  font-family: Arial, sans-serif;
}

.classic-home .footer-inner {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 850px) {
  .classic-home .site-header {
    position: static;
  }

  .classic-home .header-inner {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .classic-home .homepage-name {
    font-size: 26px;
  }

  html[lang="zh-CN"] .classic-home .homepage-name {
    font-size: 28px;
  }

  .classic-home .homepage-nav {
    justify-content: flex-start;
    gap: 0 12px;
  }

  .classic-home .homepage-nav a {
    padding-inline: 0;
    font-size: 0.95rem;
  }

  .classic-home .site-main {
    margin-top: 16px;
    padding: 16px;
  }

  .classic-home .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px 0 20px;
    gap: 20px;
  }

  .classic-home .portrait {
    margin-inline: auto;
  }

  .classic-home .publication-list,
  .classic-home .course-grid {
    padding-left: 26px;
  }

  .classic-home .page-section {
    padding-block: 22px;
  }

  .classic-home .section-heading h2 {
    margin-left: 0;
  }

  .classic-home .publication-list {
    margin-right: 0;
  }

  .classic-home .timeline {
    margin-left: 20px;
  }
}

@media print {
  body.classic-home {
    background: #fff;
  }

  .classic-home .homepage-header {
    display: block;
    position: static;
    background: #fff;
  }

  .classic-home .homepage-name,
  .classic-home .homepage-email {
    color: #000;
  }

  .classic-home .homepage-nav {
    display: none;
  }

  .classic-home .site-main {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
