:root {
  --brand-blue: #024da2;
  --navy: #013675;
  --blue-950: #012a5f;
  --blue-900: #024da2;
  --blue-800: #0759b5;
  --blue-700: #126cc7;
  --cyan: #42c2ff;
  --cyan-strong: #1593cf;
  --mint: #55e6c1;
  --gold: #d8ad54;
  --ink: #172235;
  --muted: #66758a;
  --line: #dbe7f5;
  --paper: #f5f9ff;
  --snap-header-height: 82px;
}

/* Unified homepage section action. */
.home-more,
.education-head .home-more,
.section-head .home-more {
  width: auto;
  min-width: 106px;
  height: 40px;
  padding: 0 6px 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(54, 126, 210, 0.96), rgba(35, 96, 174, 0.96));
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(3, 66, 142, 0.16);
}

.home-more > span {
  width: 30px;
  height: 30px;
  margin: 0;
  position: relative;
  flex: 0 0 30px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.home-more > span::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 10px;
  top: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.home-more:hover,
.home-more:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #438bdc, #17599f);
  transform: translateY(-2px);
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

main {
  /* 只裁切横向溢出，避免 hidden 将纵向溢出计算为 auto，产生额外滚动容器。 */
  overflow-x: clip;
  overflow-y: visible;
}

.data-loading {
  position: relative;
  overflow: hidden;
}

.data-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.48) 48%, transparent 100%);
  transform: translateX(-120%);
  animation: data-sweep 0.82s ease;
}

@keyframes data-sweep {
  to {
    transform: translateX(120%);
  }
}

.js .reveal-item {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease,
    filter 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.container {
  width: 1640px;
  max-width: calc(100vw - 120px);
  margin: 0 auto;
}

.site-header {
  height: 116px;
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  top: 0;
  color: #fff;
  transition:
    height 0.28s ease,
    transform 0.28s ease;
}

.header-bg {
  position: absolute;
  inset: 0;
  /* Semi-transparent backing so the white nav text and logo stay readable
     over the bright hero images, fading out toward the bottom so the hero
     shows through below the navigation. */
  background: linear-gradient(180deg, rgba(1, 36, 92, 0.72) 0%, rgba(1, 36, 92, 0.42) 55%, rgba(1, 36, 92, 0) 100%);
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.header-inner {
  height: 116px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  transition: height 0.28s ease;
}

.brand {
  display: block;
  width: 520px;
  max-width: 100%;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition:
    width 0.28s ease,
    max-height 0.28s ease;
}

.brand span {
  display: none;
}

.brand strong {
  display: none;
}

.brand em {
  display: none;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.mobile-nav-toggle {
  display: none;
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.main-nav > a,
.main-nav .nav-link {
  height: 44px;
  padding: 0 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    height 0.28s ease,
    color 0.24s ease,
    background 0.24s ease;
}

.main-nav > a.active,
.main-nav > a:hover,
.main-nav .nav-link.active,
.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.nav-dropdown {
  width: 100vw;
  min-height: 352px;
  padding: 30px max(40px, calc((100vw - 1640px) / 2 + 40px));
  position: fixed;
  z-index: 80;
  left: 0;
  top: 116px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #f4f7fb;
  border-top: 1px solid rgba(32, 211, 255, 0.2);
  border-bottom: 1px solid rgba(191, 218, 242, 0.82);
  box-shadow: 0 28px 58px rgba(1, 18, 43, 0.18);
  backdrop-filter: none;
  transform: translateY(-10px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.nav-dropdown::before {
  content: none;
}

.nav-dropdown:not(:has(.mega-content)) {
  --mega-bg: url("/dfiles/2026/images/hero-lab-exterior.jpg");
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 410px)) 540px;
  gap: 0 70px;
  align-items: stretch;
}

.nav-item:nth-child(3) .nav-dropdown:not(:has(.mega-content)) {
  --mega-bg: url("/dfiles/2026/images/27E3BC9F7AB100DBCA0BF0D8077_1901891F_26CFC.jpg");
}

.nav-item:nth-child(4) .nav-dropdown:not(:has(.mega-content)) {
  --mega-bg: url("/dfiles/2026/images/education-training.jpg");
}

.nav-item:nth-child(5) .nav-dropdown:not(:has(.mega-content)) {
  --mega-bg: url("/dfiles/2026/images/hero-lab-hall.jpg");
}

.nav-item:nth-child(6) .nav-dropdown:not(:has(.mega-content)) {
  --mega-bg: url("/dfiles/2026/images/27E3BC9F7AB100DBCA0BF0D8077_1901891F_26CFC.jpg");
}

.nav-item:nth-child(7) .nav-dropdown:not(:has(.mega-content)) {
  --mega-bg: url("/dfiles/2026/images/education-training.jpg");
}

.nav-item:nth-child(8) .nav-dropdown:not(:has(.mega-content)) {
  --mega-bg: url("/dfiles/2026/images/hero-lab-hall.jpg");
}

.nav-item:nth-child(9) .nav-dropdown:not(:has(.mega-content)) {
  --mega-bg: url("/dfiles/2026/images/academic-exchange.jpg");
}

.nav-dropdown:not(:has(.mega-content))::after {
  content: "";
  min-height: 292px;
  display: block;
  grid-column: 3;
  grid-row: 1 / span 8;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(3, 27, 63, 0), rgba(3, 27, 63, 0.18)),
    var(--mega-bg) center / contain no-repeat,
    #dcecf8;
  box-shadow: 0 18px 42px rgba(4, 42, 91, 0.12);
}

.nav-dropdown:not(:has(.mega-content)) > a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--blue-900);
  border-bottom: 1px solid rgba(148, 169, 190, 0.36);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.nav-dropdown:not(:has(.mega-content)) > a::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  color: #8b97a5;
}

.nav-dropdown:not(:has(.mega-content)) > a:hover,
.nav-dropdown:not(:has(.mega-content)) > a:focus-visible {
  color: var(--blue-900);
  border-bottom-color: var(--blue-900);
  transform: translateX(2px);
}

.mega-content {
  max-width: 1640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 28px 70px;
  align-items: stretch;
}

.mega-copy {
  min-width: 0;
}

.mega-copy h2 {
  margin: 0;
  color: #263241;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 900;
}

.mega-copy p {
  max-width: 900px;
  margin: 16px 0 0;
  color: #4b5c70;
  font-size: 19px;
  line-height: 1.9;
}

.mega-groups {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 0 88px;
  align-content: start;
  grid-auto-flow: row;
}

.mega-groups--education {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
}

.mega-groups--education .mega-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mega-groups--education .mega-group strong {
  grid-column: 1 / -1;
}

.mega-groups--education .mega-group a {
  min-height: 38px;
  padding: 0 14px;
  justify-content: center;
  color: #31516d;
  background: rgba(7, 89, 181, 0.07);
  border: 1px solid rgba(7, 89, 181, 0.14);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

.mega-groups--education .mega-group a::after {
  content: none;
}

.mega-groups .mega-group:not(.mega-group--third):has(a) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mega-groups .mega-group:not(.mega-group--third):has(a) strong {
  grid-column: 1 / -1;
  min-height: 44px;
  cursor: pointer;
}

.mega-groups .mega-group:not(.mega-group--third):has(a) strong::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.mega-groups .mega-group:not(.mega-group--third).is-third-open:has(a) strong::after {
  transform: rotate(135deg);
}

.mega-groups .mega-group:not(.mega-group--third):has(a) a {
  display: none;
  min-height: 34px;
  padding: 0 10px;
  justify-content: center;
  color: #31516d;
  background: rgba(7, 89, 181, 0.07);
  border: 1px solid rgba(7, 89, 181, 0.14);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.mega-groups .mega-group:not(.mega-group--third):has(a) a::after {
  content: none;
}

.mega-groups .mega-group:not(.mega-group--third).is-third-open:has(a) a {
  display: flex;
}

.mega-groups .mega-group:not(.mega-group--third):has(a) + .mega-direct {
  margin-top: 10px;
}

.mega-groups--education > .mega-direct {
  grid-column: 1 / -1;
  width: calc((100% - 42px) / 2);
}

.mega-content:has(.mega-groups--education) {
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 28px 54px;
}

.mega-group,
.mega-direct {
  min-width: 0;
  position: relative;
}

.mega-group {
  padding: 0;
  border-left: 0;
}

.mega-group strong,
.mega-direct {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--blue-900);
  border-bottom: 1px solid rgba(148, 169, 190, 0.36);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.mega-group strong::after,
.mega-direct::after,
.mega-group a::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  color: #8b97a5;
}

.mega-group a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #3f4f61;
  border-bottom: 1px solid rgba(148, 169, 190, 0.36);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.mega-groups--education .mega-group a {
  min-height: 34px;
  padding: 0 10px;
  justify-content: center;
  color: #31516d;
  background: rgba(7, 89, 181, 0.07);
  border: 1px solid rgba(7, 89, 181, 0.14);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.mega-groups--education .mega-group a::after {
  content: none;
}

.mega-groups .mega-group:has(a) a {
  min-height: 34px;
  padding: 0 10px;
  justify-content: center;
  color: #31516d;
  background: rgba(7, 89, 181, 0.07);
  border: 1px solid rgba(7, 89, 181, 0.14);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.mega-groups .mega-group:has(a) a::after {
  content: none;
}

.mega-direct {
  padding: 0;
  background: transparent;
}

.mega-group a:hover,
.mega-group a:focus-visible,
.mega-direct:hover,
.mega-direct:focus-visible {
  color: var(--blue-900);
  border-bottom-color: var(--blue-900);
  transform: translateX(2px);
}

.mega-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 292px;
  background: #dcecf8;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(4, 42, 91, 0.12);
}

.mega-visual img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  display: block;
  object-fit: contain;
  filter: saturate(0.96) contrast(0.98);
}

.mega-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(3, 27, 63, 0.72)),
    linear-gradient(90deg, rgba(2, 77, 162, 0.24), transparent);
}

.mega-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-scrolled {
  height: 82px;
}

.site-header.is-scrolled .header-bg {
  background: var(--brand-blue);
  border-bottom-color: rgba(32, 211, 255, 0.24);
  box-shadow: 0 18px 42px rgba(2, 77, 162, 0.24);
}

.site-header.is-scrolled .header-inner {
  height: 82px;
}

.site-header.is-scrolled .nav-dropdown {
  top: 82px;
}

.site-header.is-scrolled .nav-item {
  height: 82px;
}

.site-header.is-scrolled .brand img {
  max-height: 64px;
}

.site-header.is-scrolled .brand span {
  height: 38px;
}

.site-header.is-scrolled .brand strong {
  font-size: 26px;
}

.site-header.is-scrolled .main-nav > a,
.site-header.is-scrolled .main-nav .nav-link {
  height: 38px;
}

.hero {
  /* Keep the first screen compact on tall displays while still filling
     shorter viewports. The following section can enter the viewport sooner
     instead of leaving a large empty band below the hero content. */
  min-height: min(100svh, 900px);
  padding: 156px 0 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--brand-blue);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 3200ms linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.09);
}

.hero-arrow-group {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrow {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background 240ms ease, transform 240ms ease;
}

.hero-arrow--prev {
  margin-left: 30px;
}

.hero-arrow--next {
  margin-right: 30px;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.06);
}

.hero-arrow:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 26px;
  height: 26px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero-dot img {
  display: none;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero-dot span {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(3, 36, 77, 0.18);
}

.hero-dot.active img {
  display: block;
}

.hero-dot.active span {
  display: none;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  transform: scale(1.14);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 980px;
  height: 980px;
  right: -250px;
  top: 80px;
  border-radius: 50%;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 120px rgba(32, 211, 255, 0.1),
    0 0 120px rgba(32, 211, 255, 0.08);
}


.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-a {
  width: 720px;
  height: 240px;
  right: 210px;
  top: 260px;
}

.orbit-b {
  width: 1080px;
  height: 340px;
  right: -40px;
  top: 420px;
}

.molecule {
  position: absolute;
  z-index: 1;
  opacity: 0.72;
}

.molecule i {
  width: 13px;
  height: 13px;
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(32, 211, 255, 0.7);
}

.molecule::before,
.molecule::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  transform-origin: left center;
}

.molecule-a {
  width: 200px;
  height: 130px;
  left: 128px;
  top: 290px;
}

.molecule-a i:nth-child(1) { left: 8px; top: 54px; }
.molecule-a i:nth-child(2) { left: 78px; top: 18px; background: var(--mint); }
.molecule-a i:nth-child(3) { left: 114px; top: 82px; }
.molecule-a i:nth-child(4) { left: 172px; top: 42px; background: var(--gold); }
.molecule-a i:nth-child(5) { left: 56px; top: 112px; }
.molecule-a::before { width: 176px; left: 14px; top: 62px; transform: rotate(-12deg); }
.molecule-a::after { width: 122px; left: 62px; top: 118px; transform: rotate(-36deg); }

.molecule-b {
  width: 180px;
  height: 120px;
  right: 112px;
  top: 170px;
}

.molecule-b i:nth-child(1) { left: 0; top: 64px; background: var(--gold); }
.molecule-b i:nth-child(2) { left: 58px; top: 22px; }
.molecule-b i:nth-child(3) { left: 118px; top: 68px; background: var(--mint); }
.molecule-b i:nth-child(4) { left: 158px; top: 22px; }
.molecule-b::before { width: 152px; left: 8px; top: 70px; transform: rotate(-14deg); }
.molecule-b::after { width: 112px; left: 66px; top: 28px; transform: rotate(34deg); }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 40px;
}

.hero-copy {
  position: relative;
  padding: 28px 0;
  display: grid;
}

.hero-panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease, visibility 0s linear 700ms;
  pointer-events: none;
}

.hero-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease, visibility 0s;
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: 74px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.summary {
  width: 620px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 24px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 46px;
  display: flex;
  gap: 18px;
}

.primary-btn,
.ghost-btn {
  min-width: 150px;
  height: 52px;
  padding: 0 28px;
  border-radius: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
}

.primary-btn {
  color: var(--blue-950);
  background: linear-gradient(135deg, #fff, #bdf1ff);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
  max-width: 660px;
}

.hero-metrics div {
  min-height: 118px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #fff;
}

.hero-metrics span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.45;
}

.hero-stage {
  min-height: 640px;
  position: relative;
}

.stage-card {
  position: absolute;
  width: 318px;
  min-height: 86px;
  padding: 17px 24px 17px 68px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.36)),
    radial-gradient(circle at 0 50%, rgba(32, 211, 255, 0.2), transparent 42%);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 48px rgba(1, 18, 43, 0.16);
}

.stage-card::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 8px rgba(32, 211, 255, 0.12),
    0 0 22px rgba(32, 211, 255, 0.52);
  transform: translateY(-50%);
}

.stage-card::after {
  content: "";
  position: absolute;
  left: 46px;
  top: 50%;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(32, 211, 255, 0.78), transparent);
  transform: translateY(-50%);
}

.stage-card span {
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stage-card strong {
  display: block;
  margin-top: 9px;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.35;
}

.lab-card {
  right: 264px;
  top: 166px;
}

.data-card {
  right: 30px;
  bottom: 226px;
}

.hero-pager {
  position: absolute;
  right: 0;
  bottom: 96px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-pager::before,
.hero-pager::after {
  content: "";
  width: 78px;
  height: 2px;
  background: rgba(255, 255, 255, 0.46);
}

.hero-pager button {
  width: 56px;
  height: 58px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  font-size: 33px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 240ms ease, font-size 240ms ease, width 240ms ease;
}

.hero-pager button.active {
  width: 76px;
  color: #fff;
  font-size: 54px;
}

.hero-pager button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}


.news-section {
  padding: 71px 0 104px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 18%, rgba(66, 194, 255, 0.16), transparent 25%),
    linear-gradient(180deg, #edf6ff 0%, #f9fcff 74%, #fff 100%);
}

.news-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 85px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 108, 199, 0.24), transparent);
}

.section-head {
  margin-bottom: 38px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.news-section .section-head {
  min-height: 108px;
}

.pharma-accent {
  width: 292px;
  height: 112px;
  position: absolute;
  right: 154px;
  top: -10px;
  pointer-events: none;
  opacity: 0.78;
}

.pharma-accent::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 4px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(2, 77, 162, 0.14);
  border-radius: 50%;
}

.pharma-accent::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 78px;
  width: 208px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2, 77, 162, 0.24), transparent);
}

.accent-pill {
  width: 118px;
  height: 46px;
  position: absolute;
  left: 2px;
  top: 28px;
  border: 2px solid rgba(2, 77, 162, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(2, 77, 162, 0.1) 0 49%, rgba(255, 255, 255, 0.52) 49.5% 50.5%, rgba(66, 194, 255, 0.08) 51% 100%);
  transform: rotate(-17deg);
  box-shadow: 0 18px 40px rgba(2, 77, 162, 0.08);
}

.accent-bond {
  height: 2px;
  position: absolute;
  display: block;
  background: rgba(2, 77, 162, 0.2);
  transform-origin: left center;
}

.bond-a {
  width: 76px;
  left: 132px;
  top: 34px;
  transform: rotate(18deg);
}

.bond-b {
  width: 70px;
  left: 166px;
  top: 64px;
  transform: rotate(-24deg);
}

.bond-c {
  width: 54px;
  left: 210px;
  top: 40px;
  transform: rotate(42deg);
}

.pharma-accent .atom {
  width: 14px;
  height: 14px;
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(2, 77, 162, 0.34);
  box-shadow: 0 0 0 7px rgba(66, 194, 255, 0.08);
}

.pharma-accent .atom-a {
  left: 126px;
  top: 26px;
}

.pharma-accent .atom-b {
  left: 198px;
  top: 48px;
  border-color: rgba(66, 194, 255, 0.46);
}

.pharma-accent .atom-c {
  left: 232px;
  top: 22px;
}

.pharma-accent .atom-d {
  left: 254px;
  top: 78px;
  border-color: rgba(216, 173, 84, 0.5);
  box-shadow: 0 0 0 7px rgba(216, 173, 84, 0.1);
}

.section-head span {
  display: block;
  color: rgba(7, 90, 167, 0.12);
  font-size: 66px;
  line-height: 0.82;
  font-weight: 900;
}

.section-head h2 {
  margin: -8px 0 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
}

.section-head > a {
  min-width: 132px;
  height: 44px;
  padding: 0 24px;
  border: 1px solid var(--blue-800);
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-800);
  font-size: 17px;
  font-weight: 800;
}

.js .section-head.reveal-item span {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.78s ease,
    transform 0.78s ease;
  transition-delay: calc(var(--reveal-delay, 0ms) + 80ms);
}

.js .section-head.reveal-item h2,
.js .section-head.reveal-item > a {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.js .section-head.reveal-item h2 {
  transition-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}

.js .section-head.reveal-item > a {
  transition-delay: calc(var(--reveal-delay, 0ms) + 260ms);
}

.js .section-head.reveal-item .pharma-accent {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
  transition-delay: calc(var(--reveal-delay, 0ms) + 220ms);
}

.js .section-head.is-visible span,
.js .section-head.is-visible h2,
.js .section-head.is-visible > a {
  opacity: 1;
  transform: translate(0);
}

.js .section-head.is-visible .pharma-accent {
  opacity: 0.78;
  transform: translateX(0);
}

/* ===== 学院要闻 / 通知公告 · 编辑部式非对称版式 ===== */
.news-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 470px);
  gap: 32px;
  align-items: start;
}

/* —— 统一栏头 —— */
.edit-head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(200, 222, 244, 0.9);
}

.edit-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 86px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue-900), var(--cyan));
}

.edit-head--notice::after {
  background: linear-gradient(90deg, #c8922e, var(--gold));
}

.edit-head-text {
  min-width: 0;
}

.edit-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.edit-kicker i {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue-900), var(--cyan));
  box-shadow: 0 6px 14px rgba(7, 117, 201, 0.32);
}

.edit-kicker--gold {
  color: #b07d1e;
}

.edit-kicker--gold i {
  background: linear-gradient(135deg, #c8922e, var(--gold));
  box-shadow: 0 6px 14px rgba(200, 146, 46, 0.32);
}

.edit-head h2 {
  margin: 8px 0 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.edit-head h2 em {
  color: rgba(7, 90, 167, 0.28);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.edit-head--notice h2 em {
  color: rgba(176, 125, 30, 0.42);
}

.edit-more {
  flex: none;
  height: 36px;
  padding: 0 8px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-800);
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
  transition: color 0.26s ease, gap 0.26s ease;
}

.edit-more span {
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 50%;
  background: rgba(7, 89, 181, 0.1);
  transition: background 0.26s ease;
}

.edit-more span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.edit-head--notice .edit-more {
  color: #b07d1e;
}

.edit-head--notice .edit-more span {
  background: rgba(200, 146, 46, 0.14);
}

@media (hover: hover) {
  .edit-more:hover {
    gap: 12px;
  }
  .edit-more:hover span {
    background: rgba(7, 89, 181, 0.2);
  }
  .edit-head--notice .edit-more:hover span {
    background: rgba(200, 146, 46, 0.24);
  }
}

/* —— 左侧：焦点大图 + 杂志编号列表 —— */
.edit-body {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
  gap: 34px;
  align-items: start;
}

.edit-feature {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  position: relative;
  overflow: visible;
  min-height: 545px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.edit-feature::before {
  content: none;
}

.edit-feature::after {
  content: none;
}

.edit-feature .lead-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.edit-feature .lead-slide::before {
  content: none;
}

.edit-feature .lead-slide.active {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.edit-feature .lead-slide img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 390px;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #e9f3ff;
  box-shadow: 0 18px 48px rgba(3, 40, 84, 0.12);
}

.ef-cap {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 320px;
  bottom: auto;
  z-index: 3;
  overflow: hidden;
  min-height: 205px;
  padding: 32px 58px 30px 66px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 62%, rgba(66, 194, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #073f80 0%, #064b91 54%, #075fa8 100%);
  box-shadow: 0 30px 62px rgba(4, 42, 88, 0.24);
}

.ef-cap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  height: auto;
  background: linear-gradient(180deg, var(--cyan), #56e8c2);
  opacity: 1;
}

.ef-cap::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -112px;
  width: 212px;
  height: 212px;
  background: url("/dfiles/2026/images/college-logo-mark.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.ef-cap time {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--cyan);
  line-height: 1;
  font-weight: 900;
}

.ef-cap time strong::after {
  content: "/";
  margin-left: 12px;
  color: currentColor;
}

.ef-cap time strong {
  font-size: 27px;
}

.ef-cap time span {
  color: var(--cyan);
  font-size: 27px;
  font-weight: 900;
}

.ef-cap h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: calc(100% - 36px);
  font-size: 29px;
  line-height: 1.35;
  font-weight: 800;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ef-cap h3 a {
  color: #fff;
}

.ef-cap p {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 80px);
  margin: 20px 0 0;
  color: rgba(230, 244, 255, 0.82);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.62;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.edit-feature .lead-pager {
  position: absolute;
  z-index: 5;
  right: 72px;
  top: auto;
  bottom: 172px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.edit-feature .lead-pager::before {
  content: none;
}

.edit-feature .lead-pager .lead-arrow {
  width: 56px;
  height: 36px;
  padding: 0;
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: rgba(6, 63, 128, 0.62);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.edit-feature .lead-pager .lead-arrow:hover,
.edit-feature .lead-pager .lead-arrow:focus-visible {
  background: rgba(6, 63, 128, 0.92);
}

.edit-feature .lead-pager .lead-arrow + .lead-arrow {
  background: var(--cyan);
}

.edit-feature .lead-pager .lead-arrow + .lead-arrow:hover,
.edit-feature .lead-pager .lead-arrow + .lead-arrow:focus-visible {
  background: #2fd8ff;
  box-shadow: 0 8px 18px rgba(66, 194, 255, 0.26);
}

.js .edit-feature.is-visible .lead-slide.active img {
  animation: lead-image-in 1.18s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.js .edit-feature.is-visible .ef-cap {
  animation: lead-copy-in 0.9s cubic-bezier(0.2, 0.75, 0.2, 1) both 0.18s;
}

@keyframes lead-image-in {
  from {
    filter: saturate(0.82) contrast(0.94);
    transform: scale(1.08);
  }
  to {
    filter: saturate(1) contrast(1);
    transform: scale(1);
  }
}

@keyframes lead-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 杂志编号列表 */
.edit-index {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.edit-index li {
  position: relative;
}

.edit-index li + li {
  border-top: 1px dashed rgba(191, 214, 237, 0.9);
}

.edit-index a {
  padding: 17px 6px 17px 2px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: inherit;
}

.edit-index .idx {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: rgba(7, 90, 167, 0.4);
  transition: color 0.26s ease, transform 0.26s ease;
}

.edit-index .idx strong {
  display: block;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}

.edit-index .idx em {
  display: block;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  color: rgba(7, 90, 167, 0.35);
}

.edit-index .ei-text {
  min-width: 0;
}

.edit-index h3 {
  margin: 0;
  color: #26344a;
  font-size: 21.5px;
  font-weight: 700;
  line-height: 1.52;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.26s ease;
}

.edit-index time {
  display: block;
  margin-top: 7px;
  color: #93a7bf;
  font-size: 15.5px;
  font-weight: 700;
}

@media (hover: hover) {
  .edit-index a:hover .idx {
    color: var(--cyan);
    transform: translateX(2px);
  }
  .edit-index a:hover h3 {
    color: var(--blue-900);
  }
}

/* —— 右侧：置顶卡 + 时间轴 —— */
.edit-notice {
  min-width: 0;
  margin-top: -14px;
  padding: 12px 24px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f2f8ff 0%, #f8fcff 100%);
  border: 1px solid rgba(206, 226, 246, 0.9);
  box-shadow: 0 22px 54px rgba(3, 46, 96, 0.08);
}

.notice-top {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 22px;
  padding: 22px 22px 20px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #013675 0%, #024da2 58%, #0877be 100%);
  box-shadow: 0 18px 40px rgba(2, 44, 96, 0.28);
}

.notice-top::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 148px;
  height: 148px;
  background: url("/dfiles/2026/images/college-logo-mark.png") center / contain no-repeat;
  opacity: 0.14;
}

.notice-top time {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--cyan);
  line-height: 1;
  font-weight: 900;
}

.notice-top time strong {
  font-size: 28px;
}

.notice-top time span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 700;
}

.notice-top h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 21.5px;
  line-height: 1.52;
  font-weight: 700;
}

/* 时间轴列表 */
.notice-timeline {
  --axis-x: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.notice-timeline::before {
  content: "";
  position: absolute;
  left: var(--axis-x);
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(66, 194, 255, 0.82), rgba(66, 194, 255, 0.12));
  transform: translateX(-50%);
}

.notice-timeline li {
  position: relative;
  padding-left: 30px;
  min-height: 72px;
}

.notice-timeline li + li {
  border-top: 1px solid rgba(203, 223, 243, 0.8);
}

.notice-timeline li::before {
  content: "";
  position: absolute;
  left: var(--axis-x);
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(7, 89, 181, 0.34);
  transform: translate(-50%, -50%);
  transition: border-color 0.26s ease, transform 0.26s ease, background 0.26s ease;
}

.notice-timeline a {
  min-height: 72px;
  padding: 16px 4px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: inherit;
}

.notice-timeline time {
  flex: none;
  margin-top: 3px;
  color: var(--blue-800);
  font-size: 14px;
  font-weight: 900;
}

.notice-timeline p {
  margin: 0;
  min-width: 0;
  color: #35455c;
  font-size: 21.5px;
  font-weight: 700;
  line-height: 1.52;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.26s ease;
}

@media (hover: hover) {
  .notice-timeline li:hover::before {
    border-color: var(--cyan);
    background: #f8fcff;
    transform: translate(-50%, -50%) scale(1.12);
  }
  .notice-timeline a:hover p {
    color: var(--blue-900);
  }
  .notice-timeline a:hover time {
    color: var(--cyan);
  }
}

/* 揭示动画 */
.js .edit-feature.reveal-item {
  transform: translateY(30px) scale(0.985);
}

.js .notice-top.reveal-item {
  transform: translateY(24px);
}

@keyframes card-sweep {
  to {
    transform: translateX(120%);
  }
}

.research-section {
  padding: 64px 0 70px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 83, 166, 0.98), rgba(0, 92, 176, 0.96) 52%, rgba(4, 111, 190, 0.94)),
    #0054a6;
  position: relative;
  overflow: hidden;
}

.research-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.42) 48.25% 48.55%, transparent 49%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 118px 118px, 96px 96px, 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28));
}

.research-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(88, 185, 230, 0.16), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(0, 45, 105, 0), rgba(0, 55, 116, 0.14));
}

.research-inner {
  position: relative;
  z-index: 2;
}

.section-head.light span {
  color: rgba(255, 255, 255, 0.12);
}

.section-head.light h2 {
  color: #fff;
}

.section-head.light > a {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.research-content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.platform-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(195, 224, 247, 0.72);
  box-shadow: 0 26px 66px rgba(0, 24, 62, 0.24);
}

.main-platform {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.platform-carousel {
  height: 286px;
  position: relative;
  overflow: hidden;
  background: #eaf6ff;
}

.platform-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 0.72s ease,
    transform 1.1s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.platform-slide.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.platform-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(235, 249, 255, 0.98), rgba(248, 253, 255, 0.94));
}

.platform-pager {
  position: static;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  background: transparent;
}

.platform-pager button {
  width: 86px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(7, 89, 181, 0.16);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(4, 42, 91, 0.08);
  cursor: pointer;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.platform-pager button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.platform-pager button.active {
  border-color: var(--cyan);
  box-shadow: 0 12px 28px rgba(32, 211, 255, 0.22);
  transform: translateY(-2px);
}

.platform-pager button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.platform-copy {
  flex: 1;
  padding: 32px 38px 38px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff, #f5fbff);
  border-top: 1px solid rgba(197, 223, 245, 0.86);
}

.platform-copy-panel {
  display: none;
}

.platform-copy-panel.active {
  display: block;
  animation: platform-copy-fade 0.36s ease both;
}

@keyframes platform-copy-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-platform span {
  color: #b88917;
  font-size: 17px;
  font-weight: 900;
}

.main-platform h3 {
  margin: 16px 0 0;
  color: var(--blue-900);
  font-size: 34px;
  line-height: 1.36;
}

.main-platform p {
  margin: 18px 0 0;
  color: #52677f;
  font-size: 19px;
  line-height: 1.75;
}

.research-metrics {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.research-metrics div {
  min-width: 0;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 249, 255, 0.9));
  border: 1px solid rgba(201, 226, 246, 0.72);
  box-shadow: 0 18px 38px rgba(0, 36, 82, 0.12);
}

.research-metrics div::after {
  content: "";
  width: 86px;
  height: 86px;
  position: absolute;
  right: -28px;
  top: -30px;
  border-radius: 50%;
  background: rgba(32, 211, 255, 0.13);
}

.research-metrics strong {
  display: block;
  color: var(--blue-900);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.research-metrics span {
  display: block;
  margin-top: 12px;
  color: #52677f;
  font-size: 16px;
  line-height: 1.35;
}

.platform-list {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(148px, 1fr));
  gap: 14px;
}

.platform-list article {
  min-height: 148px;
  padding: 24px 22px 22px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 226, 246, 0.68);
  box-shadow: 0 16px 36px rgba(0, 36, 82, 0.12);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.platform-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--mint));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.platform-list h3 {
  min-width: 0;
  margin: 0;
  color: var(--blue-900);
  font-size: 21px;
  line-height: 1.42;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  position: relative;
  z-index: 1;
  align-self: start;
}

.platform-list p {
  margin: 16px 0 0;
  padding-top: 14px;
  color: #668098;
  font-size: 17px;
  border-top: 1px solid rgba(162, 196, 224, 0.44);
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .platform-list article:hover,
  .platform-list article:focus-within {
    background: #fff;
    border-color: rgba(32, 211, 255, 0.62);
    box-shadow: 0 22px 46px rgba(0, 42, 96, 0.18);
    transform: translateY(-3px);
  }

  .platform-list article:hover::before,
  .platform-list article:focus-within::before {
    opacity: 1;
  }
}

.research-content {
  display: block;
}

.research-focus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.research-feature {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(199, 226, 248, 0.74);
  border-radius: 6px;
  box-shadow: 0 26px 62px rgba(0, 24, 62, 0.2);
}

.research-feature figure {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--blue-950);
}

.research-feature figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 42, 95, 0.02), rgba(1, 42, 95, 0.56)),
    linear-gradient(90deg, rgba(2, 77, 162, 0.2), transparent 58%);
}

.research-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96);
  transition: transform 0.42s ease;
}

.research-feature-copy {
  min-width: 0;
  padding: 36px 38px 34px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(66, 194, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.96));
}

.research-feature-copy > span {
  color: var(--blue-800);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.research-feature-copy h3 {
  margin: 16px 0 0;
  color: var(--blue-900);
  font-size: 32px;
  line-height: 1.34;
}

.research-feature-copy p {
  margin: 18px 0 0;
  color: #52677f;
  font-size: 18px;
  line-height: 1.72;
}

.research-feature-copy ul {
  margin: auto 0 0;
  padding: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.research-feature-copy li {
  min-width: 0;
  min-height: 86px;
  padding: 15px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(234, 245, 255, 0.82);
  border: 1px solid rgba(179, 213, 241, 0.72);
  border-radius: 6px;
}

.research-feature-copy strong {
  color: var(--blue-900);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.research-feature-copy li span {
  margin-top: 10px;
  color: #5c7087;
  font-size: 15px;
  line-height: 1.35;
}

.research-link {
  width: fit-content;
  min-height: 40px;
  margin-top: 24px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue-900);
  border-radius: 20px;
  font-size: 17px;
  font-weight: 800;
  transition:
    background 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.discipline-platforms {
  margin-top: 20px;
}

.research-lists {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.research-article-panel {
  min-width: 0;
  padding: 30px 34px 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(199, 226, 248, 0.74);
  border-radius: 6px;
  box-shadow: 0 26px 62px rgba(0, 24, 62, 0.2);
}

.research-article-panel:not(.research-article-panel--talent) {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto minmax(0, 1fr);
}

.research-article-panel header {
  margin-bottom: 22px;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: end;
  border-bottom: 1px solid rgba(176, 207, 235, 0.72);
}

.research-article-panel header span {
  grid-column: 1 / -1;
  color: var(--blue-700);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.research-article-panel header h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 34px;
  line-height: 1.2;
}

.research-article-panel header a {
  min-width: 78px;
  height: 34px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  background: #eaf5ff;
  border-radius: 17px;
  font-size: 16px;
  font-weight: 900;
}

.research-lead-article {
  min-height: 122px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0, rgba(66, 194, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #f8fcff, #eaf5ff);
  border: 1px solid rgba(184, 214, 240, 0.78);
  border-radius: 6px;
}

.research-lead-article time {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--blue-900);
}

.research-lead-article time strong {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.research-lead-article time span {
  margin-top: 8px;
  color: #6b829a;
  font-size: 16px;
  font-weight: 900;
}

.research-lead-article h4 {
  margin: 0;
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1.38;
}

.research-lead-article p {
  margin: 10px 0 0;
  color: #60758c;
  font-size: 17px;
  line-height: 1.62;
}

.research-article-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.research-article-list li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(214, 229, 242, 0.86);
}

.research-article-list time {
  color: var(--blue-700);
  font-size: 16px;
  font-weight: 900;
}

.research-article-list a {
  min-width: 0;
  color: #26344a;
  font-size: 19px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.research-article-panel--talent header span,
.research-article-panel--talent .research-article-list time,
.research-article-panel--talent .research-lead-article time {
  color: #0a8296;
}

.research-article-panel--talent header a {
  color: #087f98;
  background: #e7f9fb;
}

.research-article-panel--talent {
  padding: 28px 30px 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(85, 230, 193, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(246, 253, 255, 0.96), rgba(235, 249, 255, 0.92));
}

.research-article-panel--talent header {
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.research-article-panel--talent .research-lead-article {
  min-height: 0;
  padding: 20px 20px 18px;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(2, 77, 162, 0.94), rgba(8, 132, 158, 0.9));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 42, 96, 0.18);
}

.research-article-panel--talent .research-lead-article time {
  flex-direction: row;
  align-items: baseline;
  gap: 9px;
  color: #fff;
}

.research-article-panel--talent .research-lead-article time strong,
.research-article-panel--talent .research-lead-article time span,
.research-article-panel--talent .research-lead-article h4,
.research-article-panel--talent .research-lead-article h4 a,
.research-article-panel--talent .research-lead-article p {
  color: #fff;
}

.research-article-panel--talent .research-lead-article p {
  opacity: 0.76;
}

.research-article-panel--talent .research-article-list {
  margin-top: 20px;
  position: relative;
}

.research-article-panel--talent .research-article-list::before {
  content: "";
  position: absolute;
  left: 76px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(10, 130, 150, 0.2);
}

.research-article-panel--talent .research-article-list li {
  min-height: 68px;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  position: relative;
  border-bottom-color: rgba(190, 220, 232, 0.72);
}

.research-article-panel--talent .research-article-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: 72px;
  top: 50%;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0a8296;
  transform: translateY(-50%);
}

.research-article-panel--talent .research-article-list a {
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.research-showcase {
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.research-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.research-column-head {
  min-height: 52px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.research-column-head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.research-column-head h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 29px;
  line-height: 1.2;
}

.research-column-head a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 800;
}

.research-more {
  height: 36px;
  padding: 0 8px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(206, 239, 255, 0.4);
  border-radius: 999px;
  color: #eaf6ff;
  background: rgba(206, 239, 255, 0.08);
  box-shadow: none;
  transition: background 0.26s ease, color 0.26s ease, border-color 0.26s ease, gap 0.26s ease;
}

.research-more span {
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.26s ease;
}

.research-more span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

@media (hover: hover) {
  .research-more:hover {
    gap: 12px;
    color: var(--blue-950);
    border-color: #fff;
    background: #fff;
  }

  .research-more:hover span {
    background: rgba(255, 255, 255, 0.28);
  }
}

.research-column-head--talent span {
  color: rgba(206, 239, 255, 0.72);
}

.research-talent-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.research-talent-chips {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.research-talent-chips a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(206, 239, 255, 0.4);
  border-radius: 999px;
  color: #eaf6ff;
  font-size: 16px;
  font-weight: 700;
  background: rgba(206, 239, 255, 0.08);
  white-space: nowrap;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.research-talent-chips a:hover {
  background: #fff;
  color: var(--blue-950);
  border-color: #fff;
}

.research-showcase-main {
  flex: 1;
  min-width: 0;
  min-height: 0;
  padding: 0 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
  color: #fff;
  background:
    radial-gradient(circle at 0 100%, rgba(66, 194, 255, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(0, 75, 153, 0.98), rgba(0, 103, 174, 0.98));
  box-shadow: 0 30px 68px rgba(0, 25, 68, 0.24);
}

.research-showcase-main::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54%;
  height: 72%;
  opacity: 0.24;
  background:
    repeating-linear-gradient(63deg, rgba(255, 255, 255, 0.36) 0 2px, transparent 2px 14px);
  mask-image: radial-gradient(circle at 8% 80%, #000, transparent 66%);
  pointer-events: none;
}

.research-showcase-main figure {
  width: calc(100% - 32px);
  height: 250px;
  aspect-ratio: auto;
  margin: -24px auto 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #dceafa;
  border-radius: 26px;
  box-shadow: 0 26px 58px rgba(0, 23, 58, 0.26);
}

.research-showcase-main figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-showcase-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-top: 22px;
}

.research-showcase-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.research-showcase-copy h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.35;
}

.research-showcase-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.58;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.research-showcase-copy time {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.research-showcase-controls {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: #fff;
}

.research-showcase-controls .research-index {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 21px;
  font-weight: 900;
  opacity: 0.82;
  cursor: pointer;
}

.research-showcase-controls .research-index.active {
  font-size: 38px;
  line-height: 1;
  opacity: 1;
}

.research-showcase-controls .research-arrow {
  width: 74px;
  height: 48px;
  border: 0;
  color: var(--blue-900);
  background: #fff;
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
}

.research-showcase-controls .research-arrow + .research-arrow {
  color: #fff;
  background: rgba(66, 194, 255, 0.56);
}

.research-showcase-side {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-rows: 174px minmax(0, 1fr);
  gap: 14px;
}

.research-side-feature {
  padding: 20px 24px;
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 46px rgba(0, 25, 68, 0.16);
}

.research-side-feature > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.research-side-feature img {
  width: 150px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.research-side-feature h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.42;
}

.research-side-feature h3 a {
  color: inherit;
}

.research-side-copy p {
  padding-right: 46px;
  margin: 8px 0 0;
  color: #607086;
  font-size: 18px;
  line-height: 1.52;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.research-side-feature footer {
  padding-top: 0;
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  border-top: 0;
}

.research-side-feature time {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--blue-900);
}

.research-side-feature time strong {
  font-size: 20px;
  line-height: 1;
}

.research-side-feature time span {
  font-size: 15px;
  font-weight: 900;
}

.research-side-feature footer label {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-800);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.24s ease, transform 0.24s ease;
}

.research-side-feature footer label:hover,
.research-side-feature footer label:focus-visible {
  background: var(--blue-950);
  transform: translateX(4px);
}

.research-side-list {
  margin: 0;
  padding: 10px 24px;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 46px rgba(0, 25, 68, 0.14);
}

.research-side-list li {
  min-height: 66px;
  padding: 11px 0 10px;
  display: grid;
  align-content: center;
  border-bottom: 1px dashed rgba(138, 162, 188, 0.42);
  cursor: pointer;
}

.research-side-list li:last-child {
  border-bottom: 0;
}

.research-side-list a {
  color: #26344a;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 700;
}

.research-side-list time {
  margin-top: 7px;
  color: var(--blue-900);
  font-size: 18px;
  font-weight: 900;
}

.research-side-list li.active a {
  color: var(--blue-700);
}

.discipline-head {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.discipline-head span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.discipline-head h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}

.discipline-head p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.55;
  text-align: right;
}

.discipline-carousel {
  position: relative;
}

.discipline-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.discipline-viewport::-webkit-scrollbar {
  display: none;
}

.discipline-strip {
  --discipline-gap: 10px;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 98px);
  grid-auto-columns: calc((100% - (var(--discipline-gap) * 3)) / 4);
  gap: var(--discipline-gap);
}

.discipline-arrow {
  width: 38px;
  height: 50px;
  position: absolute;
  z-index: 3;
  top: 50%;
  border: 0;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(0, 25, 68, 0.22);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.24s ease, transform 0.24s ease, opacity 0.24s ease;
}

.discipline-arrow--prev {
  left: -48px;
}

.discipline-arrow--next {
  right: -48px;
}

.discipline-arrow:disabled {
  opacity: 0.38;
  cursor: default;
}

.discipline-arrow:not(:disabled):hover,
.discipline-arrow:not(:disabled):focus-visible {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.discipline-card {
  min-width: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  position: relative;
  overflow: hidden;
  display: block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(210, 234, 250, 0.38);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 24, 62, 0.18);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.discipline-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.discipline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 28, 64, 0.04), rgba(1, 28, 64, 0.72)),
    linear-gradient(90deg, rgba(2, 77, 162, 0.2), transparent);
}

.discipline-card span {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 900;
  text-shadow: 0 8px 18px rgba(0, 16, 40, 0.34);
}

.research-feature-copy h3 a,
.discipline-card span {
  --title-wash: rgba(32, 211, 255, 0.18);
  --title-line: rgba(32, 211, 255, 0.92);
  background-image:
    linear-gradient(90deg, var(--title-wash), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, var(--title-line), rgba(32, 211, 255, 0.92));
  background-position:
    left calc(100% - 1px),
    left 100%;
  background-repeat: no-repeat;
  background-size:
    0 42%,
    0 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition:
    background-size 0.36s cubic-bezier(0.22, 0.72, 0.16, 1),
    color 0.24s ease;
}

@media (hover: hover) {
  .research-feature:hover img,
  .research-feature:focus-within img,
  .discipline-card:hover img,
  .discipline-card:focus-visible img {
    transform: scale(1.05);
  }

  .research-link:hover,
  .research-link:focus-visible {
    background: var(--blue-800);
    box-shadow: 0 14px 30px rgba(2, 77, 162, 0.22);
    transform: translateY(-2px);
  }

  .research-feature:hover .research-feature-copy h3 a,
  .research-feature:focus-within .research-feature-copy h3 a,
  .discipline-card:hover span,
  .discipline-card:focus-visible span {
    background-size:
      100% 42%,
      100% 2px;
  }

  .discipline-card:hover,
  .discipline-card:focus-visible {
    border-color: rgba(32, 211, 255, 0.72);
    box-shadow: 0 24px 52px rgba(0, 30, 72, 0.26);
    transform: translateY(-3px);
  }
}

.education-section {
  padding: 100px 0 112px;
  background:
    linear-gradient(180deg, #fff, #f3f8ff);
}

.education-section .container {
  position: relative;
}

.education-logo-mark {
  width: clamp(150px, 15vw, 238px);
  height: auto;
  position: absolute;
  top: -18px;
  right: 108px;
  z-index: 0;
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
  filter: saturate(0.95);
}

.education-head,
.education-inner {
  position: relative;
  z-index: 1;
}

.education-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.82fr);
  gap: 40px;
  align-items: stretch;
}

/* ---- Left: editorial zigzag stream ---- */
.topic-stream {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.topic-band {
  position: relative;
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px 26px 22px 24px;
  background: #fff;
  border: 1px solid #e2edf9;
  border-radius: 4px;
  box-shadow: 0 20px 48px rgba(4, 42, 91, 0.07);
  transition:
    transform 0.4s cubic-bezier(0.22, 0.72, 0.16, 1),
    box-shadow 0.4s ease;
}

.topic-band--reverse {
  grid-template-columns: minmax(0, 1fr) 264px;
}

.topic-band--reverse .topic-figure {
  order: 2;
}

.topic-band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #0b5fab, #20d3ff);
}

.student-band::before {
  background: linear-gradient(180deg, #0879ad, #0a94a8);
}

.topic-band--reverse::before {
  left: auto;
  right: 0;
}

.topic-figure {
  position: relative;
  align-self: stretch;
  min-height: 232px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blue-900);
}

.topic-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98);
  transition: transform 0.6s cubic-bezier(0.22, 0.72, 0.16, 1);
}

.topic-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(3, 27, 63, 0) 40%, rgba(3, 27, 63, 0.42) 100%);
}

.topic-num {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(2, 24, 58, 0.4);
}

.topic-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topic-kicker {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.topic-kicker em {
  font-style: normal;
  color: var(--blue-800);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 22px;
}

.topic-kicker em::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--cyan);
}

.student-band .topic-kicker em {
  color: #087f98;
}

.topic-kicker i {
  font-style: normal;
  color: #a9bdd6;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.topic-content h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.34;
}

.topic-content p {
  margin: 12px 0 0;
  color: #5b6b80;
  font-size: 19px;
  line-height: 1.62;
}

@media (hover: hover) {
  .topic-band:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(4, 42, 91, 0.13);
  }

  .topic-band:hover .topic-figure img {
    transform: scale(1.06);
  }
}

/* ---- Right: immersive poster spotlight ---- */
.poster-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 32px 26px 46px;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 0%, rgba(32, 211, 255, 0.32), transparent 46%),
    radial-gradient(circle at 8% 100%, rgba(11, 95, 171, 0.5), transparent 44%),
    linear-gradient(160deg, #052a55 0%, #063b74 46%, #076f92 100%);
  box-shadow: 0 30px 66px rgba(3, 30, 66, 0.28);
}

.poster-spotlight::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px solid rgba(32, 211, 255, 0.34);
  box-shadow: 0 0 0 22px rgba(32, 211, 255, 0.07);
  pointer-events: none;
}

.poster-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 70% 40%, #000, transparent 72%);
  pointer-events: none;
}

/* decorative shapes on the spotlight */
.spotlight-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.spotlight-decor::before {
  content: "";
  position: absolute;
  left: -46px;
  bottom: 68px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.spotlight-decor::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 74px;
  height: 74px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1.4px, transparent 1.6px);
  background-size: 13px 13px;
  opacity: 0.7;
}

.spotlight-side {
  position: absolute;
  left: 14px;
  bottom: 40px;
  z-index: 2;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.42em;
}

.spotlight-head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 22px;
}

.spotlight-head span {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.spotlight-head strong {
  color: #fff;
  font-size: 23px;
  line-height: 1.28;
}

.poster-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.poster-glow {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: auto;
  height: 88%;
  max-height: 388px;
  width: auto;
  aspect-ratio: 0.55;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 30%, rgba(32, 211, 255, 0.55), rgba(11, 95, 171, 0) 68%);
  filter: blur(26px);
  animation: posterGlow 5.2s ease-in-out infinite;
}

@keyframes posterGlow {
  0%, 100% { opacity: 0.65; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.04); }
}

.poster-slide {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 92%;
  max-height: 400px;
  width: auto;
  aspect-ratio: 0.535;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: rotateY(14deg) translateX(26px) scale(0.94);
  transform-origin: center;
  box-shadow:
    0 26px 50px rgba(1, 20, 48, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.72, 0.16, 1);
}

.poster-slide.active {
  opacity: 1;
  transform: rotateY(-7deg) translateX(0) scale(1);
}

.poster-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.poster-dots {
  position: relative;
  z-index: 3;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.poster-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    width 0.24s ease,
    border-radius 0.24s ease,
    background 0.24s ease;
}

.poster-dot.active {
  width: 24px;
  border-radius: 999px;
  background: #fff;
}

.story-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-points a {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-800);
  background: #eaf5ff;
  font-size: 16px;
  font-weight: 800;
}

.story-articles {
  margin-top: auto;
  padding-top: 22px;
}

.story-more {
  margin: 0;
  padding: 20px 0 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e5edf7;
  border-bottom: 1px solid #e5edf7;
}

.story-more strong {
  min-width: 104px;
  height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue-900);
  font-size: 18px;
  line-height: 1;
}

.story-more a {
  min-width: 0;
  display: block;
}

.story-more span {
  color: #52657c;
  font-size: 19px;
  line-height: 1.5;
}

.story-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  min-height: 50px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #edf3fa;
}

.story-list time {
  color: var(--blue-700);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.story-list a {
  min-width: 0;
  color: #26344a;
  font-size: 19px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.student-band .story-points a {
  color: #086f87;
  background: #e7f9fb;
}

.student-band .story-more strong {
  background: linear-gradient(135deg, #0879ad, #0a94a8);
}

.student-band .story-list time {
  color: #087f98;
}

.news-stack h3 a,
.notice-board a,
.platform-list h3,
.research-lead-article h4 a,
.research-article-list a,
.research-showcase-copy h3 a,
.research-side-feature h3 a,
.research-side-list a,
.story-more span,
.story-list a {
  --title-wash: rgba(32, 211, 255, 0.18);
  --title-line: rgba(11, 117, 201, 0.92);
  position: relative;
  background-image:
    linear-gradient(90deg, var(--title-wash), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, var(--title-line), rgba(32, 211, 255, 0.92));
  background-position:
    left calc(100% - 1px),
    left 100%;
  background-repeat: no-repeat;
  background-size:
    0 42%,
    0 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition:
    color 0.28s ease,
    background-size 0.36s cubic-bezier(0.22, 0.72, 0.16, 1),
    text-shadow 0.28s ease,
    transform 0.28s ease;
}

.story-more span,
.story-list a {
  display: block;
}

.notice-board time,
.story-more strong,
.story-list time {
  transition:
    color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    text-shadow 0.28s ease,
    transform 0.28s ease;
}

.platform-list h3 {
  --title-wash: rgba(32, 211, 255, 0.22);
  --title-line: rgba(32, 211, 255, 0.98);
}

@media (hover: hover) {
  .news-stack article:hover h3 a,
  .news-stack article:focus-within h3 a,
  .notice-board li:hover a,
  .notice-board li:focus-within a,
  .platform-list article:hover h3,
  .platform-list article:focus-within h3,
  .research-lead-article:hover h4 a,
  .research-lead-article:focus-within h4 a,
  .research-article-list li:hover a,
  .research-article-list li:focus-within a,
  .research-showcase-main:hover .research-showcase-copy h3 a,
  .research-showcase-main:focus-within .research-showcase-copy h3 a,
  .research-side-feature:hover h3 a,
  .research-side-feature:focus-within h3 a,
  .research-side-list li:hover a,
  .research-side-list li:focus-within a,
  .story-more:hover span,
  .story-more:focus-within span,
  .story-list li:hover a,
  .story-list li:focus-within a {
    background-size:
      100% 42%,
      100% 2px;
    transform: translateX(8px);
  }

  .research-side-feature:hover h3 a,
  .research-side-feature:focus-within h3 a {
    background-size: 0 42%, 0 2px;
    transform: none;
  }

  .news-stack article:hover h3 a,
  .news-stack article:focus-within h3 a,
  .notice-board li:hover a,
  .notice-board li:focus-within a,
  .story-more:hover span,
  .story-more:focus-within span,
  .story-list li:hover a,
  .story-list li:focus-within a {
    color: var(--blue-900);
    text-shadow: 0 10px 24px rgba(7, 90, 167, 0.16);
  }

  .platform-list article:hover h3,
  .platform-list article:focus-within h3 {
    color: var(--blue-900);
    text-shadow: 0 10px 24px rgba(7, 90, 167, 0.16);
  }

  .research-lead-article:hover h4 a,
  .research-lead-article:focus-within h4 a,
  .research-article-list li:hover a,
  .research-article-list li:focus-within a,
  .research-side-list li:hover a,
  .research-side-list li:focus-within a {
    color: var(--blue-900);
    text-shadow: 0 10px 24px rgba(7, 90, 167, 0.16);
  }

  .notice-board li:hover time,
  .notice-board li:focus-within time,
  .story-list li:hover time,
  .story-list li:focus-within time {
    color: var(--cyan);
    text-shadow: 0 0 18px rgba(32, 211, 255, 0.28);
  }

  .story-more:hover strong,
  .story-more:focus-within strong {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(6, 61, 122, 0.18);
  }

}

.lead-copy h3 a:focus-visible,
.news-stack h3 a:focus-visible,
.notice-board a:focus-visible,
.main-platform h3 a:focus-visible,
.platform-list h3 a:focus-visible,
.research-feature-copy h3 a:focus-visible,
.research-link:focus-visible,
.discipline-card:focus-visible,
.research-lead-article h4 a:focus-visible,
.research-article-list a:focus-visible,
.research-showcase-copy h3 a:focus-visible,
.research-side-feature h3 a:focus-visible,
.research-side-list a:focus-visible,
.story-more a:focus-visible,
.story-list a:focus-visible,
.poster-dot:focus-visible,
.photo-caption h3 a:focus-visible,
.showcase-note h3 a:focus-visible {
  outline: 2px solid rgba(32, 211, 255, 0.72);
  outline-offset: 4px;
}

.student-feature a:focus-visible,
.student-articles a:focus-visible,
.student-photo-card a:focus-visible {
  outline: 2px solid rgba(32, 211, 255, 0.72);
  outline-offset: 4px;
}

.campus-section {
  padding: 0 0 26px;
  position: relative;
  scroll-margin-top: 96px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f3f8ff 0%, #eef6ff 72%, #e7f2ff 100%);
}

.special-column {
  margin-top: 18px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(181, 211, 239, 0.88);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(4, 42, 91, 0.08);
}

.special-column-head {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.special-column-head span {
  color: #0b83aa;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.special-column-head h2 {
  margin: 5px 0 0;
  color: var(--blue-950);
  font-size: 24px;
  line-height: 1;
}

.special-column-arrows {
  display: flex;
  gap: 6px;
}

.special-column-arrows button {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  background: #fff;
  border: 1px solid rgba(7, 89, 181, 0.18);
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.special-column-arrows button:hover:not(:disabled),
.special-column-arrows button:focus-visible:not(:disabled) {
  color: #fff;
  background: var(--brand-blue);
  transform: translateY(-2px);
}

.special-column-arrows button:disabled {
  opacity: 0.3;
  cursor: default;
}

.special-column-viewport {
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.special-column-viewport::-webkit-scrollbar {
  display: none;
}

.special-column-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 6);
  gap: 12px;
}

.special-column-track a {
  min-width: 0;
  min-height: 62px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #27415f;
  background: linear-gradient(135deg, #fff, #f0f7ff);
  border: 1px solid rgba(181, 211, 239, 0.9);
  border-radius: 6px;
  scroll-snap-align: start;
  transition: color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.special-column-track small {
  color: #19a8c8;
  font-size: 14px;
  font-weight: 900;
}

.special-column-track strong {
  min-width: 0;
  font-size: 16px;
  line-height: 1.35;
}

.special-column-track a:hover,
.special-column-track a:focus-visible {
  color: var(--blue-900);
  border-color: rgba(32, 211, 255, 0.72);
  box-shadow: 0 12px 24px rgba(4, 67, 132, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .special-column {
    grid-template-columns: 1fr;
  }

  .special-column-track {
    grid-auto-columns: calc((100% - 36px) / 4);
  }
}

@media (max-width: 720px) {
  .special-column {
    padding: 16px;
  }

  .special-column-track {
    grid-auto-columns: calc((100% - 12px) / 2);
  }
}

.campus-section::before {
  content: "STUDENT";
  position: absolute;
  left: -42px;
  bottom: 16px;
  color: rgba(7, 90, 167, 0.045);
  font-size: 212px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.showcase-inner {
  padding: 48px 0 0;
  position: relative;
  z-index: 1;
}

.student-board {
  min-height: 470px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 48px repeat(5, minmax(58px, 1fr));
  gap: 16px;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.student-board::before {
  content: "";
  position: absolute;
  inset: -24px -30px auto;
  height: 180px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 89, 181, 0.08), rgba(32, 211, 255, 0.14) 42%, transparent 78%);
  pointer-events: none;
}

.student-board::after {
  content: none;
}

.student-feature,
.student-articles,
.student-photo-card,
.student-rail {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(204, 226, 246, 0.9);
  border-radius: 6px;
  box-shadow: 0 24px 58px rgba(4, 42, 91, 0.12);
}

.student-feature {
  display: grid;
  align-content: end;
  color: #fff;
  background: #d9e8f6;
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.student-feature--activity {
  grid-column: 1 / span 5;
  grid-row: 1 / span 6;
  min-height: 0;
  z-index: 2;
  clip-path: none;
  transform: none;
  transform-origin: center;
}

.student-feature--team {
  grid-column: 3 / 5;
  grid-row: 1;
  min-height: 238px;
}

.student-photo-card {
  display: grid;
  align-content: end;
  min-height: 0;
  color: #fff;
  background: #d9e8f6;
  transform-origin: center;
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.student-photo-card--team {
  grid-column: 6 / span 7;
  grid-row: 2 / span 2;
  z-index: 1;
  clip-path: none;
  transform: none;
}

.student-photo-card--innovation {
  grid-column: 6 / span 4;
  grid-row: 4 / span 3;
  z-index: 3;
  clip-path: none;
  transform: none;
}

.student-photo-card--jobs {
  grid-column: 10 / span 3;
  grid-row: 4 / span 3;
  z-index: 2;
  clip-path: none;
  transform: none;
}

.student-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.student-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.student-feature img,
.student-photo-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.72s ease, filter 0.72s ease;
}

.student-feature::after,
.student-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 27, 63, 0.03), rgba(3, 27, 63, 0.84)),
    linear-gradient(90deg, rgba(2, 77, 162, 0.58), rgba(32, 211, 255, 0.08));
}

.student-photo-card::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 28px;
  z-index: 1;
  width: 84px;
  height: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  box-shadow: 0 0 22px rgba(32, 211, 255, 0.34);
}

.student-photo-card--innovation::before {
  background: linear-gradient(90deg, var(--mint), #9cf0ff);
}

.student-photo-card--jobs::before {
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.student-feature--team::after,
.student-photo-card--team::after {
  background:
    linear-gradient(90deg, rgba(3, 27, 63, 0.78), rgba(3, 27, 63, 0.18)),
    linear-gradient(180deg, rgba(2, 77, 162, 0.16), rgba(2, 77, 162, 0.46));
}

.student-slide > div,
.student-feature--team > div,
.student-photo-card > div {
  padding: 28px 32px;
  position: relative;
  z-index: 1;
}

.student-feature--team > div,
.student-photo-card--team > div {
  max-width: 580px;
  padding: 28px 32px;
}

.student-photo-card--team > div {
  max-width: 760px;
  padding-left: 36px;
}

.student-feature span,
.student-photo-card span,
.student-card-head span {
  width: fit-content;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  color: #bdf1ff;
  background: rgba(3, 27, 63, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.student-feature h3,
.student-photo-card h3 {
  margin: 12px 0 0;
  max-width: 620px;
  font-size: 32px;
  line-height: 1.28;
}

.student-feature--team h3,
.student-photo-card--team h3,
.student-photo-card--innovation h3,
.student-photo-card--jobs h3 {
  font-size: 26px;
}

.student-feature p {
  margin: 12px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.student-feature--team p {
  max-width: 540px;
  font-size: 16px;
  line-height: 1.65;
}

.student-slide > div > a,
.student-feature--team > div > a,
.student-more {
  margin-top: 16px;
  height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  background: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(3, 27, 63, 0.14);
}

.student-rail {
  grid-column: 6 / span 7;
  grid-row: 1;
  width: auto;
  min-height: 0;
  padding: 0;
  justify-self: stretch;
  align-self: stretch;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.student-rail button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  border: 1px solid rgba(7, 89, 181, 0.28);
  background: rgba(255, 255, 255, 0.72);
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.student-rail button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(2, 77, 162, 0.18);
}

.student-articles {
  min-height: 330px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.94));
}

.student-articles--innovation {
  grid-column: 3;
  grid-row: 2;
}

.student-articles--jobs {
  grid-column: 4;
  grid-row: 2;
}

.student-articles::before {
  content: "";
  width: 118px;
  height: 118px;
  position: absolute;
  right: -42px;
  top: -46px;
  border-radius: 50%;
  background: rgba(32, 211, 255, 0.13);
}

.student-card-head {
  position: relative;
  z-index: 1;
}

.student-card-head h3 {
  margin: 12px 0 0;
  color: var(--blue-900);
  font-size: 25px;
  line-height: 1.28;
}

.student-articles ul {
  flex: 1;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.student-articles li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-top: 1px solid #e6f0fa;
}

.student-articles li:first-child {
  border-top: 0;
}

.student-articles time {
  color: var(--blue-700);
  font-size: 16px;
  font-weight: 900;
}

.student-articles li a {
  min-width: 0;
  color: #26344a;
  font-size: 17px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.student-more {
  align-self: flex-start;
  margin-top: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

@media (hover: hover) {
  .student-feature:hover img,
  .student-feature:focus-within img,
  .student-photo-card:hover img,
  .student-photo-card:focus-within img {
    transform: scale(1.06);
    filter: saturate(1.06) contrast(1.03);
  }

  .student-feature--activity:hover,
  .student-feature--activity:focus-within {
    transform: translateY(-4px);
  }

  .student-photo-card--team:hover,
  .student-photo-card--team:focus-within {
    transform: translateY(-4px);
  }

  .student-photo-card--innovation:hover,
  .student-photo-card--innovation:focus-within {
    transform: translateY(-4px);
  }

  .student-photo-card--jobs:hover,
  .student-photo-card--jobs:focus-within {
    transform: translateY(-4px);
  }

  .student-rail button:hover,
  .student-rail button:focus-visible {
    background: #fff;
    border-color: rgba(7, 89, 181, 0.42);
  }

  .student-articles li:hover a,
  .student-articles li:focus-within a {
    color: var(--blue-900);
    text-decoration: underline;
    text-decoration-color: var(--cyan);
    text-underline-offset: 6px;
  }

  .student-photo-card:hover h3 a,
  .student-photo-card:focus-within h3 a {
    text-decoration: underline;
    text-decoration-color: var(--cyan);
    text-underline-offset: 7px;
  }
}

.student-gallery-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.student-gallery-strip figure {
  min-width: 0;
  height: 150px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(204, 226, 246, 0.9);
  border-radius: 6px;
  background: #d9e8f6;
  box-shadow: 0 16px 34px rgba(4, 42, 91, 0.09);
}

.student-gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.student-gallery-strip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 27, 63, 0.02) 34%, rgba(3, 27, 63, 0.64)),
    linear-gradient(90deg, rgba(2, 77, 162, 0.2), transparent);
}

.student-gallery-strip figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

@media (hover: hover) {
  .student-gallery-strip figure:hover img,
  .student-gallery-strip figure:focus-within img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.07);
  }
}

.showcase-head {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: end;
  gap: 70px;
}

.showcase-head span {
  color: var(--blue-700);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.showcase-head h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 50px;
  line-height: 1.05;
}

.showcase-head p {
  margin: 0 0 8px;
  color: #5d6f85;
  font-size: 22px;
  line-height: 1.8;
}

.showcase-board {
  min-height: 0;
  padding: 56px 58px 58px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 11px;
  grid-auto-flow: dense;
  gap: 20px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.9)),
    linear-gradient(116deg, rgba(6, 61, 122, 0.95) 0 18%, transparent 18.2% 100%),
    linear-gradient(136deg, transparent 0 58%, rgba(32, 211, 255, 0.16) 58.2% 100%);
  box-shadow: 0 34px 80px rgba(4, 42, 91, 0.12);
  clip-path: polygon(0 36px, 100% 0, 100% calc(100% - 34px), 0 100%);
  counter-reset: gallery-card;
}

.showcase-board::before {
  content: "STUDENT";
  position: absolute;
  left: 34px;
  bottom: -20px;
  color: rgba(7, 90, 167, 0.055);
  font-size: 150px;
  line-height: 1;
  font-weight: 900;
}

.showcase-board::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    linear-gradient(118deg, transparent 0 42%, rgba(32, 211, 255, 0.13) 42.2% 50%, transparent 50.2% 100%),
    linear-gradient(118deg, transparent 0 61%, rgba(216, 173, 84, 0.14) 61.2% 64%, transparent 64.2% 100%);
  pointer-events: none;
}

.feature-photo,
.photo-tile,
.showcase-note,
.showcase-axis {
  position: relative;
  z-index: 1;
}

.photo-tile,
.showcase-note {
  grid-column: span 3;
  grid-row: span 10;
}

.feature-photo,
.photo-tile {
  min-height: 220px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.92);
  background: #d9e8f6;
  box-shadow:
    0 24px 46px rgba(4, 42, 91, 0.14),
    0 0 0 1px rgba(7, 90, 167, 0.08);
  translate: var(--tile-x, 0) var(--tile-y, 0);
  transition:
    translate 0.36s ease,
    box-shadow 0.36s ease;
}

.feature-photo {
  grid-column: span 5;
  grid-row: span 12;
}

.photo-tile.is-feature {
  grid-column: span 5;
  grid-row: span 12;
}

.photo-tile.is-wide {
  grid-column: span 5;
  grid-row: span 12;
  clip-path: polygon(0 0, 100% 0, calc(100% - 26px) 100%, 0 100%);
}

.photo-tile.is-landscape {
  grid-column: span 4;
  grid-row: span 10;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), 0 100%, 0 20px);
}

.photo-tile.is-square {
  grid-column: span 3;
  grid-row: span 9;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.photo-tile.is-tall {
  grid-column: span 3;
  grid-row: span 13;
  clip-path: polygon(0 0, 100% 18px, 100% 100%, 0 calc(100% - 18px));
}

.photo-tile:nth-child(1) {
  --tile-y: -6px;
}

.photo-tile:nth-child(2) {
  --tile-y: 22px;
}

.photo-tile:nth-child(3) {
  --tile-y: 12px;
}

.photo-tile:nth-child(4) {
  --tile-y: -14px;
}

.feature-photo img,
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.72s ease,
    filter 0.72s ease;
}

.feature-photo::after,
.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(3, 27, 63, 0.78) 100%),
    linear-gradient(90deg, rgba(3, 27, 63, 0.12), transparent 58%);
}

.photo-tile::before {
  counter-increment: gallery-card;
  content: "0" counter(gallery-card);
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(6, 61, 122, 0.76);
  border-left: 3px solid var(--cyan);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.photo-tile:hover {
  --tile-y: -10px;
  box-shadow:
    0 34px 60px rgba(4, 42, 91, 0.2),
    0 0 0 1px rgba(32, 211, 255, 0.18);
}

.photo-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.03);
}

.photo-caption,
.photo-tile div {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  color: #fff;
}

.photo-caption span,
.photo-tile span,
.showcase-note span {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.photo-caption h3 {
  margin: 16px 0 0;
  font-size: 46px;
  line-height: 1.08;
}

.showcase-axis {
  grid-column: 2;
  grid-row: 1 / 4;
  margin: 54px 0 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-900), #0b8eb0);
  box-shadow: 0 20px 44px rgba(5, 55, 112, 0.24);
}

.showcase-axis strong {
  writing-mode: vertical-rl;
  padding-top: 34px;
  font-size: 17px;
  letter-spacing: 0.15em;
}

.showcase-axis span {
  width: 100%;
  padding: 18px 0;
  color: var(--blue-950);
  background: var(--gold);
  text-align: center;
  font-size: 21px;
  font-weight: 900;
}

.tile-lab {
  grid-column: span 4;
  grid-row: span 10;
}

.tile-students {
  grid-column: span 3;
  grid-row: span 9;
}

.tile-building {
  grid-column: span 5;
  grid-row: span 12;
  background:
    linear-gradient(135deg, #d8e8f6, #fff);
}

.tile-building img {
  object-fit: contain;
  object-position: center bottom;
  padding: 34px 18px 0;
  background:
    linear-gradient(180deg, #e7f5ff 0%, #f8fcff 100%);
}

.tile-building::after {
  background: linear-gradient(180deg, transparent 36%, rgba(5, 60, 123, 0.84) 100%);
}

.photo-tile strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.32;
}

.showcase-note {
  grid-column: span 3;
  grid-row: span 12;
  min-height: 180px;
  padding: 34px 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 60, 123, 0.98), rgba(11, 117, 201, 0.9));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
  box-shadow: 0 24px 48px rgba(4, 42, 91, 0.16);
}

.showcase-note::before {
  content: "GROWTH / MOMENTS";
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.showcase-note h3 {
  margin: 14px 0 0;
  font-size: 26px;
  line-height: 1.34;
}

.showcase-note p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 88% 8%, rgba(29, 116, 194, 0.28), transparent 28%),
    linear-gradient(118deg, #061b3a 0%, #092b58 100%);
  scroll-snap-align: start;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(66, 194, 255, 0.12) 48%, transparent 78%);
}

.footer-inner {
  padding: 48px 0 0;
}

/* 页脚三栏：院名 / 联系方式 / 友情链接，版权信息单独一条底栏 */
.footer-top {
  padding-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 36px 56px;
}

.footer-identity strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
}

.footer-identity span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.footer-contact > strong,
.footer-links > strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 19px;
}

.footer-links nav {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer-links a {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 16px;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #06204a;
  background: #e6f6ff;
  border-color: #e6f6ff;
  transform: translateY(-2px);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.footer-contact ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 2px;
  font-size: 17px;
  line-height: 1.6;
}

.footer-contact li span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom {
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== 首页专用底部（对齐首页视觉语言：深蓝 + cyan + 大写英文标签 + 轻装饰） ===== */
.site-footer.home-footer {
  position: relative;
  padding: 0;
  background: linear-gradient(135deg, #012e6a 0%, #024da2 52%, #0758b4 100%);
  color: #d5e6f7;
  scroll-snap-align: start;
}

.home-footer .footer-inner {
  position: relative;
  padding: 24px 0 0;
}

/* 顶部 cyan 装饰线 */
.home-footer-top-bar {
  position: relative;
  height: 2px;
  margin-bottom: 22px;
  border-radius: 2px;
  background: linear-gradient(90deg, #42c2ff 0%, rgba(66, 194, 255, 0.3) 42%, rgba(66, 194, 255, 0.08) 70%, transparent);
}

.home-footer-top-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  transform: translate(-50%, -2.5px);
  box-shadow: 0 0 14px rgba(66, 194, 255, 0.7);
}

/* ===== 学院品牌区 ===== */
.home-footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(178, 212, 248, 0.18);
}

.home-footer-brand__logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.home-footer-brand__text strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.home-footer-brand__text span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(178, 212, 248, 0.55);
}

/* 品牌区右侧分子装饰 */
.home-footer-brand__deco {
  margin-left: auto;
  display: flex;
  gap: 6px;
  align-items: center;
}

.home-footer-brand__deco i {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 0 0 10px rgba(66, 194, 255, 0.4);
}

.home-footer-brand__deco i:nth-child(1) { width: 3px; height: 3px; opacity: 0.35; }
.home-footer-brand__deco i:nth-child(2) { width: 5px; height: 5px; opacity: 0.55; }
.home-footer-brand__deco i:nth-child(3) { width: 6px; height: 6px; opacity: 0.85; }
.home-footer-brand__deco i:nth-child(4) { width: 4px; height: 4px; opacity: 0.45; }

/* ===== 两列信息区 ===== */
.home-footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 48px;
  align-items: center;
  padding-bottom: 20px;
}

/* 右侧信息区：友情链接在上，联系方式在下 */
.home-footer-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 12px;
}

.home-footer-col {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(178, 212, 248, 0.12);
  border-radius: 10px;
}

/* 行内标签 */
.footer-label,
.home-footer-contact__label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* 联系方式 */
.home-footer-contact {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 6px;
  column-gap: 32px;
}

.home-footer-contact > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
}

.home-footer-contact dt {
  flex: 0 0 auto;
  font-weight: 600;
  color: rgba(213, 230, 247, 0.55);
}

.home-footer-contact dd {
  margin: 0;
  color: rgba(213, 230, 247, 0.9);
}

/* 友情链接 */
.home-footer-col--links {
  min-width: 0;
}

.home-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  row-gap: 8px;
  column-gap: 28px;
}

.home-footer-links a {
  position: relative;
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  font-size: 15px;
  color: rgba(213, 230, 247, 0.78);
  line-height: 1.6;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-footer-links a:hover,
.home-footer-links a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

/* 圆形校徽 + 校训一体块（最右侧） */
.home-footer-qr-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  align-self: center;
  flex-wrap: wrap;
}

.home-footer-qr {
  position: relative;
  width: 96px;
  height: 96px;
  padding: 8px;
  /* 使用药学院官方校徽，避免旧占位图显示为棋盘格 */
  background: #024da2 url("/dfiles/2026/images/https:__pharm.ytu.edu.cn_images_logo.png") center / 88% auto no-repeat;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 12, 40, 0.24);
  overflow: hidden;
  flex-shrink: 0;
}

.home-footer-qr img {
  width: 100%;
  height: 100%;
  /* 原始 logo 为横向锁定字标，在圆形徽标位裁取左侧校徽并保持清晰比例 */
  object-fit: cover;
  object-position: left center;
  /* footer 标识统一使用官方药学院 logo */
  content: url("/dfiles/2026/images/https:__pharm.ytu.edu.cn_images_logo.png");
}

.home-footer-qr span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(2, 77, 162, 0.55);
}

/* 校训四字（圆形校徽左右两侧） */
.home-footer-motto {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(190, 230, 246, 0.42);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  font-family: "STKaiti", "KaiTi", "楷体", "Songti SC", "SimSun", serif;
}

.home-footer-motto span {
  display: inline-block;
}

/* 烟台大学｜药学院 胶囊（校徽下方） */
.home-footer-yt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  text-align: center;
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(178, 212, 248, 0.22);
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-basis: 100%;
}

.home-footer-yt:hover,
.home-footer-yt:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(66, 194, 255, 0.6);
}

.home-footer-yt span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
}

/* ===== 版权区 ===== */
.home-footer-bottom {
  padding: 12px 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-footer-bottom__divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(178, 212, 248, 0.28) 50%, transparent 100%);
}

.home-footer-bottom p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(213, 230, 247, 0.48);
  white-space: nowrap;
}

/* ===== 响应式 ===== */
@media (max-width: 1100px) {
  .home-footer-main {
    grid-template-columns: 1fr;
    gap: 24px 32px;
  }

  .home-footer-qr-block {
    justify-self: center;
    width: auto;
  }
}

@media (max-width: 720px) {
  .home-footer .footer-inner {
    padding: 20px 0 0;
  }

  .home-footer-top-bar {
    margin-bottom: 16px;
  }

  .home-footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-footer-qr {
    width: 88px;
    height: 88px;
    padding: 6px;
  }

  .home-footer-bottom {
    padding: 10px 0 14px;
    gap: 10px;
  }

  .home-footer-bottom p {
    font-size: 13px;
  }

  .home-footer-yt span {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }


  .js .reveal-item {
    opacity: 1;
    filter: none;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .js .edit-feature.reveal-item,
  .js .notice-top.reveal-item {
    transform: none;
    clip-path: none;
  }

  .js .edit-feature.is-visible .lead-slide.active img,
  .js .edit-feature.is-visible .ef-cap {
    animation: none;
  }

  .data-loading::after {
    animation: none;
  }
}

/* Student poster accordion */
.student-band .topic-figure.poster-figure {
  height: 610px;
  min-height: 610px;
  flex-basis: 610px;
  margin-top: 28px;
  padding: 30px 28px 28px;
  overflow: hidden;
}

.poster-figure .poster-glow,
.poster-figure .poster-decor,
.poster-figure > .poster-tag,
.poster-figure > .topic-num {
  display: none;
}

.poster-accordion {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 12px;
}

.poster-figure .poster-accordion .poster-slide {
  position: relative;
  inset: auto;
  width: 58px;
  height: 100%;
  min-width: 58px;
  margin: 0;
  padding: 0;
  flex: 0 0 58px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  opacity: 1;
  background: #064b78;
  transform: none;
  box-shadow: none;
  cursor: pointer;
  transition:
    flex 0.65s cubic-bezier(0.22, 0.72, 0.16, 1),
    width 0.65s cubic-bezier(0.22, 0.72, 0.16, 1),
    border-radius 0.45s ease,
    box-shadow 0.45s ease;
}

.poster-figure .poster-accordion .poster-slide.active {
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  border-radius: 18px;
  transform: none;
  box-shadow: 0 24px 52px rgba(0, 19, 45, 0.38);
}

.poster-figure .poster-accordion .poster-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.9) brightness(0.68);
  transition: filter 0.45s ease;
}

.poster-figure .poster-accordion .poster-slide.active img {
  object-fit: contain;
  object-position: center;
  background: rgba(4, 55, 94, 0.48);
  filter: none;
}

.poster-accordion .poster-slide span {
  position: absolute;
  z-index: 2;
  inset: 18px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  writing-mode: vertical-rl;
  color: #fff;
  text-shadow: 0 4px 14px rgba(0, 20, 48, 0.75);
  transition: opacity 0.25s ease;
}

.poster-accordion .poster-slide span::before {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(1, 27, 56, 0.86));
}

.poster-accordion .poster-slide strong {
  font-size: 17px;
  letter-spacing: 0.12em;
}

.poster-accordion .poster-slide i {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.poster-accordion .poster-slide.active span {
  opacity: 0;
  pointer-events: none;
}

.poster-controls {
  position: absolute;
  z-index: 7;
  right: 34px;
  bottom: 42px;
  display: flex;
  gap: 8px;
}

.poster-controls .poster-arrow {
  width: 46px;
  height: 38px;
  background: rgba(2, 35, 70, 0.64);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

@media (max-width: 720px) {
  .student-band .topic-content .story-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .student-band .topic-figure.poster-figure {
    height: 500px;
    min-height: 500px;
    flex-basis: 500px;
    padding: 22px 18px;
  }

  .poster-accordion {
    gap: 7px;
  }

  .poster-figure .poster-accordion .poster-slide {
    width: 36px;
    min-width: 36px;
    flex-basis: 36px;
    border-radius: 16px;
  }

  .poster-accordion .poster-slide strong {
    font-size: 16px;
  }

  .poster-accordion .poster-slide i {
    font-size: 12px;
  }

  .poster-controls {
    right: 28px;
    bottom: 30px;
  }
}

@media (min-width: 1101px) {
  .student-band {
    position: relative;
    margin-top: 72px;
  }

  .student-band .topic-content {
    min-height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    top: -42px;
    right: 22px;
    left: 52%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .student-band .topic-content::before {
    content: none;
  }

  .student-band .topic-content .story-points {
    padding: 0;
    gap: 10px;
  }

  .student-band .topic-content .story-points a {
    min-height: 48px;
    padding: 0 10px;
    border: 1px solid rgba(7, 89, 181, 0.14);
    border-radius: 9px;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.82);
  }

  .student-band .topic-content .story-points a:hover,
  .student-band .topic-content .story-points a:focus-visible {
    color: #fff;
    border-color: #087f98;
    background: #087f98;
    transform: translateY(-2px);
  }

  .student-band .topic-content .story-points a:hover,
  .student-band .topic-content .story-points a:focus-visible {
    color: #fff;
    border-color: #087f98;
    background: #087f98;
    transform: translateY(-2px);
  }

  .cooperation-band .story-list li {
    min-height: 58px;
  }

  .cooperation-band .story-list time {
    font-size: 16px;
  }

  .cooperation-band .story-list a,
  .cooperation-band .story-more span {
    font-size: 17px;
    line-height: 1.55;
  }

  .poster-event-feature h4 {
    font-size: 22px;
  }

  .poster-event-feature p,
  .poster-event-row strong {
    font-size: 18px;
  }

  .poster-event-row time {
    font-size: 16px;
  }
}

@media (min-width: 1101px) {
  .student-band {
    margin-top: 72px;
  }

  .cooperation-band .story-list li {
    min-height: 58px;
  }

  .cooperation-band .story-list time {
    font-size: 16px;
  }

  .cooperation-band .story-list a,
  .cooperation-band .story-more span {
    font-size: 17px;
    line-height: 1.55;
  }

  .poster-event-feature h4 {
    font-size: 22px;
  }

  .poster-event-feature p {
    font-size: 18px;
  }

  .poster-event-row strong {
    font-size: 18px;
    line-height: 1.55;
  }

  .poster-event-row time {
    font-size: 16px;
  }

  .student-band .topic-content .story-points a {
    font-size: 17px;
  }
}

@media (min-width: 1101px) {
  .cooperation-band .story-list li:nth-child(n + 5) {
   
  }
}

.education-photo-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.education-photo-strip figure {
  height: 176px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--blue-900);
  box-shadow: 0 16px 34px rgba(4, 42, 91, 0.12);
}

.education-photo-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.education-photo-strip figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(1, 31, 68, 0.76));
}

.education-photo-strip figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.education-photo-strip figure:hover img {
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .education-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-photo-strip figure {
    height: 130px;
  }
}

@media (max-width: 480px) {
  .student-band .topic-figure.poster-figure {
    height: 430px;
    min-height: 430px;
    flex-basis: 430px;
    padding: 18px 14px;
  }

  .poster-figure .poster-accordion .poster-slide {
    width: 30px;
    min-width: 30px;
    flex-basis: 30px;
  }

  .poster-accordion .poster-slide span {
    inset: 12px 0;
    gap: 8px;
  }

  .poster-accordion .poster-slide strong {
    font-size: 14px;
  }

  .poster-accordion .poster-slide i {
    font-size: 11px;
  }
}

@media (max-width: 1600px) {
  .container {
    max-width: calc(100vw - 80px);
  }

  .header-inner {
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 30px;
  }

  .brand {
    width: 430px;
  }

  .brand img {
    max-height: 70px;
  }

  .brand strong {
    font-size: 26px;
  }

  .main-nav {
    min-width: 0;
    gap: 7px;
  }

  .main-nav > a,
  .main-nav .nav-link {
    padding: 0 10px;
    font-size: 17px;
  }
}

@media (max-width: 1360px) {
  .container {
    max-width: calc(100vw - 72px);
  }

  .header-inner {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
  }

  .brand {
    width: 360px;
  }

  .brand img {
    max-height: 60px;
  }

  .brand strong {
    font-size: 24px;
  }

  .main-nav {
    gap: 5px;
  }

  .main-nav > a,
  .main-nav .nav-link {
    padding: 0 8px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .summary {
    width: 540px;
    font-size: 22px;
  }

  .edit-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .education-inner {
    grid-template-columns: minmax(0, 1.24fr) minmax(288px, 0.82fr);
    gap: 28px;
  }

  .topic-band,
  .topic-band--reverse {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 26px;
    padding: 22px 24px;
  }

  .topic-band--reverse {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .poster-spotlight {
    padding: 30px 26px 26px 40px;
  }
}

@media (max-width: 1100px) {
  .js .edit-feature.reveal-item,
  .js .notice-top.reveal-item {
    transform: translateY(26px);
    clip-path: inset(0 0 0 0);
  }

  .js .edit-feature.reveal-item.is-visible,
  .js .notice-top.reveal-item.is-visible {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }

  .container {
    max-width: calc(100vw - 48px);
  }

  .news-section .section-head {
    min-height: 0;
  }

  .pharma-accent {
    display: none;
  }

  .site-header,
  .header-inner {
    height: auto;
  }

  .site-header.is-scrolled,
  .site-header.is-scrolled .header-inner {
    height: auto;
  }

  .header-inner {
    padding: 14px 0 12px;
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-areas:
      "brand toggle"
      "nav nav";
    align-items: center;
    gap: 10px;
  }

  .brand {
    grid-area: brand;
    width: min(360px, 100%);
  }

  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    grid-area: toggle;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    justify-self: end;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand img {
    max-height: 58px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand em {
    margin-top: 6px;
  }

  .main-nav {
    width: 100%;
    max-height: min(70vh, 620px);
    height: auto;
    grid-area: nav;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 6px;
    padding: 10px;
    background: rgba(2, 77, 162, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(1, 18, 43, 0.28);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-open .main-nav {
    display: flex;
  }

  .nav-item.is-subnav-open .nav-dropdown {
    display: grid;
  }

  .nav-item,
  .site-header.is-scrolled .nav-item {
    height: auto;
    display: block;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav > a,
  .main-nav .nav-link {
    width: 100%;
    height: 38px;
    padding: 0 14px;
    justify-content: flex-start;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
  }

  .nav-item.has-dropdown > .nav-link::after {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    color: rgba(255, 255, 255, 0.72);
    transition: transform 0.2s ease;
  }

  .nav-item.has-dropdown.is-subnav-open > .nav-link::after {
    transform: rotate(135deg);
  }

  .site-header.is-scrolled .main-nav > a,
  .site-header.is-scrolled .main-nav .nav-link {
    height: 38px;
  }

  .nav-dropdown {
    width: auto;
    min-height: 0;
    margin: 6px 0 4px;
    padding: 0 0 0 10px;
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    display: none;
  }

  .nav-item.is-subnav-open:hover .nav-dropdown,
  .nav-item.is-subnav-open:focus-within .nav-dropdown,
  .nav-item.is-subnav-open .nav-dropdown {
    display: grid;
  }

  .nav-open .nav-item.has-dropdown:not(.is-subnav-open) .nav-dropdown {
    display: none !important;
  }

  .nav-open .nav-item.has-dropdown.is-subnav-open .nav-dropdown {
    display: grid !important;
  }

  .mega-content {
    display: contents;
  }

  .mega-copy,
  .mega-visual,
  .nav-dropdown::after,
  .nav-dropdown:not(:has(.mega-content))::after {
    content: none;
    display: none;
  }

  .mega-groups {
    display: contents;
  }

  .mega-groups--education > .mega-direct {
    width: auto;
  }

  .mega-group {
    display: grid;
    gap: 6px;
  }

  .mega-groups--education .mega-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .mega-group strong {
    min-height: 34px;
    padding: 0 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 0;
    border-radius: 6px;
    font-size: 15px;
  }

  .mega-groups--education .mega-group a {
    min-height: 32px;
    padding: 0 8px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    border-radius: 999px;
    font-size: 14px;
  }

  .mega-groups .mega-group:has(a) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .mega-groups .mega-group:has(a) a {
    min-height: 32px;
    padding: 0 8px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    border-radius: 999px;
    font-size: 14px;
  }

  .mega-groups .mega-group:has(a) a::after {
    content: none;
  }

  .nav-dropdown:not(:has(.mega-content)) {
    grid-template-columns: 1fr;
    min-height: 0;
    align-items: start;
  }

  .mega-direct,
  .mega-group a,
  .nav-dropdown:not(:has(.mega-content)) > a {
    min-height: 34px;
    padding: 0 12px;
    justify-content: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
  }

  .mega-direct::after,
  .mega-group a::after,
  .nav-dropdown:not(:has(.mega-content)) > a::after {
    content: none;
  }

  .nav-item.has-dropdown .nav-link {
    padding-right: 15px;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding-top: 142px;
  }

  .hero::before,
  .hero-orbit,
  .molecule {
    display: none;
  }


  .hero-inner {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    max-width: 680px;
    padding: 42px 0 28px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .summary {
    width: auto;
    max-width: 620px;
    font-size: 20px;
  }

  .hero-metrics {
    max-width: none;
  }

  .hero-stage {
    min-height: 118px;
  }

  .stage-card {
    display: none;
  }

  .hero-pager {
    right: 0;
    bottom: 34px;
  }


  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px 40px;
  }

  .footer-links {
    grid-column: 1 / -1;
  }

  .news-section,
  .research-section,
  .education-section {
    padding: 82px 0;
  }

  .education-logo-mark {
    width: 170px;
    top: -12px;
    right: 72px;
    opacity: 0.13;
  }

  .section-head span {
    font-size: 52px;
  }

  .section-head h2 {
    font-size: 38px;
  }

  .news-editorial,
  .research-content,
  .education-inner {
    grid-template-columns: 1fr;
  }

  .poster-spotlight {
    padding: 32px 30px 28px;
  }

  .poster-stage {
    height: 420px;
  }

  .poster-slide {
    height: 400px;
  }

  .poster-glow {
    height: 388px;
  }

  .spotlight-side {
    display: none;
  }

  .edit-notice {
    margin-top: 0;
  }

  .research-content {
    grid-template-rows: none;
  }

  .main-platform,
  .research-metrics,
  .platform-list {
    grid-column: auto;
    grid-row: auto;
  }

  .research-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .edit-feature .lead-slide img {
    height: 100%;
  }

  .platform-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .showcase-board {
    min-height: 0;
    padding: 24px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 11px;
    gap: 16px;
  }

  .showcase-axis {
    display: none;
  }

  .photo-tile,
  .photo-tile.is-landscape,
  .photo-tile.is-square,
  .photo-tile.is-tall {
    grid-column: span 3;
    grid-row: span 13;
  }

  .feature-photo,
  .photo-tile.is-feature,
  .photo-tile.is-wide {
    grid-column: span 6;
    grid-row: span 12;
  }

  .tile-building {
    grid-column: span 3;
    grid-row: span 11;
  }

  .showcase-note {
    grid-column: span 6;
    grid-row: span 9;
  }

  .student-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
  }

  .student-feature--activity {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 290px;
    clip-path: none;
    transform: none;
  }

  .student-rail {
    grid-column: 1 / -1;
    grid-row: auto;
    width: auto;
    justify-self: stretch;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-content: stretch;
    transform: none;
  }

  .student-rail button {
    min-height: 48px;
    writing-mode: horizontal-tb;
  }

  .student-feature--team,
  .student-photo-card--team,
  .student-photo-card--innovation,
  .student-photo-card--jobs,
  .student-articles--innovation,
  .student-articles--jobs {
    grid-column: span 1;
    grid-row: auto;
  }

  .student-feature--team,
  .student-photo-card {
    min-height: 235px;
    clip-path: none;
    transform: none;
  }

  .student-photo-card--team > div {
    padding-left: 32px;
  }

  .student-feature h3,
  .student-photo-card h3 {
    font-size: 27px;
  }

  .student-gallery-strip {
    margin-top: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .student-gallery-strip figure {
    height: 140px;
  }
}

@media (max-width: 680px) {
  .campus-section {
    scroll-margin-top: 136px;
  }

  .container {
    max-width: calc(100vw - 32px);
  }

  .site-header {
    position: fixed;
  }

  .header-inner {
    padding: 10px 0 12px;
    gap: 10px 12px;
  }

  .brand {
    width: min(300px, 100%);
  }

  .brand img {
    max-height: 49px;
  }

  .site-header.is-scrolled .brand img {
    max-height: 49px;
  }

  .brand strong {
    font-size: 22px;
  }

  .main-nav {
    width: 100%;
    max-height: min(72vh, 560px);
    height: auto;
    min-width: 0;
    gap: 6px;
  }

  .nav-item,
  .site-header.is-scrolled .nav-item {
    height: auto;
  }

  .main-nav > a,
  .main-nav .nav-link {
    height: 38px;
    padding: 0 14px;
    font-size: 16px;
  }

  .site-header.is-scrolled .main-nav > a,
  .site-header.is-scrolled .main-nav .nav-link {
    height: 38px;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-slide {
    background-position: center top;
  }

  .hero-copy {
    padding: 30px 0 20px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.16;
  }

  .summary {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .ghost-btn {
    min-width: 0;
    width: 100%;
    flex: none;
    height: 46px;
    padding: 0 18px;
    font-size: 17px;
  }

  .hero-metrics {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-metrics div {
    min-height: 78px;
    padding: 16px 18px;
  }

  .hero-metrics strong {
    font-size: 24px;
  }

  .hero-metrics span {
    margin-top: 10px;
    font-size: 14px;
  }

  .hero-stage {
    min-height: 88px;
  }

  .hero-pager {
    right: auto;
    left: 0;
    bottom: 22px;
  }

  .hero-pager::before,
  .hero-pager::after {
    width: 34px;
  }

  .hero-pager button {
    width: 38px;
    height: 42px;
    font-size: 24px;
  }

  .hero-pager button.active {
    width: 48px;
    font-size: 36px;
  }


  .news-section,
  .research-section,
  .education-section {
    padding: 58px 0;
  }

  .education-logo-mark {
    width: 126px;
    top: -8px;
    right: 18px;
    opacity: 0.1;
  }

  .campus-section {
    padding-bottom: 64px;
  }

  .showcase-inner {
    padding-top: 92px;
  }

  .section-head {
    margin-bottom: 26px;
    align-items: flex-start;
    gap: 16px;
  }

  .section-head span {
    font-size: 36px;
  }

  .section-head h2 {
    margin-top: -3px;
    font-size: 32px;
  }

  .section-head > a {
    min-width: 92px;
    height: 36px;
    padding: 0 14px;
    font-size: 15px;
  }

  .dual-col {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .dual-head {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }

  .dual-head > div {
    display: block;
  }

  .dual-title {
    min-height: 50px;
    padding-left: 50px;
  }

  .dual-icon {
    width: 34px;
    height: 34px;
    top: 10px;
  }

  .dual-head .dual-title > span:not(.dual-icon) {
    font-size: 32px;
  }

  .dual-head h2 {
    font-size: 26px;
  }

  .dual-head em {
    font-size: 12px;
  }

  .dual-head > a {
    height: 36px;
    padding: 0 14px;
    font-size: 15px;
    margin-left: auto;
  }

  .dual-news,
  .news-layout,
  .lead-news,
  .lead-slide,
  .notice-board,
  .notice-feature {
    width: 100%;
    max-width: 100%;
  }

  .lead-copy {
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
  }

  .lead-news {
    height: auto;
  }

  .lead-slide img {
    height: 278px;
  }

  .lead-copy {
    margin: -46px 18px 0;
    padding: 20px 88px 20px 22px;
    min-height: 96px;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
  }

  .lead-copy time span {
    font-size: 14px;
  }

  .lead-copy time strong {
    font-size: 24px;
  }

  .lead-copy h3 {
    margin-top: 0;
    font-size: 22px;
    line-height: 1.42;
  }

  .lead-copy p {
    display: none;
  }

  .lead-pager {
    top: auto;
    right: 16px;
    bottom: 10px;
  }

  .news-stack article {
    min-height: 82px;
    padding: 14px 16px;
    grid-template-columns: 78px 1fr;
    gap: 12px;
  }

  .news-stack {
    grid-template-columns: 1fr;
  }

  .news-stack time {
    width: 72px;
    align-items: center;
  }

  .news-stack time strong,
  .notice-board time strong {
    width: 72px;
    height: 36px;
    font-size: 17px;
  }

  .news-stack h3 {
    font-size: 18px;
  }

  .notice-board {
    padding: 0;
  }

  .notice-title span {
    font-size: 36px;
  }

  .notice-title strong {
    font-size: 32px;
  }

  .notice-board ul {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding: 0;
  }

  .notice-board li {
    min-height: 0;
    padding: 12px 14px;
  }

  .notice-feature {
    min-height: 120px;
    margin-bottom: 14px;
  }

  .notice-feature-copy {
    padding: 0;
  }

  .notice-board time span {
    font-size: 13px;
  }

  .notice-board a {
    font-size: 17px;
  }

  .platform-carousel {
    height: auto;
    aspect-ratio: 600 / 207;
    min-height: 178px;
  }

  .platform-slide img {
    object-fit: contain;
    padding: 12px;
  }

  .platform-pager {
    gap: 10px;
    margin-top: 18px;
    overflow-x: auto;
  }

  .platform-pager button {
    flex: 0 0 auto;
    width: 76px;
    height: 48px;
  }

  .platform-copy {
    padding: 24px 22px 28px;
  }

  .research-metrics {
    grid-template-columns: 1fr;
  }

  .research-metrics div {
    padding: 18px 20px;
  }

  .research-metrics strong {
    font-size: 26px;
  }

  .main-platform h3 {
    font-size: 27px;
  }

  .main-platform p {
    font-size: 17px;
  }

  .platform-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .platform-list article {
    min-height: 92px;
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .platform-list h3 {
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 19px;
  }

  .platform-list p {
    margin-top: 14px;
    padding-top: 12px;
  }

  .topic-band,
  .topic-band--reverse {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .topic-band--reverse .topic-figure {
    order: 0;
  }

  .topic-band::before,
  .topic-band--reverse::before {
    left: 0;
    right: auto;
  }

  .topic-figure {
    min-height: 200px;
  }

  .topic-num {
    font-size: 54px;
  }

  .topic-content {
    padding: 22px 22px 24px;
  }

  .topic-content h3 {
    font-size: 23px;
  }

  .poster-spotlight {
    padding: 26px 22px 24px;
  }

  .poster-stage {
    min-height: 0;
    height: auto;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 0.6;
    margin: 0 auto;
  }

  .poster-slide {
    height: 96%;
    max-height: none;
  }

  .poster-glow {
    height: 92%;
    max-height: none;
  }

  .poster-dots {
    margin-top: 18px;
  }

  .story-articles {
    padding-top: 20px;
  }

  .story-more {
    grid-template-columns: 104px 1fr;
    gap: 12px;
  }

  .story-more strong {
    min-width: 0;
    height: 46px;
    padding: 0 8px;
    font-size: 15px;
  }

  .story-more span,
  .story-list a {
    font-size: 17px;
  }

  .story-list li {
    grid-template-columns: 92px 1fr;
    gap: 12px;
  }

  .story-list time {
    font-size: 15px;
    white-space: nowrap;
  }

  .showcase-board {
    padding: 16px;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .photo-tile,
  .feature-photo,
  .photo-tile.is-feature,
  .photo-tile.is-wide,
  .photo-tile.is-landscape,
  .photo-tile.is-square,
  .photo-tile.is-tall,
  .tile-lab,
  .tile-students,
  .tile-building {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .photo-tile.is-wide,
  .photo-tile.is-landscape,
  .tile-lab {
    aspect-ratio: 16 / 9;
  }

  .photo-tile.is-tall {
    aspect-ratio: 4 / 5;
  }

  .tile-building {
    aspect-ratio: 16 / 10;
  }

  .showcase-note {
    grid-column: 1;
    grid-row: auto;
    padding: 24px;
  }

  .student-board {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .student-rail,
  .student-feature--team,
  .student-photo-card--team,
  .student-photo-card--innovation,
  .student-photo-card--jobs,
  .student-feature--activity,
  .student-articles--innovation,
  .student-articles--jobs {
    grid-column: 1;
    grid-row: auto;
  }

  .student-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
    width: auto;
    justify-self: stretch;
    transform: none;
  }

  .student-rail button {
    min-height: 44px;
    writing-mode: horizontal-tb;
  }

  .student-feature,
  .student-photo-card {
    min-height: 0;
    aspect-ratio: 4 / 3;
    clip-path: none;
    transform: none;
  }

  .student-slide > div,
  .student-photo-card > div {
    padding: 24px;
  }

  .student-feature h3,
  .student-photo-card h3 {
    font-size: 24px;
  }

  .student-feature p {
    font-size: 16px;
  }

  .student-articles {
    min-height: 0;
    padding: 24px;
  }

  .student-card-head h3 {
    font-size: 24px;
  }

  .student-articles li {
    grid-template-columns: 54px 1fr;
    gap: 12px;
  }

  .student-articles li a {
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .student-gallery-strip {
    margin-top: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .student-gallery-strip figure {
    height: 126px;
  }

  .student-gallery-strip figcaption {
    left: 12px;
    bottom: 10px;
    font-size: 15px;
  }

  .showcase-board::before {
    font-size: 76px;
    left: 16px;
    bottom: -8px;
  }

  .photo-caption,
  .photo-tile div {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .photo-caption h3 {
    font-size: 36px;
  }

  .photo-tile strong,
  .showcase-note h3 {
    font-size: 23px;
  }

  .footer-inner {
    padding: 34px 0 0;
  }

  .footer-top {
    padding-bottom: 26px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-identity strong {
    font-size: 24px;
  }

  .footer-contact > strong,
  .footer-links > strong {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .footer-links a {
    padding: 0 13px;
  }

  .footer-bottom {
    padding: 18px 0 22px;
  }

  .footer-bottom p {
    font-size: 15px;
  }

  .edit-feature {
    min-height: 500px;
  }

  .edit-feature .lead-slide img {
    height: 310px;
  }

  .edit-feature .lead-slide::before {
    content: none;
  }

  .ef-cap {
    left: 18px;
    right: 18px;
    top: 260px;
    bottom: auto;
    min-height: 210px;
    padding: 28px 24px 28px 34px;
  }

  .ef-cap h3 {
    max-width: none;
    font-size: 22px;
    line-height: 1.42;
  }

  .ef-cap p {
    max-width: none;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.68;
  }

  .edit-feature .lead-pager {
    right: 42px;
    bottom: 188px;
    gap: 10px;
  }

  .edit-feature .lead-pager .lead-arrow {
    width: 46px;
    height: 32px;
    font-size: 17px;
  }
}

@media (max-width: 360px) {
  .brand {
    width: min(260px, 100%);
  }

  .brand img {
    max-height: 42px;
  }

  .brand strong {
    font-size: 21px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 74px;
  }

  .lead-news {
    height: auto;
  }

  .lead-copy h3 {
    font-size: 22px;
  }
}

@media (max-width: 1280px) {
  .research-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .research-showcase-main {
    min-height: 0;
    padding: 0 24px 22px;
  }

  .research-showcase-main figure {
    height: 220px;
  }

  .research-column-head h3 {
    font-size: 30px;
  }

  .research-side-feature {
    padding: 20px 24px;
  }

  .research-side-feature > div {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
  }

  .research-side-feature img {
    width: 140px;
  }

  .research-side-list {
    padding: 12px 24px;
  }

  .research-side-list a {
    font-size: 19px;
  }

  .research-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .research-feature figure {
    height: 240px;
  }

  .discipline-strip {
    grid-template-rows: repeat(2, 98px);
  }
}

@media (max-width: 900px) {
  .research-showcase {
    padding-top: 0;
    grid-template-columns: 1fr;
  }

  .research-column-head {
    min-height: 0;
    margin-bottom: 18px;
  }

  .research-column-head--talent {
    flex-wrap: wrap;
    align-items: center;
  }

  .research-talent-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .research-showcase-main {
    min-height: 0;
    padding: 24px 24px 34px;
  }

  .research-showcase-main figure {
    width: 100%;
    height: auto;
    aspect-ratio: 880 / 525;
    margin: 0;
    border-radius: 16px;
  }

  .research-showcase-copy {
    margin-top: 30px;
  }

  .research-showcase-side {
    grid-template-rows: auto auto;
  }

  .research-lists {
    grid-template-columns: 1fr;
  }

  .research-focus {
    grid-template-columns: 1fr;
  }

  .discipline-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .discipline-head p {
    max-width: none;
    text-align: left;
  }

  .discipline-strip {
    --discipline-gap: 12px;
    grid-template-rows: repeat(2, 112px);
    grid-auto-columns: calc((100% - var(--discipline-gap)) / 2);
  }

  .discipline-card {
    scroll-snap-align: start;
  }

  .discipline-arrow--prev {
    left: -26px;
  }

  .discipline-arrow--next {
    right: -26px;
  }
}

@media (max-width: 680px) {
  .research-showcase-main {
    padding: 18px 18px 26px;
  }

  .research-column-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .research-column-head h3 {
    font-size: 26px;
  }

  .research-showcase-copy h3 {
    font-size: 26px;
  }

  .research-showcase-copy p {
    font-size: 17px;
  }

  .research-showcase-controls {
    margin-top: 30px;
    justify-content: flex-start;
    gap: 14px;
  }

  .research-showcase-controls .research-arrow {
    width: 52px;
    height: 40px;
    font-size: 24px;
  }

  .research-side-feature {
    padding: 22px;
  }

  .research-side-feature > div {
    grid-template-columns: 1fr;
  }

  .research-side-feature img {
    width: 150px;
  }

  .research-side-feature h3 {
    font-size: 22px;
  }

  .research-side-feature time strong {
    font-size: 34px;
  }

  .research-side-list {
    padding: 12px 22px;
  }

  .research-side-list li {
    min-height: 0;
    padding: 20px 0;
  }

  .research-side-list a {
    font-size: 19px;
  }

  .research-article-panel {
    padding: 24px 20px 26px;
  }

  .research-article-panel header h3 {
    font-size: 28px;
  }

  .research-lead-article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .research-lead-article time {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .research-lead-article h4 {
    font-size: 22px;
  }

  .research-article-list li {
    min-height: 70px;
    grid-template-columns: 1fr;
    gap: 6px;
    align-content: center;
    padding: 12px 0;
  }

  .research-article-list a {
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 18px;
  }

  .research-article-panel--talent {
    padding: 24px 20px 26px;
  }

  .research-article-panel--talent .research-article-list::before,
  .research-article-panel--talent .research-article-list li::before {
    content: none;
  }

  .research-article-panel--talent .research-article-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .research-feature-copy {
    padding: 24px 20px 26px;
  }

  .research-feature-copy h3 {
    font-size: 26px;
  }

  .research-feature-copy p {
    font-size: 17px;
  }

  .research-feature-copy ul {
    grid-template-columns: 1fr;
    padding-top: 22px;
  }

  .research-feature-copy li {
    min-height: 70px;
  }

  .research-feature figure {
    height: 210px;
  }

  .discipline-head h3 {
    font-size: 28px;
  }

  .discipline-card {
    flex-basis: 176px;
  }

  .discipline-card span {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 16px;
  }
}

/* ========================================================================== */
/* Cooperation + student portals                                             */
/* ========================================================================== */

.education-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 106px;
  background:
    radial-gradient(circle at 9% 8%, rgba(32, 211, 255, 0.1), transparent 25%),
    radial-gradient(circle at 92% 92%, rgba(11, 95, 171, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.education-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(14, 102, 183, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 102, 183, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 38%, transparent 62%, #000);
  mask-image: linear-gradient(90deg, #000, transparent 38%, transparent 62%, #000);
  pointer-events: none;
}

.education-logo-mark {
  top: 22px;
  right: -24px;
  width: clamp(220px, 20vw, 330px);
  opacity: 0.07;
}

.education-head {
  margin-bottom: 32px;
  align-items: center;
}

.education-head span {
  margin-bottom: 12px;
  color: #0b69b7;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.education-head h2 {
  margin: 0;
  font-size: clamp(36px, 3.1vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.education-head > a {
  min-width: 118px;
  height: 42px;
  padding: 0 20px;
  border-color: #c8ddf2;
  color: #0b5fab;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(5, 59, 116, 0.06);
}

.education-inner {
  display: block;
}

.topic-stream {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.topic-band,
.topic-band--reverse {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(167, 197, 226, 0.62);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 24px 54px rgba(4, 42, 91, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.topic-band::before,
.topic-band--reverse::before {
  z-index: 5;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: auto;
  height: 4px;
  background: linear-gradient(90deg, #0b5fab 0%, #20d3ff 72%, transparent 100%);
}

.student-band::before {
  background: linear-gradient(90deg, #0879ad 0%, #16c6c5 72%, transparent 100%);
}

.topic-band--reverse .topic-figure {
  order: 0;
}

.topic-figure {
  position: relative;
  width: 100%;
  height: 326px;
  min-height: 326px;
  flex: 0 0 326px;
  align-self: auto;
  overflow: hidden;
  border-radius: 0;
  background: #062f62;
}

.topic-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-figure::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 24, 54, 0.02) 38%, rgba(2, 24, 54, 0.7) 100%),
    linear-gradient(90deg, rgba(2, 24, 54, 0.18), transparent 48%);
}

.cooperation-band .topic-figure::before {
  content: "COOPERATION  /  OPEN NETWORK";
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 26px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #fff;
  background: rgba(3, 39, 81, 0.3);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.topic-num {
  z-index: 4;
  bottom: 18px;
  left: 26px;
  font-size: 56px;
  color: #fff;
  text-shadow: 0 12px 28px rgba(1, 20, 48, 0.46);
}

.topic-content {
  min-width: 0;
  flex: 1;
  padding: 30px 32px 28px;
}

.topic-kicker {
  align-items: center;
}

.topic-kicker em {
  padding-left: 26px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.topic-kicker em::before {
  width: 18px;
}

.topic-kicker i {
  font-size: 12px;
  letter-spacing: 0.18em;
}

.topic-content h3 {
  margin-top: 14px;
  font-size: clamp(26px, 2vw, 31px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.topic-content p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.78;
}

.story-points {
  margin-top: 20px;
  gap: 8px;
}

.story-points a {
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid #d8eafa;
  border-radius: 999px;
  background: #f2f8ff;
  font-size: 15px;
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.student-band .story-points a {
  border-color: #cfecee;
  background: #effafb;
}

.story-articles {
  margin-top: 24px;
  padding-top: 0;
  border-top: 1px solid #dfeaf5;
}

.story-more {
  min-height: 70px;
  padding: 12px 0;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  border-top: 0;
  border-bottom-color: #e8f0f8;
}

.story-more strong {
  min-width: 0;
  height: auto;
  padding: 0 15px 0 0;
  justify-content: flex-start;
  border-right: 1px solid #dce8f4;
  color: #0b66b5;
  background: transparent;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.story-more span {
  color: #243650;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.story-list li {
  min-height: 54px;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  border-bottom-color: #edf3f8;
}

.story-list time {
  color: #6f87a2;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.story-list a {
  color: #40536b;
  font-size: 16px;
}

.student-band .story-more strong,
.student-band .story-list time {
  color: #087f98;
  background: transparent;
}

.poster-figure {
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 45%, rgba(38, 224, 236, 0.28), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(16, 166, 190, 0.52), transparent 38%),
    linear-gradient(135deg, #04346a 0%, #075b97 58%, #087f98 100%);
}

.poster-figure::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 30, 66, 0.48) 0%, rgba(2, 30, 66, 0.08) 52%, rgba(2, 30, 66, 0.18) 100%),
    linear-gradient(180deg, transparent 58%, rgba(2, 23, 52, 0.42) 100%);
  pointer-events: none;
}

.poster-figure .poster-glow {
  z-index: 0;
  inset: 24px auto auto 69%;
  width: 264px;
  height: 264px;
  max-height: none;
  margin: 0;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(76, 233, 239, 0.44);
  filter: blur(48px);
  animation: none;
}

.poster-decor {
  position: absolute;
  z-index: 0;
  top: 82px;
  left: 40px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(255, 255, 255, 0.035),
    0 0 0 44px rgba(255, 255, 255, 0.025);
}

.poster-decor::before,
.poster-decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #44e0e8;
  box-shadow: 0 0 20px rgba(68, 224, 232, 0.7);
}

.poster-decor::before {
  top: -4px;
  left: 52px;
  width: 8px;
  height: 8px;
}

.poster-decor::after {
  right: 5px;
  bottom: 10px;
  width: 5px;
  height: 5px;
}

.poster-figure .poster-slide {
  z-index: 2;
  inset: 13px auto auto 69%;
  width: auto;
  height: 300px;
  max-height: none;
  margin: 0;
  aspect-ratio: auto;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-50%) rotate(2.5deg) scale(0.94);
  transform-origin: center;
  box-shadow:
    0 22px 46px rgba(0, 19, 45, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.poster-figure .poster-slide.active {
  opacity: 1;
  transform: translateX(-50%) rotate(-2deg) scale(1);
}

.poster-figure .poster-slide img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.poster-tag {
  position: absolute;
  z-index: 4;
  top: 26px;
  left: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.poster-tag::after {
  content: "YOUTH FORUM";
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.poster-figure .poster-dots {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 22px;
  margin: 0;
  gap: 7px;
}

.poster-figure .poster-dot {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.46);
}

.poster-figure .poster-dot.active {
  width: 22px;
  background: #fff;
}

@media (hover: hover) {
  .education-head > a:hover,
  .education-head > a:focus-visible {
    border-color: #0b5fab;
    color: #fff;
    background: #0b5fab;
    transform: translateY(-2px);
  }

  .topic-band:hover {
    transform: translateY(-6px);
    box-shadow:
      0 34px 70px rgba(4, 42, 91, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .story-points a:hover,
  .story-points a:focus-visible {
    border-color: #8fc6ed;
    color: #fff;
    background: #0b6fbd;
    transform: translateY(-2px);
  }

  .student-band .story-points a:hover,
  .student-band .story-points a:focus-visible {
    border-color: #0a91a4;
    background: #0a91a4;
  }
}

@media (max-width: 960px) {
  .topic-stream {
    grid-template-columns: 1fr;
  }

  .topic-band,
  .topic-band--reverse {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  }

  .topic-figure {
    height: auto;
    min-height: 100%;
    flex-basis: auto;
  }

  .topic-content {
    padding: 28px;
  }

  .poster-figure .poster-slide {
    top: 50%;
    left: 60%;
    height: min(310px, calc(100% - 28px));
    transform: translate(-50%, -50%) rotate(2.5deg) scale(0.94);
  }

  .poster-figure .poster-slide.active {
    transform: translate(-50%, -50%) rotate(-2deg) scale(1);
  }

  .poster-figure .poster-glow {
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 720px) {
  .education-section {
    padding: 60px 0 66px;
  }

  .education-logo-mark {
    top: 28px;
    right: -48px;
    width: 180px;
  }

  .education-head {
    margin-bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .education-head span {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .education-head h2 {
    font-size: 32px;
  }

  .education-head > a {
    min-width: 92px;
    height: 36px;
    padding: 0 14px;
    font-size: 15px;
  }

  .topic-stream {
    gap: 18px;
  }

  .topic-band,
  .topic-band--reverse {
    display: flex;
    grid-template-columns: none;
    border-radius: 15px;
  }

  .topic-figure {
    height: 252px;
    min-height: 252px;
    flex: 0 0 252px;
  }

  .topic-content {
    padding: 24px 22px 22px;
  }

  .topic-content h3 {
    margin-top: 12px;
    font-size: 24px;
  }

  .topic-content p {
    font-size: 15px;
  }

  .poster-figure .poster-slide {
    top: 12px;
    left: 70%;
    height: 228px;
    transform: translateX(-50%) rotate(2.5deg) scale(0.94);
  }

  .poster-figure .poster-slide.active {
    transform: translateX(-50%) rotate(-2deg) scale(1);
  }

  .poster-figure .poster-glow {
    top: 16px;
    left: 70%;
    width: 208px;
    height: 208px;
    transform: translateX(-50%);
  }

  .poster-decor {
    top: 78px;
    left: 25px;
    width: 78px;
    height: 78px;
  }

  .poster-tag {
    top: 24px;
    left: 22px;
    max-width: 90px;
    line-height: 1.5;
  }

  .topic-num {
    bottom: 14px;
    left: 22px;
    font-size: 48px;
  }

  .poster-figure .poster-dots {
    right: 18px;
    bottom: 16px;
  }

  .story-more,
  .story-list li {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .story-more strong,
  .story-list time {
    font-size: 13px;
  }

  .story-more span,
  .story-list a {
    font-size: 15px;
  }
}

/* Module 4: article-led cooperation + image-led student portal */
.topic-stream {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.cooperation-band .topic-figure {
  height: 218px;
  min-height: 218px;
  flex-basis: 218px;
}

.cooperation-band .topic-content {
  padding-top: 28px;
}

.cooperation-band .story-articles {
  margin-top: 22px;
}

.cooperation-band .story-list li {
  min-height: 50px;
}

.student-band .topic-figure {
  height: 520px;
  min-height: 520px;
  flex-basis: 520px;
  margin-top: 34px;
  overflow: visible;
  border-radius: 18px;
}

.student-band {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.student-band::before {
  display: none;
}

.student-band .topic-content {
  order: -1;
  position: relative;
  z-index: 5;
  padding: 4px 4px 0;
}

.poster-figure .poster-slide {
  top: -38px;
  left: 43%;
  height: 532px;
  border-radius: 10px;
  transform: translateX(-50%) scale(0.97);
  box-shadow:
    0 30px 62px rgba(0, 19, 45, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.24);
}

.poster-figure .poster-slide.active {
  transform: translateX(-50%) scale(1);
}

.poster-figure .poster-glow {
  top: 4px;
  left: 43%;
  width: 350px;
  height: 410px;
}

.poster-decor {
  top: 124px;
  left: 30px;
  width: 106px;
  height: 106px;
}

.poster-nav {
  position: absolute;
  z-index: 6;
  top: 52px;
  right: 30px;
  bottom: 42px;
  width: 104px;
  display: grid;
  grid-template-rows: 38px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: center;
}

.poster-thumbs {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.poster-thumbs::-webkit-scrollbar {
  display: none;
}

.poster-thumb {
  position: relative;
  height: 102px;
  min-height: 102px;
  scroll-snap-align: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.52;
  cursor: pointer;
  transition: opacity 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.poster-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.poster-thumb.active {
  border-color: #fff;
  opacity: 1;
  transform: translateX(-6px);
  box-shadow: 0 10px 22px rgba(0, 18, 43, 0.3);
}

.poster-arrow {
  width: 100%;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.24s ease, transform 0.24s ease;
}

@media (hover: hover) {
  .poster-arrow:hover,
  .poster-arrow:focus-visible {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
  }

  .poster-thumb:hover,
  .poster-thumb:focus-visible {
    opacity: 1;
  }

}

@media (max-width: 1100px) {
  .topic-stream {
    grid-template-columns: 1fr;
  }

  .topic-band,
  .topic-band--reverse {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  }

  .cooperation-band .topic-figure,
  .student-band .topic-figure {
    height: auto;
    min-height: 100%;
    flex-basis: auto;
  }

  .student-band .topic-figure {
    min-height: 520px;
    margin-top: 32px;
  }

  .poster-figure .poster-slide {
    top: -34px;
    left: 42%;
    height: 530px;
    transform: translateX(-50%) scale(0.97);
  }

  .poster-figure .poster-slide.active {
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 720px) {
  .topic-band,
  .topic-band--reverse {
    display: flex;
  }

  .cooperation-band .topic-figure {
    height: 190px;
    min-height: 190px;
    flex-basis: 190px;
  }

  .student-band .topic-figure {
    height: 480px;
    min-height: 480px;
    flex-basis: 480px;
    margin-top: 28px;
  }

  .poster-figure .poster-slide {
    top: -30px;
    left: 40%;
    height: 482px;
    transform: translateX(-50%) scale(0.97);
  }

  .poster-figure .poster-glow {
    left: 40%;
  }

  .poster-decor {
    left: 18px;
  }

  .poster-nav {
    right: 16px;
    width: 76px;
  }

  .poster-thumb {
    height: 88px;
    min-height: 88px;
  }
}

@media (max-width: 480px) {
  .student-band .topic-figure {
    height: 430px;
    min-height: 430px;
    flex-basis: 430px;
    margin-top: 24px;
  }

  .poster-figure .poster-slide {
    top: -26px;
    left: 39%;
    height: 430px;
  }

  .poster-tag {
    left: 18px;
  }

  .poster-nav {
    top: 26px;
    right: 12px;
    bottom: 24px;
    width: 66px;
    gap: 7px;
  }

  .poster-thumbs {
    gap: 6px;
  }

  .poster-thumb {
    height: 76px;
    min-height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topic-band,
  .topic-figure img,
  .story-points a,
  .poster-figure .poster-slide,
  .poster-figure .poster-dot {
    transition: none;
  }
}

.poster-figure .poster-glow,
.poster-figure .poster-decor,
.poster-figure > .poster-tag,
.poster-figure > .topic-num {
  display: none;
}

.poster-accordion {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 12px;
}

.poster-figure .poster-accordion .poster-slide {
  position: relative;
  inset: auto;
  width: 58px;
  height: 100%;
  min-width: 58px;
  margin: 0;
  padding: 0;
  flex: 0 0 58px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  opacity: 1;
  background: #064b78;
  transform: none;
  box-shadow: none;
  cursor: pointer;
  transition:
    flex 0.65s cubic-bezier(0.22, 0.72, 0.16, 1),
    width 0.65s cubic-bezier(0.22, 0.72, 0.16, 1),
    border-radius 0.45s ease,
    box-shadow 0.45s ease;
}

.poster-figure .poster-accordion .poster-slide.active {
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  border-radius: 18px;
  transform: none;
  box-shadow: 0 24px 52px rgba(0, 19, 45, 0.38);
}

.poster-figure .poster-accordion .poster-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.9) brightness(0.68);
  transition: filter 0.45s ease;
}

.poster-figure .poster-accordion .poster-slide.active img {
  object-fit: contain;
  object-position: center;
  background: rgba(4, 55, 94, 0.48);
  filter: none;
}

.poster-accordion .poster-slide span {
  position: absolute;
  z-index: 2;
  inset: 18px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  writing-mode: vertical-rl;
  color: #fff;
  text-shadow: 0 4px 14px rgba(0, 20, 48, 0.75);
  transition: opacity 0.25s ease;
}

.poster-accordion .poster-slide span::before {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(1, 27, 56, 0.86));
}

.poster-accordion .poster-slide strong {
  font-size: 17px;
  letter-spacing: 0.12em;
}

.poster-accordion .poster-slide i {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.poster-accordion .poster-slide.active span {
  opacity: 0;
  pointer-events: none;
}

.poster-controls {
  position: absolute;
  z-index: 7;
  right: 34px;
  bottom: 42px;
  display: flex;
  gap: 8px;
}

.poster-controls .poster-arrow {
  width: 46px;
  height: 38px;
  background: rgba(2, 35, 70, 0.64);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

@media (max-width: 720px) {
  .student-band .topic-figure.poster-figure {
    height: 500px;
    min-height: 500px;
    flex-basis: 500px;
    padding: 22px 18px;
  }

  .poster-accordion {
    gap: 7px;
  }

  .poster-figure .poster-accordion .poster-slide {
    width: 36px;
    min-width: 36px;
    flex-basis: 36px;
    border-radius: 16px;
  }

  .poster-accordion .poster-slide strong {
    font-size: 16px;
  }

  .poster-accordion .poster-slide i {
    font-size: 12px;
  }

  .poster-controls {
    right: 28px;
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .student-band .topic-figure.poster-figure {
    height: 430px;
    min-height: 430px;
    flex-basis: 430px;
    padding: 18px 14px;
  }

  .poster-figure .poster-accordion .poster-slide {
    width: 30px;
    min-width: 30px;
    flex-basis: 30px;
  }

  .poster-accordion .poster-slide span {
    inset: 12px 0;
    gap: 8px;
  }

  .poster-accordion .poster-slide strong {
    font-size: 14px;
  }

.poster-accordion .poster-slide i {
    font-size: 11px;
  }
}

/* Refined student introduction and poster stage */
.student-band .topic-content {
  position: relative;
  padding: 26px 30px 24px;
  overflow: hidden;
  border: 1px solid rgba(178, 211, 234, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 18%, rgba(31, 211, 226, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 249, 255, 0.9));
  box-shadow: 0 16px 38px rgba(5, 57, 105, 0.07);
}

.student-band .topic-content::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #12c9d4, #087dac);
}

.student-band .topic-content::after {
  content: "02  /  STUDENT LIFE";
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(8, 117, 154, 0.13);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.student-band .topic-content h3 {
  max-width: 78%;
}

.student-band .topic-content p {
  max-width: 86%;
}

.student-band .topic-figure.poster-figure {
  margin-top: 18px;
  padding: 68px 28px 28px;
  background:
    radial-gradient(circle at 48% 20%, rgba(31, 219, 229, 0.22), transparent 32%),
    linear-gradient(135deg, #063766 0%, #075d8d 56%, #087f98 100%);
  box-shadow: 0 24px 54px rgba(3, 45, 82, 0.18);
}

.student-band .topic-figure.poster-figure::before {
  content: "YOUTH SCHOLARS FORUM";
  position: absolute;
  z-index: 6;
  top: 27px;
  left: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.student-band .topic-figure.poster-figure::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.poster-accordion {
  justify-content: center;
  gap: 10px;
}

.poster-figure .poster-accordion .poster-slide {
  width: auto;
  min-width: 62px;
  flex: 1 1 0;
  border-radius: 22px;
}

.poster-figure .poster-accordion .poster-slide.active {
  width: auto;
  min-width: 320px;
  flex: 0 0 42%;
  border-radius: 16px;
}

.poster-figure .poster-accordion .poster-slide.active img {
  background:
    radial-gradient(circle at 50% 24%, rgba(41, 218, 231, 0.2), transparent 34%),
    rgba(3, 50, 84, 0.5);
}

.poster-accordion .poster-slide span {
  inset: 16px 0;
  justify-content: flex-end;
  padding-bottom: 12px;
}

.poster-controls {
  top: 20px;
  right: 24px;
  bottom: auto;
  padding: 3px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(1, 39, 74, 0.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.poster-controls .poster-arrow {
  width: 39px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 19px;
}

@media (hover: hover) {
  .poster-figure .poster-accordion .poster-slide:not(.active):hover {
    flex-grow: 1.16;
    filter: brightness(1.08);
  }
}

@media (max-width: 1100px) {
  .student-band .topic-content h3,
  .student-band .topic-content p {
    max-width: none;
  }

  .poster-figure .poster-accordion .poster-slide.active {
    min-width: 280px;
    flex-basis: 46%;
  }
}

@media (max-width: 720px) {
  .student-band .topic-content {
    padding: 24px 22px 22px;
  }

  .student-band .topic-content::after {
    display: none;
  }

  .student-band .topic-figure.poster-figure {
    padding: 60px 18px 20px;
  }

  .poster-figure .poster-accordion .poster-slide {
    min-width: 34px;
  }

  .poster-figure .poster-accordion .poster-slide.active {
    min-width: 0;
    flex-basis: 58%;
  }
}

@media (max-width: 480px) {
  .student-band .topic-content {
    padding: 22px 18px 20px;
  }

  .student-band .topic-figure.poster-figure {
    padding: 56px 12px 16px;
  }

  .poster-accordion {
    gap: 5px;
  }

  .poster-figure .poster-accordion .poster-slide {
    min-width: 25px;
  }

  .poster-figure .poster-accordion .poster-slide.active {
    flex-basis: 64%;
  }

  .poster-controls {
    top: 15px;
    right: 14px;
  }
}

/* Desktop navigation: compact, conventional hover dropdowns. */
@media (min-width: 1101px) {
  .nav-dropdown,
  .site-header.is-scrolled .nav-dropdown {
    width: 138px;
    min-height: 0;
    max-height: min(70vh, 620px);
    padding: 8px;
    position: absolute;
    left: 50%;
    top: calc(50% + 22px);
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 89, 181, 0.12);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(1, 32, 70, 0.16);
    transform: translate(-50%, -8px);
  }

  .site-header.is-scrolled .nav-dropdown {
    top: 100%;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    transform: translate(-50%, 0);
  }

  .mega-copy,
  .mega-visual {
    display: none;
  }

  .mega-content,
  .mega-content:has(.mega-groups--education) {
    width: auto;
    max-width: none;
    margin: 0;
    display: block;
  }

  .mega-groups,
  .mega-groups--education {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mega-groups--education > .mega-direct {
    width: auto;
  }

  .mega-groups .mega-group:has(a),
  .mega-groups--education .mega-group {
    display: block;
  }

  .mega-group strong {
    min-height: 34px;
    padding: 8px 12px 4px;
    justify-content: center;
    color: #7b8795;
    border: 0;
    font-size: 14px;
    text-align: center;
    cursor: default;
  }

  .mega-group strong::after,
  .mega-direct::after,
  .mega-group a::after {
    content: none;
  }

  .mega-direct,
  .mega-group a,
  .mega-groups .mega-group:has(a) a,
  .mega-groups--education .mega-group a {
    min-height: 38px;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    color: #24384f;
    background: transparent;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }

  .mega-direct:hover,
  .mega-direct:focus-visible,
  .mega-group a:hover,
  .mega-group a:focus-visible,
  .mega-groups .mega-group:has(a) a:hover,
  .mega-groups--education .mega-group a:hover {
    color: var(--blue-900);
    background: rgba(7, 89, 181, 0.08);
    transform: none;
  }
}

/* Student portal: editorial event feature inspired by the academic exchange layout. */
.education-head > .education-column-titles {
  flex: 1 1 auto;
}

.education-column-titles {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.education-column-title {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.education-column-title h2 {
  margin: 0;
}

.education-column-more {
  min-width: 104px;
  height: 40px;
  padding: 0 18px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c8ddf2;
  border-radius: 999px;
  color: #0b5fab;
  background: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(5, 59, 116, 0.06);
}

.student-band .topic-content {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  justify-content: center;
}

.student-band .topic-content .story-points {
  order: 0;
  width: 100%;
  margin: 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.student-band .topic-content .story-points a {
  min-height: 62px;
  padding: 0 18px;
  font-size: 19px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(5, 59, 116, 0.07);
}

.student-band .topic-content > .topic-kicker,
.student-band .topic-content > h3,
.student-band .topic-content > p {
  display: none;
}

.student-band .topic-content::after {
  content: none;
}

.student-band .topic-figure {
  order: 0;
}

.student-band .topic-content {
  order: 1;
  margin-top: 28px;
}

.student-band .topic-figure.poster-figure {
  min-height: 670px;
  height: 670px;
  margin-top: 0;
  padding: 24px 42px 28px;
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.student-band .topic-figure.poster-figure::before {
  content: none;
}

.student-band .topic-figure.poster-figure::after {
  content: "";
  inset: 186px 0 20px;
  z-index: 0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(135deg, #0756a0, #087dac);
  background-size: 38px 38px, 38px 38px, auto;
  box-shadow: 0 22px 50px rgba(3, 45, 82, 0.2);
}

.poster-accordion {
  width: 100%;
  height: 650px;
  z-index: 3;
  display: block;
  transform: translateY(-62px);
}

.poster-figure .poster-accordion .poster-slide,
.poster-figure .poster-accordion .poster-slide.active {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 0;
  height: 100%;
  display: none;
  border-radius: 12px;
  box-shadow: 18px 18px 0 rgba(137, 197, 244, 0.72);
}

.poster-figure .poster-accordion .poster-slide.active {
  display: block;
}

.poster-figure .poster-accordion .poster-slide.active img {
  object-fit: contain;
  background: #07568c;
}

.poster-event-panel {
  position: relative;
  z-index: 3;
  padding: 0 0 22px;
  color: #fff;
}

.poster-event-feature {
  padding: 0 26px 26px;
  border-bottom: 1px solid rgba(255,255,255,.3);
}

.poster-event-feature h4 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.48;
}

.poster-event-feature p {
  margin: 13px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 17px;
}

.poster-event-feature p:first-of-type {
  margin-top: 66px;
}

.poster-event-feature p span {
  width: 22px;
  display: inline-block;
  color: #7ee8ff;
  font-size: 21px;
}

.poster-event-row {
  padding: 19px 26px;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .2s ease;
}

.poster-event-row strong {
  font-size: 17px;
  line-height: 1.5;
}

.poster-event-row time {
  color: rgba(255,255,255,.62);
  font-size: 15px;
}

.poster-event-row:hover {
  background: rgba(255,255,255,.08);
}

.student-band .poster-controls {
  top: 168px;
  right: 32px;
}

@media (max-width: 1100px) {
  .education-column-titles {
    display: block;
  }

  .education-column-title + .education-column-title {
    display: none;
  }

  .education-column-title {
    align-items: center;
  }

  .student-band .topic-figure.poster-figure {
    height: auto;
    min-height: 580px;
    grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr);
    gap: 34px;
    padding-inline: 26px;
  }

  .poster-accordion {
    height: 540px;
    transform: translateY(-38px);
  }
}

@media (max-width: 720px) {
  .student-band .topic-figure.poster-figure {
    min-height: 0;
    height: auto;
    padding: 24px 18px;
    display: block;
  }

  .student-band .topic-figure.poster-figure::after {
    inset: 0;
  }

  .poster-accordion {
    width: min(82%, 360px);
    height: 440px;
    margin: 0 auto 62px;
    transform: none;
  }

  /* 窄屏海报下方留出“查看往期”的位置 */
  .poster-past {
    bottom: -52px;
  }

  .poster-event-panel {
    margin-top: 28px;
    padding: 28px 4px 10px;
  }

  .poster-event-feature h4 {
    color: #fff;
  }

  .poster-event-feature p:first-of-type {
    margin-top: 28px;
  }

  .student-band .poster-controls {
    top: 16px;
    right: 26px;
  }
}

/* Third-level navigation for the college overview menu. */
.mega-third-toggle {
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
}

.mega-third-toggle::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.mega-group--third.is-third-open > .mega-third-toggle::after {
  transform: rotate(135deg);
}

.mega-third-menu {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.mega-group--third.is-third-open > .mega-third-menu {
  display: grid;
}

.mega-third-menu a {
  min-height: 32px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

@media (min-width: 1101px) {
  .nav-dropdown,
  .site-header.is-scrolled .nav-dropdown {
    overflow: visible;
  }

  .mega-group--third {
    position: relative;
    display: block;
  }

  .mega-third-toggle {
    min-height: 38px;
    padding: 0 10px;
    justify-content: center;
    position: relative;
    color: #24384f;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }

  .mega-third-toggle::after {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    color: #8290a0;
    transform: rotate(45deg);
  }

  .mega-group--third:hover .mega-third-toggle,
  .mega-group--third:focus-within .mega-third-toggle,
  .mega-group--third.is-third-open .mega-third-toggle {
    color: var(--blue-900);
    background: rgba(7, 89, 181, 0.08);
  }

  .mega-group--third.is-third-open > .mega-third-toggle::after {
    transform: rotate(45deg);
  }

  .mega-third-menu {
    width: 202px;
    padding: 8px;
    position: absolute;
    z-index: 120;
    top: -8px;
    left: calc(100% + 8px);
    grid-template-columns: 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(7, 89, 181, 0.12);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(1, 32, 70, 0.18);
  }

  .mega-group--third:hover > .mega-third-menu,
  .mega-group--third:focus-within > .mega-third-menu,
  .mega-group--third.is-third-open > .mega-third-menu {
    display: grid;
  }

  .mega-third-menu a {
    min-height: 38px;
    padding: 0 12px;
    justify-content: flex-start;
    color: #24384f;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
  }

  .mega-third-menu a:hover,
  .mega-third-menu a:focus-visible {
    color: var(--blue-900);
    background: rgba(7, 89, 181, 0.08);
  }

  .mega-third-menu > .mega-group--third .mega-third-toggle {
    justify-content: flex-start;
    text-align: left;
    border-radius: 6px;
  }

  .mega-group--third.mega-third--left > .mega-third-menu {
    left: auto;
    right: calc(100% + 10px);
  }
}

/* Student image narrative: an asymmetric, editorial collage. */
.campus-section {
  padding: 0 0 42px;
  background:
    linear-gradient(115deg, rgba(12, 105, 183, 0.08) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, #f4f9ff 0%, #eaf4ff 58%, #f7fbff 100%);
}

.campus-section::before {
  content: "";
  inset: 0;
  left: 0;
  bottom: 0;
  background:
    linear-gradient(rgba(8, 92, 167, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 92, 167, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 24%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 24%, #000 78%, transparent);
}

.student-collage {
  margin-top: 18px;
  position: relative;
}

.student-collage::before {
  content: "";
  width: 128px;
  height: 3px;
  position: absolute;
  z-index: 3;
  top: 72px;
  left: -34px;
  background: linear-gradient(90deg, transparent, #20d3ff);
}

.student-collage-grid {
  height: 610px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, 38px);
  gap: 14px;
  position: relative;
}

.student-collage-item {
  min-width: 0;
  min-height: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(181, 211, 239, 0.88);
  border-radius: 6px;
  background: #bfd6e9;
  box-shadow: 0 22px 48px rgba(4, 42, 91, 0.13);
}

.student-collage-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 9; }
.student-collage-item:nth-child(2) { grid-column: 7 / 13; grid-row: 1 / 5; }
.student-collage-item:nth-child(3) { grid-column: 7 / 10; grid-row: 5 / 9; }
.student-collage-item:nth-child(4) { grid-column: 10 / 13; grid-row: 5 / 9; }
.student-collage-item:nth-child(5) { grid-column: 1 / 5; grid-row: 9 / 13; }
.student-collage-item:nth-child(6) { grid-column: 5 / 8; grid-row: 9 / 13; }
.student-collage-item:nth-child(7) { grid-column: 8 / 13; grid-row: 9 / 13; }

.student-collage-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 0.72, 0.16, 1), filter 0.45s ease;
}

.student-collage-item:nth-child(1) img { object-position: center 35%; }
.student-collage-item:nth-child(2) img { object-position: center 52%; }
.student-collage-item:nth-child(6) img { object-position: center 48%; }

.student-collage-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(2, 26, 58, 0.8) 100%),
    linear-gradient(90deg, rgba(2, 77, 162, 0.26), transparent 58%);
}

.student-collage-item:nth-child(2)::after,
.student-collage-item:nth-child(5)::after,
.student-collage-item:nth-child(6)::after,
.student-collage-item:nth-child(7)::after {
  background: linear-gradient(180deg, transparent 38%, rgba(2, 26, 58, 0.78) 100%);
}

.student-collage-item::before {
  content: "";
  width: 54px;
  height: 3px;
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 22px;
  background: #54d9ff;
}

.student-collage-item:nth-child(3)::before { background: #55e6c1; }
.student-collage-item:nth-child(4)::before { background: #e4bd5f; }
.student-collage-item:nth-child(6)::before { background: #fff; }

.student-collage-copy {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
}

.student-collage-copy small {
  display: block;
  color: #9deaff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.student-collage-copy h3 {
  margin: 7px 0 0;
  font-size: 23px;
  line-height: 1.42;
  letter-spacing: 0;
}

.student-collage-item:nth-child(1) .student-collage-copy {
  right: 34px;
  bottom: 30px;
  left: 34px;
}

.student-collage-item:nth-child(1) .student-collage-copy h3 {
  max-width: 610px;
  font-size: 33px;
  line-height: 1.32;
}

.student-collage-copy p {
  max-width: 570px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.student-collage-item:nth-child(n + 2) .student-collage-copy p {
  display: none;
}

/* 07 与 05、06 同高同排，文字排版不再单独收紧 */

@media (hover: hover) {
  .student-collage-item:hover img,
  .student-collage-item:focus-visible img {
    transform: scale(1.055);
    filter: saturate(1.06) contrast(1.03);
  }

  .student-collage-item:hover,
  .student-collage-item:focus-visible {
    border-color: rgba(32, 211, 255, 0.76);
    box-shadow: 0 28px 58px rgba(4, 42, 91, 0.2);
  }
}

@media (max-width: 1100px) {
  .student-collage-grid {
    height: 706px;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(15, 34px);
    gap: 12px;
  }

  .student-collage-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 9; }
  .student-collage-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 5; }
  .student-collage-item:nth-child(3) { grid-column: 6 / 9; grid-row: 5 / 9; }
  .student-collage-item:nth-child(4) { grid-column: 1 / 5; grid-row: 9 / 13; }
  .student-collage-item:nth-child(5) { grid-column: 5 / 9; grid-row: 9 / 13; }
  .student-collage-item:nth-child(6) { grid-column: 1 / 4; grid-row: 13 / 16; }
  .student-collage-item:nth-child(7) { grid-column: 4 / 9; grid-row: 13 / 16; }

  .student-collage-item:nth-child(1) .student-collage-copy h3 {
    font-size: 27px;
  }

  .student-collage-copy h3 {
    font-size: 19px;
  }
}

@media (max-width: 720px) {
  .campus-section {
    padding-bottom: 32px;
  }

  .student-collage::before,
  .student-collage-grid::before {
    display: none;
  }

  .student-collage-grid {
    height: auto;
    margin-right: calc(50% - 50vw);
    padding: 0 16px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .student-collage-grid::-webkit-scrollbar {
    display: none;
  }

  .student-collage-item {
    width: auto;
    height: auto;
    aspect-ratio: 16 / 11;
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .student-collage-item:nth-child(n + 2) {
    flex-basis: min(78vw, 324px);
  }

  .student-collage-item img {
    object-position: center center;
  }

  .student-collage-item:nth-child(1) img { object-position: center 35%; }
  .student-collage-item:nth-child(2) img { object-position: center 52%; }
  .student-collage-item:nth-child(6) img { object-position: center 48%; }

  .student-collage-item:nth-child(1) .student-collage-copy,
  .student-collage-copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .student-collage-item:nth-child(1) .student-collage-copy h3,
  .student-collage-copy h3 {
    font-size: 22px;
  }

  .student-collage-copy p {
    display: none;
  }
}

@media (max-width: 480px) {
  .student-collage-item {
    flex-basis: calc(100vw - 64px);
    aspect-ratio: 4 / 3;
  }

  .student-collage-item:nth-child(1) .student-collage-copy h3,
  .student-collage-copy h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}

@media (min-width: 1101px) {
  .student-band {
    position: relative;
    margin-top: 72px;
  }

  .student-band .topic-content {
    min-height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    top: -42px;
    right: 22px;
    left: 52%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .student-band .topic-content::before {
    content: none;
  }

  .student-band .topic-content .story-points {
    padding: 0;
    gap: 10px;
  }

  .student-band .topic-content .story-points a {
    min-height: 48px;
    padding: 0 10px;
    border: 1px solid rgba(7, 89, 181, 0.14);
    border-radius: 9px;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.82);
  }

  .cooperation-band .story-list li { min-height: 58px; }
  .cooperation-band .story-list time { font-size: 16px; }
  .cooperation-band .story-list a,
  .cooperation-band .story-more span { font-size: 17px; line-height: 1.55; }
  .poster-event-feature h4 { font-size: 22px; }
  .poster-event-feature p,
  .poster-event-row strong { font-size: 18px; }
  .poster-event-row time { font-size: 16px; }

  .poster-event-panel {
    align-self: stretch;
  }

  .poster-event-feature h4 {
    height: 84px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 21px;
    line-height: 1.45;
  }

  .poster-event-feature p:first-of-type {
    margin-top: 70px;
  }
}

/* Final cascade for the shared homepage "更多" button. */
a.home-more.home-more {
  width: auto;
  min-width: 88px;
  height: 34px;
  padding: 0 5px 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(23, 105, 176, 0.24);
  border-radius: 999px;
  color: #1769b0;
  background: rgba(255, 255, 255, 0.28);
  font-size: 16px;
  font-weight: 800;
  box-shadow: none;
}

a.home-more.home-more > span {
  width: 26px;
  height: 26px;
  margin: 0;
  position: relative;
  flex: 0 0 26px;
  display: block;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 105, 176, 0.1);
  transform: none;
}

a.home-more.home-more > span::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 8px;
  top: 8px;
  border: 0;
  border-top: 1.5px solid #1769b0;
  border-right: 1.5px solid #1769b0;
  transform: rotate(45deg);
}

a.home-more.home-more:hover,
a.home-more.home-more:focus-visible {
  color: #0b5fab;
  border-color: rgba(23, 105, 176, 0.42);
  background: rgba(23, 105, 176, 0.08);
  transform: translateY(-1px);
}

/* Header utility controls and lower-aligned desktop navigation. */
.header-tools {
  display: none;
}

@media (min-width: 1101px) {
  .site-header:not(.is-scrolled),
  .site-header:not(.is-scrolled) .header-inner {
    height: 156px;
  }

  .main-nav {
    padding-top: 42px;
  }

  .site-header.is-scrolled .main-nav {
    padding-top: 0;
  }

  .header-tools {
    position: absolute;
    z-index: 4;
    top: 16px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .site-header.is-scrolled .header-tools {
    display: none;
  }

  /* 语言切换：地球图标 + English 文字 */
  .header-language {
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    color: #fff;
    background: transparent;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.24s ease;
  }

  .header-language:hover,
  .header-language:focus-visible {
    opacity: 0.76;
  }

  .header-language i {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    position: relative;
    border: 1.4px solid currentColor;
    border-radius: 50%;
  }

  .header-language i::before,
  .header-language i::after {
    content: "";
    position: absolute;
  }

  .header-language i::before {
    left: -1.4px;
    right: -1.4px;
    top: 50%;
    height: 1.4px;
    margin-top: -0.7px;
    background: currentColor;
  }

  .header-language i::after {
    top: -1.4px;
    right: 24%;
    bottom: -1.4px;
    left: 24%;
    border: 1.4px solid currentColor;
    border-radius: 50%;
  }

  /* 搜索：白色胶囊输入框 + 右侧放大镜按钮 */
  .header-search {
    width: 268px;
    height: 36px;
    padding: 0 4px 0 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 999px;
  }

  .header-search input {
    min-width: 0;
    height: 100%;
    flex: 1 1 auto;
    padding: 0;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    color: #24384f;
    font-family: inherit;
    font-size: 16px;
  }

  .header-search input:focus {
    outline: 0;
  }

  .header-search input::placeholder {
    color: #9aa8ba;
  }

  .header-search input::-webkit-search-cancel-button {
    appearance: none;
    -webkit-appearance: none;
  }

  .header-search button {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #33475f;
    background: transparent;
    cursor: pointer;
    transition: color 0.24s ease, background 0.24s ease;
  }

  .header-search button:hover,
  .header-search button:focus-visible {
    color: var(--blue-900);
    background: rgba(2, 77, 162, 0.08);
  }

  .header-search button > span {
    width: 15px;
    height: 15px;
    position: relative;
    display: block;
    border: 1.8px solid currentColor;
    border-radius: 50%;
  }

  .header-search button > span::after {
    content: "";
    width: 6px;
    height: 1.8px;
    position: absolute;
    right: -4px;
    bottom: -1px;
    border-radius: 2px;
    background: currentColor;
    transform: rotate(45deg);
  }
}

/* Desktop navigation refinement: roomier menus and contained deep levels. */
@media (min-width: 1101px) {
  .main-nav {
    gap: clamp(3px, 0.45vw, 9px);
  }

  .main-nav .nav-link {
    min-width: 0;
    padding-inline: clamp(9px, 0.72vw, 14px);
    font-size: clamp(16px, 0.88vw, 18px);
  }

  .nav-dropdown,
  .site-header.is-scrolled .nav-dropdown {
    width: 132px;
    padding: 8px;
    overflow: visible;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(1, 32, 70, 0.2);
  }

  .mega-direct,
  .mega-third-toggle {
    min-height: 42px;
    padding-inline: 14px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.35;
  }

  .mega-third-toggle {
    padding-right: 28px;
  }

  .mega-third-toggle::after {
    right: 13px;
  }

  .mega-third-menu {
    width: 228px;
    max-height: min(66vh, 560px);
    padding: 9px;
    left: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(1, 32, 70, 0.2);
    scrollbar-width: thin;
    scrollbar-color: rgba(7, 89, 181, 0.28) transparent;
  }

  .mega-third-menu--wide {
    width: 390px;
  }

  .mega-third-menu a {
    min-height: 42px;
    padding: 8px 14px;
    justify-content: flex-start;
    border-radius: 8px;
    line-height: 1.45;
    text-align: left;
  }

  .mega-groups .mega-third-menu > a {
    justify-content: flex-start;
    text-align: left;
  }

  .mega-groups .mega-third-menu > .mega-group--third > .mega-third-toggle {
    padding-right: 14px;
    justify-content: center;
    text-align: center;
  }

  .mega-groups .mega-third-menu > .mega-group--third > .mega-third-toggle::after {
    margin: 0;
    position: absolute;
    top: 50%;
    right: auto;
    left: calc(50% + 42px);
    transform: translateY(-50%) rotate(45deg);
  }

  .mega-third-menu--wide > a {
    justify-content: center;
    text-align: center;
  }

  .mega-group--third.mega-third--left > .mega-third-menu {
    left: auto;
    right: 100%;
  }

  .mega-third-menu:has(> .mega-group--third > .mega-third-menu--nested) {
    overflow: visible;
  }

  /* Fourth-level items use a separate flyout panel. */
  .mega-third-menu > .mega-group--third > .mega-third-menu--nested {
    width: 228px;
    max-height: min(66vh, 520px);
    margin: 0;
    padding: 9px;
    position: absolute;
    top: -9px;
    left: 100%;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(7, 89, 181, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(1, 32, 70, 0.2);
  }

  .mega-third-menu > .mega-group--third > .mega-third-menu--nested-wide {
    width: 300px;
  }

  .mega-third-menu > .mega-group--third.mega-third--left > .mega-third-menu--nested {
    left: auto;
    right: 100%;
  }

  .mega-third-menu > .mega-group--third > .mega-third-menu--nested a {
    min-height: 40px;
    padding: 7px 13px;
    font-size: 16px;
  }
}

/* Mobile compatibility hardening shared by the homepage and inner pages. */
@media (max-width: 1100px) {
  body.nav-open {
    overflow: hidden;
  }

  .container {
    width: calc(100% - 48px);
  }

  .header-inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 44px !important;
  }

  .brand {
    grid-column: 1;
    max-width: calc(100% - 58px);
  }

  .mobile-nav-toggle {
    position: absolute;
    z-index: 6;
    top: 50%;
    right: 0;
    grid-column: auto;
    display: inline-flex !important;
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%);
  }

  .main-nav {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: min(100svh, 900px);
  }

  .hero-inner {
    min-height: calc(min(100svh, 900px) - 202px);
    display: flex;
    flex-direction: column;
  }

  .hero-stage {
    width: 100%;
    flex: 1 1 auto;
  }

  .header-inner > *,
  .brand,
  .main-nav,
  .nav-item,
  .nav-dropdown {
    min-width: 0;
  }

  .mobile-nav-toggle {
    width: 44px;
    height: 44px;
    touch-action: manipulation;
  }

  .main-nav,
  .discipline-viewport,
  .special-column-viewport,
  .platform-pager {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    max-width: calc(100vw - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
  }

  .hero-inner {
    min-height: calc(min(100svh, 900px) - 188px);
  }

  .brand img {
    width: 100%;
    object-fit: contain;
  }
}

/* Student portal: category tabs and article lists live inside the blue panel. */
.student-band {
  margin-top: 34px;
}

.student-band .topic-figure.poster-figure {
  height: 740px;
  min-height: 740px;
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
}

.poster-research-summary {
  position: absolute;
  z-index: 4;
  top: 26px;
  right: 34px;
  left: calc(52% - 24px);
  min-width: 0;
  padding-left: 17px;
  border-left: 3px solid #19b9e8;
}

.poster-research-summary > span {
  color: #0b69b7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.poster-research-summary h4 {
  max-width: 94%;
  margin: 6px 0 7px;
  color: #172235;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 800;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.poster-research-summary p {
  margin: 0;
  color: #65768a;
  font-size: 15px;
  font-weight: 700;
}

.poster-research-summary strong {
  margin-left: 8px;
  color: #087f98;
  font-size: 15px;
}

/* 报告时间 / 报告地点：标签 + 取值，跟在报告人下面 */
.poster-research-meta {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.poster-research-meta > span {
  flex: 0 0 auto;
  color: #0b69b7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.poster-research-meta > em {
  min-width: 0;
  color: #4d6076;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

/* 查看往期：挂在海报正下方，跟着海报那一列走 */
.poster-past {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: -58px;
  width: max-content;
  min-height: 38px;
  margin: 0 auto;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(150, 225, 244, 0.46);
  border-radius: 999px;
  color: #eaf8ff;
  background: rgba(2, 67, 116, 0.46);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.poster-past i {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.24s ease;
}

.poster-past:hover,
.poster-past:focus-visible {
  color: #075b91;
  border-color: #fff;
  background: #024da2;
}

.poster-past:hover i,
.poster-past:focus-visible i {
  transform: translateX(3px) rotate(-45deg);
}

.student-article-portal {
  min-width: 0;
  align-self: stretch;
  padding: 180px 22px 30px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.student-portal-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.student-portal-tabs a {
  min-width: 0;
  min-height: 46px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(150, 225, 244, 0.34);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(2, 67, 116, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.student-portal-tabs a:hover,
.student-portal-tabs a:focus-visible {
  color: #075b91;
  border-color: rgba(255, 255, 255, 0.94);
  background: #fff;
  box-shadow: 0 10px 24px rgba(1, 38, 76, 0.2);
  transform: translateY(-2px);
}

.student-portal-panel {
  min-height: 0;
  margin-top: 18px;
  flex: 1;
}

.student-portal-panel:not(.active) {
  display: none;
}

.student-portal-list {
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.student-portal-list li {
  min-height: 62px;
  padding: 12px 28px 12px 0;
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.student-portal-list li::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 7px;
  border-top: 2px solid rgba(126, 232, 255, 0.76);
  border-right: 2px solid rgba(126, 232, 255, 0.76);
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.2s ease, border-color 0.2s ease;
}

.student-portal-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.student-portal-meta time {
  color: #83e8ff;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.student-portal-category {
  min-height: 26px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(131, 232, 255, 0.34);
  border-radius: 4px;
  color: #b9f3ff;
  background: rgba(1, 65, 113, 0.34);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.student-portal-list a {
  min-width: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.student-portal-list li:hover a,
.student-portal-list li:focus-within a {
  color: #fff;
}

.student-portal-list li:hover::after,
.student-portal-list li:focus-within::after {
  right: 2px;
  border-color: #fff;
}

/* 箭头与“报告人”同一行的右侧，让下面两行时间地点占满整宽 */
.student-band .poster-controls {
  top: 100px;
  right: 30px;
}

@media (max-width: 1100px) {
  .student-band {
    margin-top: 28px;
  }

  .student-band .topic-figure.poster-figure {
    height: auto;
    min-height: 700px;
  }

  .student-article-portal {
    padding: 178px 18px 24px;
  }

  .student-portal-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .student-portal-list li {
    min-height: 58px;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
  }

  .student-portal-list a {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .student-band .topic-figure.poster-figure {
    display: block;
    height: auto;
    min-height: 0;
    flex-basis: auto;
    overflow: visible;
  }

  .student-article-portal {
    margin-top: 24px;
    padding: 24px 18px 18px;
    background: rgba(3, 84, 139, 0.52);
    border: 1px solid rgba(126, 232, 255, 0.2);
    border-radius: 10px;
  }

  .poster-research-summary {
    position: relative;
    inset: auto;
    margin: 24px 18px 0;
    padding-left: 14px;
    border-left-color: #83e8ff;
  }

  .poster-research-summary > span {
    color: #83e8ff;
  }

  .poster-research-summary h4 {
    max-width: none;
    color: #fff;
    font-size: 19px;
  }

  .poster-research-summary p {
    color: rgba(255, 255, 255, 0.72);
  }

  .poster-research-summary strong {
    color: #fff;
  }

  .poster-research-meta {
    max-width: none;
  }

  .poster-research-meta {
    max-width: none;
  }

  .poster-research-meta > span {
    color: #83e8ff;
  }

  .poster-research-meta > em {
    color: rgba(255, 255, 255, 0.82);
  }

  .student-portal-tabs a {
    min-height: 42px;
    font-size: 15px;
  }

  .student-portal-list li {
    min-height: 0;
    padding: 13px 24px 13px 0;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
  }

  .student-portal-meta time {
    font-size: 14px;
  }

  .student-band .poster-controls {
    top: 16px;
    right: 26px;
  }
}

.mega-third-menu .mega-group--third .mega-third-toggle,
.mega-third-menu .mega-group--third .mega-third-menu {
  display: none !important;
}

.mega-third-menu {
  display: none !important;
}

.mega-group--third.is-third-open > .mega-third-menu {
  display: none !important;
}

.mega-third-toggle::after {
  display: none !important;
}

/* Keep second-level navigation labels visually centered on every viewport. */
.nav-dropdown .mega-direct,
.nav-dropdown .mega-third-toggle,
.nav-dropdown:not(:has(.mega-content)) > a {
  justify-content: center;
  text-align: center;
}

@media (min-width: 1101px) {
  .nav-dropdown .mega-third-toggle {
    padding-inline: 14px;
  }
}

/* ===== inner-detail.html 页脚重设计 ===== */
.site-footer.footer-modern {
  position: relative;
  overflow: hidden;
  padding: 60px 0 30px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  background: #1a3d6f;
}

.site-footer.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(66, 194, 255, 0.12) 48%, transparent 78%);
}

.footer-modern .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-modern .footer-col-left .footer-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.footer-modern .footer-col-left .footer-text {
  margin: 0;
  color: #d8e4f3;
}

.footer-modern .footer-col-left .footer-en {
  margin: 14px 0 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(216, 228, 243, 0.55);
}

.footer-modern .footer-subtitle {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.footer-modern .footer-links--modern {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-modern .footer-links--modern li {
  margin-bottom: 8px;
}

.footer-modern .footer-links--modern li a {
  color: #d8e4f3;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-modern .footer-links--modern li a:hover {
  padding-left: 4px;
  color: #fff;
  text-decoration: underline;
}

.footer-modern .footer-qrcode-box {
  text-align: center;
}

.footer-modern .footer-qrcode {
  width: 110px;
  height: 110px;
  object-fit: contain;
  box-sizing: border-box;
  padding: 8px;
  display: block;
  margin: 0 auto 10px;
  background: #fff;
  border-radius: 4px;
}

.footer-modern .footer-qrcode-tip {
  margin: 0;
  color: #d8e4f3;
}

.footer-modern .footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: #aeb7c2;
}

.footer-modern .footer-bottom p {
  margin: 0;
}

@media (max-width: 1200px) {
  .footer-modern .footer-container {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 44px 0 24px;
  }

  .footer-modern .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-modern .footer-col-left .footer-en {
    font-size: 15px;
  }

  .footer-modern .footer-qrcode-box {
    margin-top: 0;
  }

  .footer-modern .footer-bottom {
    margin-top: 24px;
  }
}

/* ===== 参考图风格页脚 ===== */
.site-footer.home-footer {
  position: relative;
  padding: 45px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f8ff 0 104px, #012e6a 104px 100%);
}

.site-footer.home-footer::before {
  content: "";
  position: absolute;
  inset: 104px 0 0;
  z-index: 0;
  background: linear-gradient(135deg, #012e6a 0%, #024da2 55%, #0758b4 100%);
  clip-path: polygon(0 16%, 50% 0, 100% 16%, 100% 100%, 0 100%);
}

.home-footer .footer-inner {
  width: min(1800px, calc(100vw - 120px));
  max-width: none;
  padding: 30px 28px 0;
  position: relative;
  background: #024da2;
  border-radius: 36px 36px 0 0;
}

.home-footer .footer-inner::before {
  display: none;
}

.home-footer .footer-inner::after {
  display: none;
}

.home-footer-top-bar {
  width: 82px;
  height: 82px;
  box-sizing: border-box;
  margin: -40px auto 28px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 4px solid #024da2;
  border-radius: 18px;
  padding: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 35, 62, 0.2);
}

.home-footer-top-bar::before {
  content: "";
  position: static;
  display: block;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  transform: none;
  border-radius: 2px;
  background: repeating-conic-gradient(#024da2 0 25%, #fff 0 50%) 0 0 / 7px 7px;
}

.home-footer-top-bar::after {
  content: none;
  position: absolute;
  left: 88px;
  top: 50%;
  right: auto;
  bottom: auto;
  color: #024da2;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  white-space: nowrap;
  transform: translateY(-50%);
}

.home-footer-main,
.home-footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.home-footer-main {
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  padding-bottom: 12px;
}

.home-footer-main::before {
  display: none;
}

.home-footer-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  width: min(100%, 1120px);
}

.home-footer-col {
  width: auto;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(190, 230, 246, 0.16);
  border-radius: 14px;
}

.home-footer-links,
.home-footer-contact {
  min-height: 28px;
  justify-content: center;
}

.home-footer-qr-block {
  display: none;
}

.footer-label,
.home-footer-contact__label {
  color: #fff;
  font-size: 17px;
}

.home-footer-links a,
.home-footer-contact > div {
  font-size: 16px;
}

.home-footer-qr-block {
  gap: 12px;
}

.home-footer-qr {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  padding: 12px;
  background-color: #024da2;
  border: 1px solid rgba(190, 230, 246, 0.38);
}

.home-footer-qr span {
  color: rgba(255, 255, 255, 0.86);
}

.home-footer-yt {
  border-radius: 4px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
}

.home-footer-bottom {
  padding: 6px 0 10px;
  border-top: 1px solid rgba(190, 230, 246, 0.2);
}

@media (max-width: 900px) {
  .site-footer.home-footer {
    padding-top: 30px;
    background: linear-gradient(180deg, #f3f8ff 0 86px, #012e6a 86px 100%);
  }

  .site-footer.home-footer::before {
    inset: 86px 0 0;
    clip-path: polygon(0 12%, 50% 0, 100% 12%, 100% 100%, 0 100%);
  }

  .home-footer .footer-inner {
    width: calc(100vw - 44px);
    padding: 30px 22px 0;
    border-radius: 28px 28px 0 0;
  }

  .home-footer .footer-inner::before {
    inset: 0 0 44px;
    border-radius: 28px 28px 0 0;
  }

  .home-footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .home-footer-info {
    grid-template-columns: 1fr;
  }

  .home-footer-main::before {
    margin: 0 auto;
  }

  .home-footer-links,
  .home-footer-contact {
    justify-content: center;
  }

  .home-footer-qr-block {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .home-footer .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-footer-main::before {
    width: 180px;
  }

  .home-footer-contact {
    display: grid;
    justify-items: center;
    gap: 6px;
  }

  .home-footer-contact > div {
    justify-content: center;
  }

  .home-footer .footer-inner::after {
    bottom: 70px;
    font-size: 34px;
  }

  .home-footer-motto {
    font-size: 18px;
    gap: 4px;
  }

  .home-footer-qr {
    width: 78px;
    height: 78px;
    padding: 6px;
  }
}

/* ===== 页脚细节优化 ===== */
.home-footer .footer-inner::after {
  content: none;
}

.home-footer-main {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8px;
}

.home-footer-info {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  gap: 8px;
}

.home-footer-col {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(190, 230, 246, 0.22);
  border-radius: 10px;
}

.home-footer-links,
.home-footer-contact {
  justify-content: center;
  column-gap: 34px;
}

.footer-label,
.home-footer-contact__label {
  font-size: 18px;
}

.home-footer-links a,
.home-footer-contact > div {
  font-size: 16px;
  line-height: 1.35;
}

.home-footer-links a {
  color: rgba(235, 247, 255, 0.9);
}

.home-footer-contact dt {
  color: rgba(213, 230, 247, 0.68);
}

.home-footer-contact dd {
  color: rgba(240, 249, 255, 0.94);
}

.home-footer-top-bar {
  width: 88px;
  height: 88px;
  margin-top: -34px;
  margin-bottom: -8px;
  border-width: 3px;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 8px 22px rgba(0, 35, 62, 0.24);
}

.home-footer-top-bar::before {
  flex-basis: 64px;
  width: 64px;
  height: 64px;
  background-size: 8px 8px;
}

.home-footer-bottom {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 0 10px;
}

.home-footer-bottom p {
  width: 100%;
  text-align: center;
  color: rgba(225, 242, 255, 0.72);
  font-size: 14px;
}

@media (max-width: 720px) {
  .home-footer-main,
  .home-footer-bottom {
    width: calc(100% - 28px);
  }

  .home-footer-col {
    padding: 9px 14px;
  }

  .home-footer-links,
  .home-footer-contact {
    column-gap: 18px;
  }

  .home-footer-top-bar {
    margin-top: -28px;
    margin-bottom: -4px;
  }
}

/* ===== 二维码上移并跨出页脚顶部 ===== */
.site-footer.home-footer,
.home-footer .footer-inner {
  overflow: visible;
}

.home-footer-top-bar {
  width: 120px;
  height: 120px;
  margin-top: -38px;
  margin-bottom: -8px;
  padding: 6px;
  border-radius: 50%;
  border: 0;
  background: #024da2 url("/dfiles/2026/images/pharmacy-logo-watermark.png") center / 82% no-repeat;
  transform: translateY(-30px);
  overflow: visible;
}

.home-footer-top-bar::before {
  content: none !important;
}

.home-footer-top-bar::after {
  content: none !important;
}

.home-footer .footer-inner::after {
  content: "守信       求实　　　　　　好学       力行";
  display: block;
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 40px;
  font-weight: 700;
  font-family: "STXingkai", "Xingkai SC", "FZKai-Z03", "STKaiti", "KaiTi", "楷体", serif;
  letter-spacing: 0.26em;
  text-shadow: 0 2px 8px rgba(0, 25, 70, 0.28);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

/* 页脚两侧二维码位 */
.home-footer-main::before,
.home-footer-main::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  width: 80px;
  height: 80px;
  padding: 3px;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-shadow: 0 5px 18px rgba(0, 20, 70, 0.2);
}
.home-footer-main::before { left: 72px; background-image: url("/dfiles/2026/images/footer-qr-left.png"); }
.home-footer-main::after { right: 72px; background-image: url("/dfiles/2026/images/footer-qr-right.png"); }

.home-footer-qr-caption {
  position: absolute;
  top: 88px;
  z-index: 2;
  min-width: 74px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0758b4;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 20, 70, 0.2);
}
.home-footer-qr-caption--left { left: 75px; }
.home-footer-qr-caption--right { right: 75px; }

@media (max-width: 1360px) and (min-width: 721px) {
  .home-footer-info {
    max-width: calc(100% - 220px);
  }

  .home-footer-main::before { left: 18px; }
  .home-footer-main::after { right: 18px; }

  .student-band .topic-figure.poster-figure {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: 24px;
    padding-inline: 24px;
    min-width: 0;
  }

  .poster-accordion {
    height: 600px;
    min-width: 0;
  }

  .poster-event-panel {
    min-width: 0;
    overflow: hidden;
  }

  .poster-event-feature h4,
  .poster-event-row strong {
    font-size: 16px;
  }
}

/* 两侧占位图独立于中央信息栏，保持左右对称 */
.home-footer-main {
  width: 100%;
  max-width: none;
}

@media (max-width: 720px) {
  .home-footer .footer-inner::after { display: none; }
  .home-footer-top-bar { width: 82px; height: 82px; }
  .home-footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 8px;
  }
  .home-footer-main::before,
  .home-footer-main::after {
    position: static;
    width: 80px;
    height: 80px;
    justify-self: center;
  }
  .home-footer-info {
    grid-column: 1 / -1;
    max-width: none;
  }
  .home-footer-qr-caption { display: none; }
}

@media (max-width: 720px) {
  .home-footer-top-bar::before,
  .home-footer-top-bar::after {
    font-size: 15px;
    letter-spacing: 0.16em;
    width: 130px;
  }

  .home-footer-main::before,
  .home-footer-main::after {
    width: 94px;
    height: 104px;
    top: 0;
    padding: 5px;
    border-radius: 10px;
  }
  .home-footer-main::before { left: 4px; }
  .home-footer-main::after { right: 4px; }
  .home-footer-qr-caption { top: 72px; font-size: 11px; }
  .home-footer-qr-caption--left { left: 8px; }
  .home-footer-qr-caption--right { right: 8px; }
}

/* 首页新闻模块标题略微收紧，保持两栏视觉比例 */
.news-editorial .edit-head h2 {
  font-size: 28px;
}

.news-editorial .edit-head h2 em {
  font-size: 14px;
}

/* 首页学院要闻与通知公告的文章标题 */
.news-editorial .edit-index h3,
.news-editorial .notice-top h3,
.news-editorial .notice-timeline p {
  font-size: 19px;
}

@media (max-width: 720px) {
  .home-footer-top-bar {
    margin-top: -30px;
    margin-bottom: -4px;
    transform: translateY(-22px);
  }
}

/* ===== 学生园地信息区适度放大 ===== */
@media (min-width: 1101px) {
  .student-band .topic-figure.poster-figure {
    height: 760px;
    min-height: 760px;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  }

  .student-article-portal {
    padding-left: 28px;
    padding-right: 28px;
  }

  .student-portal-tabs {
    gap: 12px;
  }

  .student-portal-tabs a {
    min-height: 54px;
    font-size: 16px;
  }

  .student-portal-list li {
    min-height: 72px;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
  }

  .student-portal-meta time {
    font-size: 12px;
  }

  .student-portal-category {
    min-height: 30px;
    padding-inline: 9px;
    font-size: 12px;
  }

  .student-portal-list a {
    font-size: 17px;
    line-height: 1.55;
  }
}

/* 学生园地底部的柔和阴影默认显示，不依赖鼠标悬停 */
.student-band {
  box-shadow: 0 30px 60px rgba(4, 42, 91, 0.13);
}

/* 论坛海报模块占满内容区，避免沿用反向主题卡片的 264px 右列，
   导致研究主题和文章列表在不同屏幕宽度下被挤出可视区域。 */
.student-band.topic-band--reverse {
  grid-template-columns: minmax(0, 1fr);
}

.student-band .topic-figure.poster-figure,
.student-band .topic-content {
  grid-column: 1;
  min-width: 0;
}

/* 专题专栏内容字号放大 */
.special-column-head h2 {
  font-size: 24px;
}

.special-column-track a {
  min-height: 70px;
}

.special-column-track small {
  font-size: 15px;
}

.special-column-track strong {
  font-size: 19px;
  line-height: 1.4;
}

/* ========================================================================== */
/* Final responsive layout guardrails                                         */
/*                                                                            */
/* The homepage has accumulated several visual variations over time. Keep    */
/* these rules last so the layout follows one predictable flow at each size. */
/* ========================================================================== */

/* The news columns need enough room for both the lead title and the notice
   timeline. Stack them before the fixed notice width starts squeezing the
   lead column. */
@media (max-width: 1280px) {
  .news-editorial {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .edit-notice {
    margin-top: 0;
  }
}

/* On a medium desktop, give the student area one full-width flow. The old
   two-column poster composition used fixed heights and caused the article
   panel to sit beside an empty area when the viewport became narrower. */
@media (max-width: 1360px) and (min-width: 1101px) {
  .education-column-titles {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .education-column-title + .education-column-title {
    display: flex;
  }

  .topic-stream {
    grid-template-columns: minmax(0, 1fr);
  }

  .student-band .topic-figure.poster-figure {
    height: min(620px, 58vw);
    min-height: 520px;
    padding: 20px 24px 28px;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    grid-template-rows: 1fr;
    gap: 24px;
    align-items: center;
  }

  .student-band .topic-figure.poster-figure::after {
    inset: 0;
  }

  .poster-accordion {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: min(560px, 50vw);
    min-height: 420px;
    margin: 0;
    transform: none;
  }

  .poster-research-summary {
    position: absolute;
    top: 24px;
    right: 24px;
    left: calc(48% + 8px);
    grid-column: auto;
    margin: 0;
    padding-left: 16px;
    max-width: none;
  }

  .poster-research-summary h4 {
    max-width: none;
  }

  .student-article-portal {
    grid-column: 2;
    grid-row: 1;
    align-self: auto;
    padding: 214px 0 8px;
  }

  /* The summary sits on the same blue panel at this width. Reserve its own
     vertical band before the category tabs begin and use the panel contrast. */
  .poster-research-summary > span {
    color: #83e8ff;
  }

  .poster-research-summary h4 {
    color: #fff;
  }

  .poster-research-summary p {
    color: rgba(255, 255, 255, 0.78);
  }

  .poster-research-summary strong {
    color: #fff;
  }

  .poster-research-meta > span {
    color: #83e8ff;
  }

  .poster-research-meta > em {
    color: rgba(255, 255, 255, 0.86);
  }

  .student-band .poster-controls {
    top: 24px;
    right: 28px;
  }
}

/* At phone and tablet widths, switch the student panel to a real vertical
   flow so the article list follows the poster instead of being clipped. */
@media (max-width: 1100px) {
  .education-column-titles {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .education-column-title + .education-column-title {
    display: flex;
  }

  .student-band .topic-figure.poster-figure {
    height: auto;
    min-height: 0;
    padding: 20px 22px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 22px;
    align-items: start;
  }

  .poster-accordion {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 500px);
    height: min(430px, 72vw);
    min-height: 320px;
    margin: 0 auto;
    transform: none;
  }

  .poster-research-summary {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    padding-left: 14px;
  }

  .student-article-portal {
    grid-column: 1;
    grid-row: 3;
    align-self: auto;
    padding: 22px 0 8px;
  }

  .student-band .poster-controls {
    top: 20px;
    right: 22px;
  }
}

/* Keep long Chinese titles inside their grid tracks instead of forcing the
   neighbouring column to grow. */
.news-editorial,
.edit-body,
.education-inner,
.topic-stream,
.topic-band,
.topic-content,
.poster-event-panel,
.student-article-portal,
.student-portal-list li,
.student-portal-list a,
.notice-timeline a,
.notice-timeline p {
  min-width: 0;
}

.edit-index h3,
.notice-timeline p,
.story-list a,
.student-portal-list a,
.poster-research-summary h4,
.poster-research-meta > em {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* The footer side QR images become ordinary grid items below desktop size,
   so both remain centered in the available footer width. */
@media (max-width: 1100px) {
  .home-footer-main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    text-align: center;
    padding-top: 8px;
  }

  .home-footer-main::before,
  .home-footer-main::after {
    position: static;
    inset: auto;
    width: 88px;
    height: 88px;
    justify-self: center;
    grid-row: 1;
  }

  .home-footer-main::before {
    grid-column: 1;
  }

  .home-footer-main::after {
    grid-column: 2;
  }

  .home-footer-info {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
  }

  .home-footer-qr-caption {
    display: none;
  }

  .home-footer-links,
  .home-footer-contact {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .news-editorial {
    gap: 22px;
  }

  .edit-head {
    align-items: flex-start;
  }

  .edit-head h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .edit-head h2 em {
    font-size: 12px;
  }

  .student-band .topic-figure.poster-figure {
    padding-inline: 16px;
  }

  .poster-accordion {
    width: min(100%, 360px);
    height: 430px;
    min-height: 0;
  }

  .student-band .poster-controls {
    top: 16px;
    right: 16px;
  }

  .home-footer-main {
    grid-template-columns: 1fr;
  }

  .home-footer-main::before,
  .home-footer-main::after {
    grid-column: 1;
    grid-row: auto;
  }

  .home-footer-info {
    grid-column: 1;
  }
}