@font-face {
  font-family: "Barlow Condensed Local";
  src: url("assets/fonts/barlow-condensed-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed Local";
  src: url("assets/fonts/barlow-condensed-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --blue: #0639ef;
  --ink: #111;
  --muted: #666;
  --line: #dcdfe5;
  --soft: #f4f5f7;
  --shell: min(1320px, calc(100% - 80px));
  --number: "Barlow Condensed Local", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

/* Header */
.site-header {
  position: relative;
  z-index: 80;
  height: 116px;
  overflow: visible;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #ededed;
}
.header-inner {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  width: min(1400px, calc(100% - 72px));
  height: 100%;
  margin: auto;
  padding-top: 17px;
}
.brand { flex: 0 0 484px; width: 484px; }
.brand img { width: 100%; height: auto; }
.header-right { min-width: 0; flex: 1; padding-top: 2px; }
.utility {
  display: flex;
  height: 34px;
  gap: 22px;
  justify-content: flex-end;
  align-items: flex-start;
  color: #555;
  font-size: 14px;
}
.utility a + a { position: relative; }
.utility a + a::before { content: "/"; position: absolute; left: -13px; color: #aaa; }
.search-window { position: relative; width: 18px; height: 18px; overflow: visible; }
.search-window::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid #222;
  border-radius: 50%;
  pointer-events: none;
}
.search-window::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 10px;
  width: 6px;
  height: 1px;
  background: #222;
  transform: rotate(45deg);
  pointer-events: none;
}
.search-window form,
.search-window .wp_search { position: absolute; top: 22px; right: 0; display: none; width: 250px; padding: 12px; background: #fff; box-shadow: 0 16px 36px rgba(0,0,0,.14); }
.search-window:hover form,
.search-window:focus-within form,
.search-window:hover .wp_search,
.search-window:focus-within .wp_search { display: flex; }
.main-nav { display: flex; gap: 24px; justify-content: flex-end; white-space: nowrap; font-size: 14px; }
.main-nav > a,
.main-nav > .nav-item > a { position: relative; display: block; padding: 14px 0 15px; }
.nav-item { position: relative; }
.nav-submenu {
  position: absolute;
  z-index: 90;
  top: calc(100% - 7px);
  left: 50%;
  width: 202px;
  margin-left: -101px;
  padding: 12px;
  visibility: hidden;
  background: rgba(255,255,255,.99);
  border: 1px solid #e6e8ed;
  box-shadow: 0 22px 48px rgba(13,24,48,.14);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, clip-path .48s cubic-bezier(.22,1,.36,1), transform .42s cubic-bezier(.22,1,.36,1), visibility 0s linear .48s;
}
.nav-submenu::before { content: ""; position: absolute; top: -1px; right: -1px; left: -1px; height: 3px; background: var(--blue); }
.nav-item:nth-last-child(-n + 2) .nav-submenu { right: 0; left: auto; margin-left: 0; }
.nav-submenu a {
  display: grid;
  grid-template-columns: 30px minmax(0,1fr);
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  background: linear-gradient(var(--blue), var(--blue)) left center / 0 100% no-repeat;
  border-top: 1px solid #eceef2;
  line-height: 1.35;
  transition: color .25s ease, background-size .42s cubic-bezier(.22,1,.36,1), padding-left .36s ease;
}
.nav-submenu a:first-child { border-top: 0; }
.nav-submenu small { color: var(--blue); font-family: var(--number); font-weight: 600; }
.nav-submenu a:hover,
.nav-submenu a:focus-visible { padding-left: 14px; color: #fff; background-size: 100% 100%; outline: none; }
.nav-submenu a:hover small,
.nav-submenu a:focus-visible small { color: #fff; }
.nav-item:hover > a,
.nav-item:focus-within > a { color: var(--blue); }
.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu { visibility: visible; opacity: 1; clip-path: inset(0); transform: translateY(0); pointer-events: auto; transition-delay: .06s, .06s, .06s, 0s; }
.menu { display: none; }

/* List hero */
.page-hero { position: relative; height: 240px; overflow: hidden; color: #fff; background: var(--blue); }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(255,255,255,.11) 1px,transparent 1px) 0 0/20% 100%, linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px) 0 0/100% 25%;
  opacity: .32;
}
.page-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(380px,.92fr) minmax(520px,1.08fr); height: 240px; padding-block: 20px; }
.page-hero-copy { display: flex; flex-direction: column; justify-content: center; padding-right: clamp(40px,6vw,100px); }
.breadcrumb,
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 14px; }
.breadcrumb .possplit,
.article-breadcrumb .possplit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  color: currentColor;
  font-size: 0;          /* 隐藏 .possplit 内的空格文本 */
  line-height: 1;
  opacity: 1;
}
.breadcrumb .possplit::before,
.article-breadcrumb .possplit::before { content: "/"; font-size: 14px; font-weight: 400; }
/* 强化：压掉 WebPlus 平台给 .possplit 可能套的默认背景/分隔线样式，只留下干净的斜线 */
.breadcrumb .possplit,
.article-breadcrumb .possplit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-inline: 0 !important;
  background: none !important;
  box-shadow: none !important;
  font-size: 0 !important;
  line-height: 1 !important;
  color: currentColor !important;
  opacity: 1 !important;
}
.breadcrumb .possplit::before,
.article-breadcrumb .possplit::before { content: "/" !important; }
.page-hero .breadcrumb { margin-bottom: 12px; color: rgba(255,255,255,.75); }
.page-hero .breadcrumb .possplit,
.page-hero .breadcrumb .possplit::before { color: rgba(255,255,255,.75) !important; opacity: 1 !important; }
.article-breadcrumb .possplit,
.article-breadcrumb .possplit::before { color: #aaa !important; }
.page-eyebrow,
.article-kicker,
.section-eyebrow { color: var(--blue); font-family: var(--number); font-size: 16px; letter-spacing: .18em; }
.page-hero .page-eyebrow { margin-bottom: 6px; color: #fff; }
.page-hero h1 { margin: 0; font-size: clamp(44px,4.2vw,58px); line-height: .98; letter-spacing: -.055em; }
.page-hero p { max-width: 420px; margin: 10px 0 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.6; }
.page-intro-window { max-width: 420px; max-height: 46px; margin-top: 10px; overflow: hidden; }
.page-intro-window .hero-summary-list { margin: 0; padding: 0; list-style: none; }
.page-intro-window .hero-summary-list li { display: none; margin: 0; padding: 0; list-style: none; }
.page-intro-window .hero-summary-list li:first-child { display: block; }
.page-intro-window .hero-summary-list p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.page-index { display: flex; gap: 13px; align-items: center; margin-top: 12px; font-family: var(--number); letter-spacing: .11em; }
.page-index b { font-size: 20px; font-weight: 400; }
.page-index i { width: 58px; height: 1px; background: rgba(255,255,255,.6); }
.page-hero-media { position: relative; height: 100%; margin: 0; overflow: hidden; background: #09279c; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(6,57,239,.26),transparent 45%), linear-gradient(0deg,rgba(0,0,0,.17),transparent 45%); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.page-hero:hover .page-hero-media img { transform: scale(1.025); }
.page-hero-media figcaption { position: absolute; right: 22px; bottom: 20px; z-index: 2; font-family: var(--number); font-size: 15px; letter-spacing: .15em; }
/* 栏目图片窗口包装层：适配 WebPlus 注入的 div，铺满右侧 */
.page-column-picture,
.page-column-picture > div,
.page-column-picture > [frag="窗口内容"] { display: block; width: 100%; height: 100%; }
.page-column-picture img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-parent-intro { max-width: 420px; }
.page-parent-intro[hidden] { display: none; }
.page-watermark { position: absolute; right: -24px; bottom: -40px; z-index: 3; color: rgba(255,255,255,.12); font-family: var(--number); font-size: clamp(150px,22vw,340px); line-height: .72; pointer-events: none; }

/* Column navigation and list */
.category-bar { display: grid; grid-template-columns: 170px 1fr; min-height: 96px; border-bottom: 1px solid var(--line); }
.category-label { display: flex; align-items: center; font-weight: 600; letter-spacing: .06em; }
.category-label .category-anchor,
.category-label .category-anchor > span,
.category-label .category-anchor [frag="窗口内容"] {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  align-items: center;
}
.category-label .category-anchor a {
  color: inherit;
  text-decoration: none;
}
.category-links { min-width: 0; }
.category-links ul { counter-reset: category-item; display: flex; min-height: 96px; margin: 0; padding: 0; list-style: none; }
.category-links li { flex: 1 1 0; min-width: 100px; }
.category-links a,
.category-links .wp_column a { counter-increment: category-item; position: relative; display: grid !important; grid-template-columns: 42px minmax(0,1fr); grid-template-rows: auto auto; width: 100%; height: 100%; min-height: 96px; padding: 19px 14px 17px !important; align-content: center; color: #555; background: #fff !important; border-top: 0 !important; border-bottom: 0 !important; font-size: 15px; font-weight: 400 !important; text-align: left; }
.category-number { grid-row: 1 / 3; align-self: center; color: var(--blue); font: 18px var(--number); letter-spacing: .06em; }
.category-number::before { content: counter(category-item,decimal-leading-zero); }
.category-links a > span,
.category-links .wp_column a .column-name { display: block; align-self: end; padding: 0 !important; overflow: hidden; font-weight: 600; line-height: 1.4 !important; text-overflow: ellipsis; white-space: nowrap; }
.category-links a > em { align-self: start; min-height: 17px; margin-top: 3px; overflow: hidden; color: #999; font: 12px var(--number); font-style: normal; letter-spacing: .09em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.category-links a > em:empty { visibility: hidden; }
.category-links a::after { content: ""; position: absolute; right: 50%; bottom: -1px; left: 50%; height: 3px; background: var(--blue); transition: left .35s ease,right .35s ease; }
.category-links a:hover,
.category-links a.selected { color: var(--blue); }
.category-links a:hover::after,
.category-links a.selected::after { right: 18%; left: 18%; }
.category-toggle { display: none; }
.list-content { padding-bottom: 110px; }
.list-heading { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 76px; padding-bottom: 24px; border-bottom: 2px solid var(--ink); }
.list-page-body .list-heading { margin-top: 92px; }
.list-heading h2 { margin: 7px 0 0; font-size: 33px; }
.list-result-count { color: #777; font: 16px var(--number); letter-spacing: .08em; }
.list-window { min-height: 240px; }
.list-window .wp_article_list { counter-reset: news-item; margin: 0 !important; padding: 0 !important; list-style: none; }
.list-window .wp_article_list li,
.list-window .wp_article_list .list_item {
  counter-increment: news-item;
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0,1fr) 150px;
  gap: 30px;
  align-items: center;
  min-height: 118px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  line-height: 1.5;
  list-style: none;
}
.list-window .wp_article_list .fields { float: none !important; width: auto !important; margin: 0 !important; padding: 0 !important; }
.list-window .wp_article_list .pr_fields { min-width: 0; }
.list-window .wp_article_list .ex_fields { justify-self: end; white-space: nowrap; }
.list-window .wp_article_list li::before,
.list-window .wp_article_list .list_item::before { content: counter(news-item,decimal-leading-zero); color: var(--blue); font-family: var(--number); font-size: 38px; line-height: 1; }
.list-window .Article_Index { display: none !important; }
.list-window .Article_Title { min-width: 0; float: none !important; }
.list-window .Article_Title a { display: -webkit-box; overflow: hidden; color: var(--ink); font-size: 20px; font-weight: 600; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; transition: color .25s ease; }
.list-window li:hover .Article_Title a { color: var(--blue); }
.list-window .Article_PublishDate { justify-self: end; color: #777; font-family: var(--number); font-size: 16px; letter-spacing: .05em; }
.list-window .Article_Summary,
.list-window .Article_Intro { color: var(--muted); font-size: 14px; }

/* News channel navigation follows the finalized news-list design. */
.news-category-bar .category-links a,
.news-category-bar .category-links .wp_column a {
  display: flex !important;
  min-height: 96px;
  padding: 0 12px !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.news-category-bar .category-number,
.news-category-bar .category-links a > em { display: none !important; }
.news-category-bar .category-links a > span,
.news-category-bar .category-links .wp_column a .column-name {
  align-self: auto;
  padding: 0 !important;
  font-weight: 400;
}

/* Featured college news */
.news-pinned-window { margin-top: 76px; }
.news-pinned-window #wp_paging_w17 { display: none !important; }
.news-pinned-list:empty { display: none; }
.news-pinned {
  display: grid;
  grid-template-columns: minmax(0,1.42fr) minmax(350px,.78fr);
  height: 380px;
  min-height: 0;
  margin: 0;
  background: var(--blue);
  color: #fff;
}
.news-pinned-media { position: relative; display: block; height: 380px; overflow: hidden; background: #dfe3ec; }
.news-pinned-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,transparent 65%,rgba(6,57,239,.12)); }
.news-pinned-media img { display: block; width: 100% !important; height: 100% !important; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.news-pinned:hover .news-pinned-media img { transform: scale(1.025); }
.news-pinned-copy { position: relative; display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 36px clamp(38px,4.2vw,70px); }
.news-pinned-copy::before { content: "+"; position: absolute; top: 27px; right: 30px; color: rgba(255,255,255,.65); font-size: 26px; font-weight: 200; }
.news-pinned-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; color: rgba(255,255,255,.7); font-size: 14px; }
.news-pinned-meta span { padding: 5px 9px; border: 1px solid rgba(255,255,255,.45); }
.news-pinned-meta time { font-family: var(--number); letter-spacing: .05em; }
.news-pinned h2 { display: -webkit-box; margin: 0; overflow: hidden; font-size: clamp(27px,2.45vw,39px); line-height: 1.28; letter-spacing: -.025em; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.news-pinned h2 a { color: inherit; }
.news-pinned p { display: -webkit-box; max-width: 500px; margin: 18px 0 0; overflow: hidden; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.85; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.news-pinned p:empty { display: none; }
.news-pinned-more { display: inline-flex; gap: 18px; align-items: center; align-self: flex-start; margin-top: 24px; color: #fff; font-size: 15px; }
.news-pinned-more i { width: 44px; height: 1px; background: currentColor; transition: width .4s ease; }
.news-pinned-more:hover i { width: 64px; }

/* General news rows: date + channel/title/summary + thumbnail */
.list-window .news-list-results { margin: 0; padding: 0; list-style: none; }
.list-window .news-list-item {
  display: grid;
  grid-template-columns: 116px minmax(0,1fr) 190px;
  gap: clamp(28px,4vw,70px);
  align-items: center;
  min-height: 170px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.list-window .news-list-date { color: var(--blue); font-family: var(--number); }
.list-window .news-list-date b { display: block; font-size: 56px; font-weight: 400; line-height: .88; }
.list-window .news-list-date span { display: block; margin-top: 9px; color: #777; font-size: 17px; letter-spacing: .08em; }
.list-window .news-list-copy { min-width: 0; padding: 26px 0; }
.list-window .news-list-tag { display: block; margin-bottom: 11px; color: var(--blue); font-size: 14px; }
.list-window .news-list-copy h3 { display: -webkit-box; margin: 0; overflow: hidden; font-size: 20px; font-weight: 600; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.list-window .news-list-copy h3 a { color: inherit; transition: color .35s ease; }
.list-window .news-list-item:hover .news-list-copy h3 a { color: var(--blue); }
.list-window .news-list-copy p { display: -webkit-box; margin: 12px 0 0; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.list-window .news-list-copy p:empty { display: none; }
.list-window .news-list-thumb { position: relative; display: block; width: 190px; height: 112px; overflow: hidden; background: var(--soft); }
.list-window .news-list-thumb::after { content: "↗"; position: absolute; right: 0; bottom: 0; display: grid; width: 34px; height: 34px; place-items: center; background: var(--blue); color: #fff; font-size: 15px; transform: translate(100%,100%); transition: transform .4s cubic-bezier(.2,.75,.25,1); }
.list-window .news-list-item:hover .news-list-thumb::after { transform: translate(0,0); }
.list-window .news-list-thumb img { display: block; width: 100% !important; height: 100% !important; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.list-window .news-list-item:hover .news-list-thumb img { transform: scale(1.045); }
#wp_paging_w16 { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); }
#wp_paging_w16 .wp_paging {
  display: grid !important;
  grid-template-columns: minmax(190px,1fr) auto minmax(235px,1fr);
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #777;
  font-size: 14px;
  list-style: none;
}
#wp_paging_w16 .wp_paging::before,
#wp_paging_w16 .wp_paging::after { display: none !important; content: none !important; }
#wp_paging_w16 .wp_paging > li {
  float: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  list-style: none;
}
#wp_paging_w16 .pages_count { display: flex; gap: 8px; justify-self: start; white-space: nowrap; }
#wp_paging_w16 em { color: var(--blue); font-family: var(--number); font-size: 16px; font-style: normal; }
#wp_paging_w16 .page_nav { display: flex; gap: 7px; justify-self: center; }
#wp_paging_w16 .page_nav > a,
#wp_paging_w16 .pagingJump {
  display: inline-flex;
  min-width: 62px;
  min-height: 42px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  color: #555;
  background: #fff;
  border: 1px solid var(--line);
  line-height: 1.2;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
#wp_paging_w16 .page_nav > a:hover,
#wp_paging_w16 .pagingJump:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
#wp_paging_w16 .page_nav > a[href^="javascript:void(0)"] { color: #aaa; background: var(--soft); pointer-events: none; }
#wp_paging_w16 .page_jump { display: flex; gap: 8px; align-items: center; justify-self: end; white-space: nowrap; }
#wp_paging_w16 .page_jump .pages { padding-right: 2px; }
#wp_paging_w16 input.pageNum {
  width: 46px;
  height: 42px;
  padding: 0 5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  outline: none;
  text-align: center;
}
#wp_paging_w16 input.pageNum:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(6,57,239,.1); }
#wp_paging_w16 .curr_page { display: inline; min-width: 0; height: auto; padding: 0; color: var(--blue); background: transparent; border: 0; }

/* Article */
.article-head { position: relative; border-bottom: 1px solid var(--line); }
.article-head::after { content: ""; position: absolute; right: 0; bottom: -1px; width: 22%; height: 3px; background: var(--blue); }
.article-head-inner { position: relative; padding-top: 48px; padding-bottom: 50px; }
.article-breadcrumb { margin-bottom: 26px; color: #777; }
.article-head-copy { padding-right: 180px; }
.article-kicker { display: block; margin-bottom: 11px; }
.article-head h1 { max-width: 1030px; margin: 0; font-size: clamp(36px,4vw,58px); font-weight: 650; line-height: 1.2; letter-spacing: -.045em; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; margin-top: 29px; color: #777; font-size: 14px; }
.article-meta span { position: relative; }
.article-meta span + span::before { content: ""; position: absolute; top: 50%; left: -16px; width: 3px; height: 3px; background: #aaa; }
.article-index { position: absolute; right: 0; bottom: 48px; display: flex; flex-direction: column; align-items: flex-end; color: var(--blue); font-family: var(--number); }
.article-index b { color: rgba(6,57,239,.15); font-size: 92px; font-weight: 400; line-height: .82; }
.article-index i { width: 82px; height: 1px; margin: 15px 0 10px; background: var(--blue); }
.article-index span { font-size: 15px; letter-spacing: .14em; }
.article-layout { display: grid; grid-template-columns: minmax(0,2fr) minmax(270px,.72fr); gap: clamp(54px,7vw,108px); align-items: start; padding-top: 68px; padding-bottom: 110px; }
.article-main { min-width: 0; }
.article-lead { margin: 0 0 34px; padding: 25px 30px 25px 34px; border-left: 4px solid var(--blue); background: var(--soft); color: #353535; font-size: 17px; font-weight: 500; line-height: 1.9; }
.article-lead:empty,
.article-cover:empty { display: none; }
.article-cover { margin: 0 0 42px; overflow: hidden; }
.article-cover img { width: 100% !important; max-width: 100% !important; height: auto !important; max-height: 620px; object-fit: cover; }
.article-copy,
.article-copy .wp_articlecontent,
.article-copy .wp_entry { max-width: 900px; margin-inline: auto; color: #292929; font-size: 17px; line-height: 2.05; overflow-wrap: anywhere; }
.article-copy p { margin: 0 0 26px; line-height: 2.05; text-indent: 2em; text-align: justify; }
.article-copy img,
.article-copy video,
.article-copy iframe,
.article-copy table { max-width: 100% !important; }
.article-copy img { width: auto !important; height: auto !important; margin: 18px auto; }
.article-copy table { display: block; overflow-x: auto; border-collapse: collapse; }
.article-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; min-height: 52px; margin-top: 58px; padding-top: 28px; border-top: 1px solid var(--line); }
.article-back { display: inline-flex; gap: 18px; align-items: center; color: var(--blue); font-size: 15px; }
.article-back i { width: 48px; height: 1px; background: currentColor; transition: width .35s ease; }
.article-back:hover i { width: 68px; }
.copy-link { margin-left: auto; padding: 9px 14px; color: #555; background: #fff; border: 1px solid var(--line); cursor: pointer; }
.copy-status { min-width: 70px; color: var(--blue); font-size: 14px; }
.article-sidebar-inner { position: sticky; top: 28px; }
.side-block { padding-top: 23px; border-top: 3px solid var(--ink); }
.side-block + .side-block { margin-top: 60px; }
.side-heading span { color: var(--blue); font-family: var(--number); font-size: 15px; letter-spacing: .17em; }
.side-heading h2 { margin: 7px 0 0; font-size: 27px; }
.channel-links { counter-reset: channel; margin-top: 25px; }
.channel-links a { position: relative; display: grid; grid-template-columns: 32px minmax(0,1fr) 20px; gap: 12px; align-items: center; min-height: 52px; padding-left: 12px; border-bottom: 1px solid var(--line); font-size: 15px; counter-increment: channel; }
.channel-links a::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 0; background: var(--blue); transition: width .3s ease; }
.channel-links a:hover { color: var(--blue); }
.channel-links a:hover::before { width: 3px; }
.channel-links small,
.channel-links i { font-family: var(--number); font-style: normal; }
.channel-links a small::before { content: counter(channel, decimal-leading-zero); color: var(--blue); font-family: var(--number); }
.channel-links a.selected,
.channel-links a[aria-current="page"] { color: var(--blue); }
.channel-links a.selected::before,
.channel-links a[aria-current="page"]::before { width: 3px; }
.related-list { counter-reset: related; margin: 24px 0 0; padding: 0; list-style: none; }
.related-list li { counter-increment: related; position: relative; display: grid; grid-template-columns: 28px minmax(0,1fr); gap: 5px 13px; padding: 18px 0 19px; border-bottom: 1px solid var(--line); }
.related-list li::before { content: counter(related,decimal-leading-zero); grid-row: 1/3; color: var(--blue); font-family: var(--number); font-size: 21px; }
.related-list li > a { display: -webkit-box; overflow: hidden; font-size: 15px; font-weight: 600; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.related-list li > span { grid-column: 2; color: #888; font-family: var(--number); font-size: 14px; }

/* Temporary entry */
.test-entry { min-height: 650px; background: linear-gradient(125deg,#073ef5,#0032e4 62%,#0758fb); color: #fff; }
.test-entry-inner { display: grid; grid-template-columns: 1fr .9fr; align-items: center; min-height: 650px; }
.test-entry h1 { max-width: 760px; margin: 12px 0 22px; font-size: clamp(48px,6vw,82px); line-height: 1.08; letter-spacing: -.05em; }
.test-entry p { max-width: 630px; color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.9; }
.test-entry a { display: inline-flex; gap: 20px; align-items: center; margin-top: 24px; padding: 15px 22px; color: var(--blue); background: #fff; font-weight: 600; }
.test-entry-note { display: inline-block; margin-top: 24px; padding: 15px 22px; color: var(--blue); background: #fff; font-weight: 600; }
.test-entry figure { height: 420px; margin: 0; overflow: hidden; }
.test-entry figure img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
.footer { color: #fff; background: linear-gradient(108deg,#063edf 0 25%,#080a0c 25%); }
.footer-inner { position: relative; display: grid; grid-template-columns: 28% 1fr 16%; gap: 40px; align-items: center; min-height: 210px; }
.footer-contact img { width: 260px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-contact p,
.footer nav { margin: 0; font-size: 14px; line-height: 1.7; }
.motto { display: flex; flex-direction: column; gap: 34px; text-align: center; }
.motto b { font-size: 23px; font-weight: 400; letter-spacing: 8px; }
.motto small { color: #999; font-size: 14px; }
.footer-right { display: grid; grid-template-columns: max-content 95px; gap: 36px; align-items: center; justify-content: end; }
.footer-right nav { display: flex; flex-direction: column; color: #bbb; }
.footer-right nav a:first-child { margin-bottom: 4px; color: #fff; }
.footer-media { text-align: center; }
.footer-media img { width: 88px; height: 88px; margin: 0 auto 10px; background: #fff; box-shadow: 0 0 0 4px #fff; }
.footer-media strong,
.footer-media small { display: block; white-space: nowrap; }
.footer-media small { margin-top: 2px; color: #aaa; }

@media (max-width: 1220px) {
  .brand { flex-basis: 360px; width: 360px; }
  .main-nav { gap: 14px; }
}

@media (max-width: 1000px) {
  :root { --shell: calc(100% - 48px); }
  .site-header { height: 78px; }
  .header-inner { width: 100%; padding: 12px 24px; align-items: center; }
  .brand { flex: 0 1 300px; width: 300px; }
  .menu { display: block; width: 36px; height: 32px; margin-left: auto; padding: 5px; border: 0; background: transparent; }
  .menu span { display: block; margin: 7px 0; border-top: 1px solid currentColor; }
  .header-right { position: fixed; z-index: 85; top: 78px; right: 0; bottom: 0; width: min(420px,100%); padding: 20px 24px 40px; overflow-y: auto; background: #fff; box-shadow: -18px 20px 45px rgba(0,0,0,.14); transform: translateX(105%); transition: transform .4s cubic-bezier(.22,1,.36,1); }
  body.nav-open { overflow: hidden; }
  body.nav-open .header-right { transform: translateX(0); }
  .utility { justify-content: flex-start; }
  .search-window { display: none; }
  .main-nav { display: block; white-space: normal; }
  .main-nav > a,
  .main-nav > .nav-item > a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-submenu { position: static; width: auto; margin: 0; padding: 0 0 10px 12px; visibility: visible; border: 0; box-shadow: none; opacity: 1; clip-path: none; transform: none; pointer-events: auto; }
  .nav-submenu::before { display: none; }
  .page-hero,
  .page-hero-inner { height: 220px; }
  .page-hero-inner { grid-template-columns: .9fr 1.1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 70px; }
  .article-sidebar-inner { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
  .side-block + .side-block { margin-top: 0; }
  #wp_paging_w16 .wp_paging { grid-template-columns: 1fr auto; row-gap: 18px; }
  #wp_paging_w16 .page_jump { grid-column: 1 / -1; justify-self: center; }
  .news-pinned { grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); }
  .list-window .news-list-item { grid-template-columns: 95px minmax(0,1fr) 170px; gap: 26px; }
  .list-window .news-list-thumb { width: 170px; height: 102px; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding-block: 34px; }
  .footer-right { display: none; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 32px); }
  .brand { width: min(300px,calc(100vw - 86px)); }
  .page-hero { height: auto; }
  .page-hero-inner { display: block; height: auto; padding-block: 0; }
  .page-hero-copy { min-height: 245px; padding: 34px 0; }
  .page-hero-media { height: 220px; }
  .page-watermark { display: none; }
  .category-bar { grid-template-columns: 1fr; padding: 20px 0; }
  .category-label { min-height: 42px; }
  .category-links ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); min-height: 0; }
  .category-links li { min-width: 0; }
  .category-links a,
  .category-links .wp_column a { grid-template-columns: 34px minmax(0,1fr); min-height: 70px; padding: 10px 8px; border-bottom: 1px solid var(--line); }
  .category-number { font-size: 16px; }
  .category-links a > span { font-size: 14px; }
  .category-links a > em { font-size: 11px; }
  .list-heading { margin-top: 52px; }
  .news-pinned-window { margin-top: 42px; }
  .news-pinned { display: block; height: auto; }
  .news-pinned-media { height: 248px; }
  .news-pinned-copy { min-height: 332px; padding: 42px 26px 36px; }
  .news-pinned h2 { font-size: 26px; }
  .news-pinned p { font-size: 14px; -webkit-line-clamp: 3; }
  .list-window .news-list-item { grid-template-columns: 62px minmax(0,1fr); gap: 16px; min-height: 0; padding: 25px 0; }
  .list-window .news-list-date { align-self: start; padding-top: 2px; }
  .list-window .news-list-date b { font-size: 43px; }
  .list-window .news-list-date span { margin-top: 6px; font-size: 15px; }
  .list-window .news-list-copy { padding: 0; }
  .list-window .news-list-copy h3 { font-size: 17px; -webkit-line-clamp: 3; }
  .list-window .news-list-copy p { -webkit-line-clamp: 2; }
  .list-window .news-list-thumb { grid-column: 2; width: 100%; height: 146px; margin-top: 2px; }
  .list-window .wp_article_list li,
  .list-window .wp_article_list .list_item { grid-template-columns: 52px minmax(0,1fr); gap: 14px; min-height: 104px; }
  .list-window .wp_article_list li::before,
  .list-window .wp_article_list .list_item::before { font-size: 29px; }
  .list-window .Article_Title a { font-size: 17px; }
  .list-window .wp_article_list .ex_fields { grid-column: 2; justify-self: start; }
  .list-window .Article_PublishDate { font-size: 14px; }
  .news-category-bar .category-links a,
  .news-category-bar .category-links .wp_column a { min-height: 64px; padding: 0 8px !important; }
  .list-result-count { font-size: 14px; }
  #wp_paging_w16 { margin-top: 38px; padding-top: 22px; }
  #wp_paging_w16 .wp_paging { grid-template-columns: 1fr; gap: 15px; }
  #wp_paging_w16 .pages_count,
  #wp_paging_w16 .page_nav,
  #wp_paging_w16 .page_jump { grid-column: auto; justify-self: center; }
  #wp_paging_w16 .page_nav { flex-wrap: wrap; justify-content: center; }
  #wp_paging_w16 .page_nav > a { min-width: 58px; min-height: 40px; padding-inline: 10px; font-size: 13px; }
  #wp_paging_w16 input.pageNum { height: 40px; }
  #wp_paging_w16 .pagingJump { min-height: 40px; }
  .article-head-inner { padding-top: 32px; padding-bottom: 34px; }
  .article-head-copy { padding-right: 0; }
  .article-index { display: none; }
  .article-head h1 { font-size: clamp(30px,9vw,43px); }
  .article-layout { gap: 58px; padding-top: 42px; padding-bottom: 76px; }
  .article-lead { padding: 20px 20px 20px 23px; font-size: 15px; }
  .article-copy,
  .article-copy .wp_articlecontent,
  .article-copy .wp_entry { font-size: 16px; line-height: 1.95; }
  .article-copy p { text-align: left; }
  .copy-link { margin-left: 0; }
  .article-sidebar-inner { grid-template-columns: 1fr; }
  .test-entry-inner { display: block; padding: 70px 0; }
  .test-entry figure { height: 250px; margin-top: 48px; }
  .footer { background: linear-gradient(180deg,#063edf 0 46%,#080a0c 46%); }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-contact img { margin-inline: auto; }
  .motto { gap: 18px; }
  .motto b { font-size: 20px; letter-spacing: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Section landing and faculty album templates */
.section-landing-hero .page-hero-copy,
.faculty-list-hero .page-hero-copy { background: var(--blue); }
.section-landing-content,
.faculty-list-page-body .list-content { padding-bottom: 112px; }
.section-album-window,
.faculty-album-window { margin-top: 28px; }
.section-album-window ul,
.faculty-album-window ul,
.section-album-window .wp_article_list,
.faculty-album-window .wp_article_list,
.section-album-window .news_list,
.faculty-album-window .news_list {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 42px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-album-window li,
.faculty-album-window li,
.section-album-window .list_item,
.faculty-album-window .list_item,
.section-album-window .news,
.faculty-album-window .news { min-width: 0; list-style: none; }
.section-album-window .Article_Image,
.faculty-album-window .Article_Image,
.section-album-window .news_imgs,
.faculty-album-window .news_imgs,
.section-album-window .news_img,
.faculty-album-window .news_img {
  position: relative;
  display: block;
  overflow: hidden;
  background: #edf0f4;
}
.section-album-window .Article_Image img,
.section-album-window .news_imgs img,
.section-album-window .news_img img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.faculty-album-window .Article_Image img,
.faculty-album-window .news_imgs img,
.faculty-album-window .news_img img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.section-album-window li:hover img,
.faculty-album-window li:hover img { transform: scale(1.035); }
.section-album-window .Article_Title,
.faculty-album-window .Article_Title,
.section-album-window .news_title,
.faculty-album-window .news_title {
  display: block;
  margin-top: 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}
.section-album-window .Article_Title a,
.faculty-album-window .Article_Title a,
.section-album-window .news_title a,
.faculty-album-window .news_title a { transition: color .25s ease; }
.section-album-window li:hover .Article_Title a,
.faculty-album-window li:hover .Article_Title a,
.section-album-window li:hover .news_title a,
.faculty-album-window li:hover .news_title a { color: var(--blue); }
.section-album-window .Article_Summary,
.faculty-album-window .Article_Summary,
.section-album-window .news_summary,
.faculty-album-window .news_summary,
.section-album-window .news_text,
.faculty-album-window .news_text {
  display: -webkit-box;
  margin-top: 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Faculty directory: articleAlbums outputs table > td > wp_listalbumn */
.faculty-list-content { padding-bottom: 0; }
.faculty-list-content .faculty-subnav {
  display: block;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}
.faculty-subnav .category-links,
.faculty-subnav .category-links > div,
.faculty-subnav .category-links > div > div,
.faculty-subnav .category-links ul { width: 100%; min-height: 88px; }
.faculty-subnav .category-links ul { display: flex; margin: 0; padding: 0; list-style: none; }
.faculty-subnav .category-links li { flex: 1 1 0; min-width: 0; list-style: none; }
.faculty-subnav .category-links a,
.faculty-subnav .category-links .wp_column a {
  grid-template-columns: 34px minmax(0,1fr);
  min-height: 88px;
  padding: 16px 20px !important;
  border: 0 !important;
}
.faculty-subnav .category-links a.selected::after,
.faculty-subnav .category-links li.selected > a::after,
.faculty-subnav .category-links a:hover::after { right: 12%; left: 12%; }

.faculty-directory { padding-top: 74px; padding-bottom: 112px; }
.faculty-directory-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}
.faculty-directory-heading > div > span { color: var(--blue); font: 16px var(--number); letter-spacing: .17em; }
.faculty-directory-heading h2 { margin: 7px 0 0; font-size: 34px; line-height: 1.2; }
.faculty-album-window { margin-top: 42px; }
.faculty-album-window #wp_news_w16,
.faculty-album-window .wp_article_list_table,
.faculty-album-window .wp_article_list_table > tbody { width: 100% !important; }
.faculty-album-window .wp_article_list_table {
  display: block !important;
  border: 0 !important;
  border-collapse: separate !important;
}
.faculty-album-window .wp_article_list_table > tbody {
  counter-reset: faculty-card;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 54px 24px;
  margin: 0;
  padding: 0;
}
.faculty-album-window .wp_article_list_table tr { display: contents !important; }
.faculty-album-window .wp_article_list_table td {
  counter-increment: faculty-card;
  display: block !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: top;
}
.faculty-album-window .wp_listalbumn,
.faculty-album-window .albumn_info { float: none !important; width: 100% !important; min-width: 0; height: auto !important; margin: 0 !important; padding: 0 !important; }
.faculty-album-window .albumn_info { position: relative; overflow: visible !important; }
.faculty-album-window .albumn_mark { display: none !important; }
.faculty-album-window .Article_MicroImage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--soft);
  float: none !important;
}
.faculty-album-window .Article_MicroImage > a { display: block; width: 100%; height: 100%; }
.faculty-album-window .Article_MicroImage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0 solid var(--blue);
  pointer-events: none;
  transition: border-width .38s ease;
}
.faculty-album-window .Article_MicroImage::after {
  content: counter(faculty-card,decimal-leading-zero);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font: 18px var(--number);
  pointer-events: none;
}
.faculty-album-window td:hover .Article_MicroImage::before { border-width: 4px; }
.faculty-album-window .Article_MicroImage img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: cover !important;
  object-position: center top;
  filter: saturate(1);
  transform: scale(1);
  transition: transform .75s cubic-bezier(.2,.7,.2,1),filter .5s ease;
}
.faculty-album-window td:hover .Article_MicroImage img { filter: saturate(.86); transform: scale(1.035); }
.faculty-album-window .Article_Title {
  position: relative;
  display: block !important;
  min-height: 74px;
  margin: 0 !important;
  padding: 20px 34px 20px 0 !important;
  border-bottom: 1px solid var(--line);
  float: none !important;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}
.faculty-album-window .Article_Title::after {
  content: "↗";
  position: absolute;
  right: 2px;
  bottom: 22px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  transition: transform .4s ease;
}
.faculty-album-window .Article_Title a { display: block; color: var(--ink); transition: color .35s ease; }
.faculty-album-window td:hover .Article_Title a { color: var(--blue); }
.faculty-album-window td:hover .Article_Title::after { transform: translate(3px,-3px); }

@media (max-width: 1050px) {
  .faculty-album-window .wp_article_list_table > tbody { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .faculty-subnav { overflow-x: auto; }
  .faculty-subnav .category-links ul { width: max-content; min-width: 100%; }
  .faculty-subnav .category-links li { flex: 0 0 190px; }
  .faculty-directory { padding-top: 58px; padding-bottom: 80px; }
  .faculty-album-window .wp_article_list_table > tbody { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 38px 16px; }
}
@media (max-width: 480px) {
  .faculty-album-window .wp_article_list_table > tbody { grid-template-columns: 1fr; }
}

/* Faculty detail: title + cover image + rich text only */
.faculty-detail-head { min-height: 320px; }
.faculty-detail-subtitle { margin: 24px 0 0; color: rgba(255,255,255,.74); font-size: 16px; letter-spacing: .18em; }
.faculty-detail-layout {
  display: grid;
  grid-template-columns: 320px minmax(0,1fr);
  gap: 72px;
  padding-top: 68px;
  padding-bottom: 112px;
}
.faculty-profile-card { min-width: 0; align-self: start; }
.faculty-profile-photo { position: relative; margin: 0; overflow: hidden; background: var(--soft); }
.faculty-profile-photo img { width: 100% !important; height: auto !important; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.faculty-profile-photo figcaption { position: absolute; right: 14px; bottom: 12px; color: #fff; font: 13px var(--number); letter-spacing: .14em; }
.faculty-profile-name { padding: 23px 0 25px; border-bottom: 2px solid var(--ink); }
.faculty-profile-name small { color: var(--blue); font: 15px var(--number); letter-spacing: .16em; }
.faculty-profile-name h2 { margin: 7px 0 0; font-size: 32px; line-height: 1.2; }
.faculty-profile-main { min-width: 0; max-width: 840px; }
.faculty-profile-copy,
.faculty-profile-copy .wp_articlecontent,
.faculty-profile-copy .wp_entry { color: #2d2d2d; font-size: 17px; line-height: 2; }
.faculty-profile-copy > h2,
.faculty-profile-copy .wp_articlecontent > h2,
.faculty-profile-copy .wp_entry > h2 {
  position: relative;
  margin: 0;
  padding: 36px 0 21px 84px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 25px;
  line-height: 1.35;
}
.faculty-profile-copy h2::before { content: "SECTION"; position: absolute; left: 0; top: 42px; color: var(--blue); font: 13px var(--number); letter-spacing: .12em; }
.faculty-profile-copy h2:first-child { padding-top: 0; border-top: 0; }
.faculty-profile-copy h2:first-child::before { top: 6px; }
.faculty-profile-copy p { margin: 0 0 18px 84px; text-align: justify; }
.faculty-profile-copy ul,
.faculty-profile-copy ol { margin: 0 0 32px 84px; padding-left: 22px; }
.faculty-profile-copy li { margin: 8px 0; }
.faculty-profile-copy img { max-width: calc(100% - 84px) !important; height: auto !important; margin: 16px 0 28px 84px; }
.faculty-profile-main .article-actions { margin-top: 42px; }

@media (max-width: 1000px) {
  .section-album-window ul,
  .faculty-album-window ul,
  .section-album-window .wp_article_list,
  .faculty-album-window .wp_article_list,
  .section-album-window .news_list,
  .faculty-album-window .news_list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .faculty-detail-layout { grid-template-columns: 280px minmax(0,1fr); gap: 48px; }
}

@media (max-width: 760px) {
  .section-landing-content,
  .faculty-list-page-body .list-content { padding-bottom: 76px; }
  .section-album-window ul,
  .faculty-album-window ul,
  .section-album-window .wp_article_list,
  .faculty-album-window .wp_article_list,
  .section-album-window .news_list,
  .faculty-album-window .news_list { grid-template-columns: 1fr; }
  .faculty-detail-layout { grid-template-columns: 1fr; gap: 46px; padding-top: 42px; padding-bottom: 76px; }
  .faculty-profile-card { width: 100%; max-width: 420px; }
  .faculty-profile-main { max-width: none; }
  .faculty-profile-copy > h2,
  .faculty-profile-copy .wp_articlecontent > h2,
  .faculty-profile-copy .wp_entry > h2 { padding-left: 64px; }
  .faculty-profile-copy p,
  .faculty-profile-copy ul,
  .faculty-profile-copy ol { margin-left: 64px; }
  .faculty-profile-copy img { max-width: calc(100% - 64px) !important; margin-left: 64px; }
}

@media (max-width: 430px) {
  .faculty-profile-copy > h2,
  .faculty-profile-copy .wp_articlecontent > h2,
  .faculty-profile-copy .wp_entry > h2 { padding-left: 0; padding-top: 38px; }
  .faculty-profile-copy h2::before,
  .faculty-profile-copy h2:first-child::before { top: 8px; }
  .faculty-profile-copy p,
  .faculty-profile-copy ul,
  .faculty-profile-copy ol { margin-left: 0; }
  .faculty-profile-copy p { text-align: left; }
  .faculty-profile-copy img { max-width: 100% !important; margin-left: 0; }
}

/* College overview landing page */
.section-hero-media > b { position: absolute; right: 18px; bottom: -34px; z-index: 1; color: rgba(255,255,255,.14); font: 210px/.8 var(--number); }
.section-category-bar {
  display: block;
  min-height: 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-category-bar .category-links,
.section-category-bar .category-links > div,
.section-category-bar .category-links > div > div,
.section-category-bar .category-links .wp_listcolumn { width: 100%; min-height: 96px; }
.section-category-bar .category-links ul { width: 100%; }
.section-category-bar .category-links li { border-left: 1px solid var(--line); }
.section-category-bar .category-links li:last-child { border-right: 1px solid var(--line); }
.section-category-bar .category-links a::after { height: 3px; }
.section-category-bar .category-links a.selected::after,
.section-category-bar .category-links li.selected > a::after { right: 16%; left: 16%; }
.section-category-bar .category-links a.selected,
.section-category-bar .category-links li.selected > a { color: var(--ink); }

.about-profile {
  display: grid;
  grid-template-areas: "head aside" "article aside";
  grid-template-columns: minmax(0,2.2fr) minmax(250px,.8fr);
  gap: 42px clamp(48px,6vw,86px);
  align-items: start;
  max-width: 1180px;
  padding-top: 86px;
  padding-bottom: 122px;
}
.about-profile-head {
  grid-area: head;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--ink);
}
.about-profile-head h2 { margin: 0; font-size: clamp(38px,4vw,56px); line-height: 1.08; letter-spacing: -.045em; }
/* Webplus 窗口把 h2/span 包进 "窗口内容"，用 display:contents 让它们仍作为 flex 的直接子项参与两端/基线对齐 */
.about-profile-head .wp-header-contents { display: contents; }
.about-profile-head span { order: 2; color: var(--blue); font: 17px var(--number); letter-spacing: .16em; }
.about-profile-head span b,
.about-profile-head span em { color: inherit; font: inherit; font-style: normal; }
.about-profile-article { grid-area: article; min-width: 0; }
.about-profile-richtext,
.about-profile-richtext * { font-family: inherit !important; }
.about-profile-richtext p { margin: 0 0 25px; color: #333; font-size: 16px !important; line-height: 1.95 !important; text-align: justify; text-indent: 2em; }
.about-profile-richtext h2,
.about-profile-richtext h3 { margin: 48px 0 20px; color: var(--ink); line-height: 1.4 !important; text-indent: 0; }
.about-profile-richtext h2 { font-size: 25px !important; }
.about-profile-richtext h3 { font-size: 21px !important; }
.about-profile-richtext img { width: auto !important; max-width: 100% !important; height: auto !important; margin: 32px auto 38px; }
.about-profile-richtext table { display: block; width: max-content; max-width: 100%; margin: 30px 0; overflow-x: auto; border-collapse: collapse; }
.about-profile-richtext th,
.about-profile-richtext td { min-width: 120px; padding: 14px 16px; border: 1px solid var(--line); font-size: 14px !important; line-height: 1.6 !important; text-align: left; }
.about-profile-richtext a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.about-profile-aside { position: sticky; top: 28px; grid-area: aside; min-width: 0; }
.about-profile-data-heading { display: flex; justify-content: space-between; align-items: end; padding: 20px 0 22px; border-top: 2px solid var(--ink); }
.about-profile-data-heading span { color: var(--blue); font: 14px var(--number); letter-spacing: .15em; }
.about-profile-data-heading h3 { margin: 0; font-size: 21px; }
.about-profile-data-list { border-top: 1px solid var(--line); }
.about-profile-data-item { display: grid; align-content: center; min-height: 124px; padding: 22px 6px; border-bottom: 1px solid var(--line); }
.about-profile-data-item strong { color: var(--blue); font: 400 clamp(40px,4.2vw,58px)/1 var(--number); overflow-wrap: anywhere; }
.about-profile-data-item strong small { margin-left: 5px; font-size: .35em; }
.about-profile-data-item > span { margin-top: 13px; color: #666; font-size: 14px; }

@media (max-width: 877px) {
  .about-profile { grid-template-areas: "head" "aside" "article"; grid-template-columns: 1fr; gap: 34px; max-width: none; padding-top: 72px; padding-bottom: 94px; }
  .about-profile-aside { position: static; }
  .about-profile-data-list { display: grid; grid-template-columns: repeat(2,1fr); }
  .about-profile-data-item { min-height: 118px; padding: 20px; border-right: 1px solid var(--line); }
  .about-profile-data-item:nth-child(even) { border-right: 0; }
}

@media (max-width: 760px) {
  .section-category-bar { width: 100%; padding: 0 16px; overflow-x: auto; }
  .section-category-bar .category-links ul { display: flex; width: max-content; min-width: 100%; grid-template-columns: none; }
  .section-category-bar .category-links li { flex: 0 0 190px; }
  .section-category-bar .category-links a,
  .section-category-bar .category-links .wp_column a { min-height: 82px; }
  .about-profile { padding-top: 58px; padding-bottom: 76px; }
  .about-profile-head { align-items: flex-start; gap: 18px; }
  .about-profile-head span { padding-top: 8px; font-size: 14px; white-space: nowrap; }
  .about-profile-richtext p { font-size: 15px !important; text-align: left; }
}

@media (max-width: 480px) {
  .about-profile-data-list { grid-template-columns: 1fr; }
  .about-profile-data-item { border-right: 0; }
  .about-profile-data-item strong { font-size: 44px; }
}

/* ===== WebPlus frag 容器嵌套适配：学者推荐（.faculty-card） ===== */
/* WebPlus 会把 content 逐层包进 <div frag>...</div>，破坏 .faculty-card 的直接子选择器
   与 .faculty-more 的两列 grid。用 display:contents 让 frag 中间层透明，
   使 .teacher / .teacher-mini / .faculty-intro-copy 重新成为 .faculty-card 的直接子级，
   原有选择器与布局全部恢复。 */
.faculty-card [frag] {
  display: contents;
}
.faculty-card .faculty-more {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ===== WebPlus frag 容器嵌套适配：作品与展演（.exhibition-gallery，flex 布局） ===== */
.exhibition-gallery [frag] {
  display: contents;
}
