@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable-dynamic-subset.css");

:root {
  --ink: #162536;
  --muted: #5b6f82;
  --line: #cbdce6;
  --surface: #f1f7fa;
  --surface-strong: #e3eef4;
  --navy: #2c5478;
  --blue: #1889c2;
  --cyan: #21ccd5;
  --green: #11c99d;
  --yellow: #ffc000;
  --orange: #d1542d;
  --blue-deep: #176b96;
  --cyan-deep: #0b7078;
  --green-deep: #08785f;
  --yellow-deep: #654b00;
  --orange-deep: #a43e20;
  --navy-soft: #dfeaf1;
  --tag-blue-bg: var(--blue-deep);
  --tag-blue-text: #fff;
  --tag-cyan-bg: var(--cyan);
  --tag-cyan-text: #073f45;
  --tag-green-bg: var(--green);
  --tag-green-text: #063e33;
  --tag-yellow-bg: var(--yellow);
  --tag-yellow-text: #4f3b00;
  --tag-orange-bg: var(--orange-deep);
  --tag-orange-text: #fff;
  --white: #fff;
  --shadow: 0 12px 32px rgba(44, 84, 120, 0.12);
  --radius: 16px;
  --page: min(1180px, calc(100vw - 48px));
  --text-caption-min: 0rem;
  --text-meta-min: 0rem;
  --text-tag-min: 0rem;
  --text-compact-min: 0rem;
  --tag-height-min: 0px;
  --tag-line-min: 0px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, summary { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.shell { width: var(--page); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(44, 84, 120, 0.13);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--navy); }
.brand-wordmark {
  position: relative;
  gap: 0;
  padding: 6px 14px 6px 10px;
  font-size: 1.32rem;
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1;
}
.brand-wordmark::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 3px;
  border-radius: 2px;
  background: var(--cyan);
}
.brand-dtp { color: #15364f; }
.brand-lab { color: var(--blue); }
.brand-accent {
  position: absolute;
  top: 5px;
  right: 2px;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--yellow);
}
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 8px 11px;
  border-radius: 10px;
  color: #526577;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue); background: var(--surface); }
.site-nav a[aria-current="page"] { color: white; background: var(--blue-deep); box-shadow: 0 7px 18px rgba(24, 137, 194, .22); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 10px; background: var(--surface); }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.page-hero, .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  border-bottom: 2px solid var(--cyan);
  background:
    radial-gradient(circle at 84% 10%, rgba(33, 204, 213, .24), transparent 25%),
    linear-gradient(115deg, #102a42 0%, #173d59 58%, #176b78 135%);
}
.page-hero::before, .home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(126, 231, 237, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 231, 237, .22) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent, black 38%, black);
}
.page-hero::after, .home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8vw;
  bottom: 18%;
  width: 54vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 204, 213, .85));
  box-shadow: 0 -72px 0 rgba(33, 204, 213, .16), 0 72px 0 rgba(17, 201, 157, .14);
  transform: rotate(-8deg);
}
.page-hero { padding: 50px 0 46px; }
.page-hero .shell, .home-hero .shell { position: relative; z-index: 1; }
.page-hero h1, .home-hero h1 { margin: 0; color: white; line-height: 1.05; letter-spacing: -0.045em; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.4rem, 5vw, 4.25rem); }
.home-hero { padding: 76px 0 68px; }
.home-hero .shell { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 46px; align-items: end; }
.home-hero h1 { max-width: 650px; font-size: clamp(2.9rem, 5.5vw, 4.8rem); word-break: keep-all; }
.hero-kicker { margin: 0 0 12px; color: #7ee7ed; font-size: .72rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.home-subtitle { margin: 18px 0 0; color: #a9e6ea; font-size: clamp(.92rem, 1.6vw, 1.08rem); font-weight: 750; letter-spacing: -.01em; }
.hero-research-topics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.hero-research-topic {
  min-height: 92px;
  padding: 14px 15px;
  border: 1px solid rgba(126, 231, 237, .32);
  border-radius: 12px;
  background: rgba(7, 28, 45, .34);
  backdrop-filter: blur(8px);
}
.hero-research-topic span { display: block; margin-bottom: 7px; color: #63dbe2; font-size: .67rem; font-weight: 900; letter-spacing: .1em; }
.hero-research-topic strong { display: block; color: white; font-size: .91rem; line-height: 1.38; word-break: keep-all; }

.content-section { padding: 68px 0; }
.content-section.tint { background: linear-gradient(180deg, #eef6fa, #f5fafc); }
.section-heading { margin-bottom: 26px; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(1.85rem, 3.6vw, 2.65rem); line-height: 1.1; letter-spacing: -0.035em; }
.section-kicker { margin: 0 0 7px; color: var(--blue-deep); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }

.chip-row, .keyword-row, .metric-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip, .keyword, .metric {
  display: inline-flex;
  align-items: center;
  min-height: max(28px, var(--tag-height-min));
  padding: 5px 10px;
  border-radius: 999px;
  font-size: max(.74rem, var(--text-tag-min));
  font-weight: 800;
  line-height: 1.2;
}
.chip { color: var(--navy); background: #e9f3f8; }
.chip.blue, .metric.indexing { color: white; background: var(--blue); }
.chip.green, .metric.citations { color: #064f41; background: #c9f7eb; }
.chip.yellow, .metric.rank { color: #594200; background: #fff0ad; }
.chip.orange, .metric.patent { color: white; background: var(--orange); }
.keyword { color: var(--navy); border: 1px solid #9fc6d9; background: white; }
.metric { color: var(--navy); background: #eaf2f7; }
.chip.category-industry { color: #fff; background: var(--green-deep); }
.chip.category-rnd { color: #fff; background: #1889c2; }
.chip.category-talent { color: #3d3100; background: #ffc000; }

.recruitment-section { padding-top: 58px; padding-bottom: 72px; }
.recruitment-card { border: 1px solid #91c9dc; border-radius: var(--radius); background: white; box-shadow: var(--shadow), inset 0 4px 0 var(--blue); overflow: hidden; }
.recruitment-card > summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 32px; cursor: pointer; list-style: none; }
.recruitment-card > summary::-webkit-details-marker { display: none; }
.details-toggle-icon { position: relative; flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%; background: var(--blue); }
.details-toggle-icon::before, .details-toggle-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; border-radius: 2px; background: white; transform: translate(-50%, -50%); transition: opacity .18s ease, transform .18s ease; }
.details-toggle-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.recruitment-card[open] .details-toggle-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg) scaleX(0); }
.recruitment-summary strong { display: block; color: var(--navy); font-size: 1.2rem; word-break: keep-all; }
.recruitment-content { padding: 0 32px 36px; border-top: 1px solid var(--line); }
.recruitment-intro { max-width: 820px; margin: 30px 0; font-size: 1.04rem; }
.recruitment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.recruitment-block { padding: 24px; border: 1px solid var(--line); border-top: 4px solid var(--block-accent, var(--blue)); border-radius: 16px; background: white; box-shadow: 0 8px 20px rgba(44,84,120,.07); }
.recruitment-block h3 { margin: 0 0 12px; color: var(--block-title, var(--navy)); font-size: 1.05rem; }
.recruitment-block ul { margin: 0; padding-left: 20px; }
.recruitment-block.accent-1 { --block-accent: var(--blue); --block-title: var(--blue-deep); }
.recruitment-block.accent-2 { --block-accent: var(--cyan); --block-title: var(--cyan-deep); }
.recruitment-block.accent-3 { --block-accent: var(--green); --block-title: var(--green-deep); }
.recruitment-block.accent-4 { --block-accent: var(--yellow); --block-title: var(--yellow-deep); }
.recruitment-block.accent-5 { --block-accent: var(--orange); --block-title: var(--orange-deep); }

.research-overview { margin: 0 0 22px; padding: 12px; border: 1px solid #b7d4e2; border-radius: var(--radius); background: white; box-shadow: 0 8px 22px rgba(44,84,120,.055); }
.research-overview:empty { display: none; }
.research-overview img { width: 100%; height: auto; max-height: 680px; object-fit: contain; border-radius: 10px; }
.research-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.research-card { padding: 24px; border: 1px solid var(--line); border-top: 3px solid var(--card-accent, var(--blue)); border-radius: var(--radius); background: white; box-shadow: 0 7px 18px rgba(44,84,120,.055); }
.research-card .index { color: var(--card-accent, var(--blue)); font-weight: 900; }
.research-card h3 { margin: 14px 0 12px; color: var(--navy); font-size: 1.35rem; }
.research-card p { margin: 0; color: var(--muted); }
.research-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 22px; border-radius: 14px; }
.research-card:nth-child(1) { --card-accent: var(--blue); }
.research-card:nth-child(2) { --card-accent: var(--cyan); }
.research-card:nth-child(3) { --card-accent: var(--green); }
.research-card:nth-child(4) { --card-accent: var(--orange); }

.year-group + .year-group { margin-top: 38px; }
.year-heading { display: flex; align-items: baseline; justify-content: space-between; margin: 0 0 12px; padding-bottom: 9px; border-bottom: 2px solid var(--navy); }
.year-heading h2 { margin: 0; color: var(--navy); font-size: 1.65rem; }
.year-heading span { color: var(--muted); font-size: 0.85rem; font-weight: 700; }
.news-project { --news-color: var(--tag-blue-bg); --news-text: var(--tag-blue-text); }
.news-publication { --news-color: var(--green-deep); --news-text: #fff; }
.news-member { --news-color: var(--tag-yellow-bg); --news-text: var(--tag-yellow-text); }
.news-award { --news-color: var(--orange); --news-text: #fff; }
.category-label { align-self: center; width: max-content; padding: 3px 7px; border-radius: 999px; background: var(--surface-strong); color: var(--navy); font-size: .65rem; font-weight: 850; line-height: 1.2; text-transform: uppercase; }

.people-section + .people-section { margin-top: 72px; }
.people-section > header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; border-bottom: 2px solid var(--navy); }
.people-section > header h2 { margin: 0 0 14px; color: var(--navy); font-size: 2rem; }
.people-section > header span { color: var(--blue); font-weight: 800; }
.people-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.person-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 28px rgba(44, 84, 120, 0.065); }
.person-photo { width: 100%; aspect-ratio: 1; background: linear-gradient(145deg, #eef4f7, #f9fbfc); border-bottom: 1px solid var(--line); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person-body { padding: 20px; }
.person-body h3 { margin: 0; color: var(--navy); font-size: 1.24rem; }
.person-body dl { margin: 16px 0 0; }
.person-body dl div { margin-top: 13px; }
.person-body dt { color: var(--muted); font-size: max(.7rem, var(--text-caption-min)); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.person-body dd { margin: 2px 0 0; font-size: 0.91rem; }
.professor-card { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.5fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.professor-card .person-photo { width: 100%; aspect-ratio: 619 / 779; align-self: start; border: 0; border-right: 1px solid var(--line); }
.professor-card .person-photo img { object-fit: contain; object-position: center top; }
.professor-card .person-body { padding: 28px; }
.career-section { margin-top: 24px; }
.career-title { margin: 0 0 12px; color: var(--muted); font-size: max(.7rem, var(--text-caption-min)); font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.career-list { display: grid; gap: 7px; }
.career-list div { display: grid; grid-template-columns: 130px 1fr; gap: 18px; }
.career-list time { color: var(--blue-deep); font-weight: 800; }

.toolbar { position: sticky; top: 70px; z-index: 50; display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.95); box-shadow: 0 7px 18px rgba(44,84,120,.07); backdrop-filter: blur(12px); }
.filter-button { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 72px; min-width: 72px; min-height: 38px; padding: 8px 12px; border: 1px solid transparent; border-radius: 999px; background: transparent; color: var(--muted); font-weight: 800; line-height: 1; cursor: pointer; }
.filter-button:hover, .filter-button:focus-visible { border-color: #a9d6e7; color: var(--blue); }
.filter-button.category-industry { color: #fff; background: var(--green-deep); }
.filter-button.category-rnd { color: #fff; background: #1889c2; }
.filter-button.category-talent { color: #3d3100; background: #ffc000; }
.filter-button.active { outline: 3px solid rgba(44,84,120,.25); outline-offset: 2px; box-shadow: 0 7px 16px rgba(44,84,120,.2); }
.filter-button.active.category-industry { color: #fff; background: var(--green-deep); }
.filter-button.active.category-rnd { color: #fff; background: #1889c2; }
.filter-button.active.category-talent { color: #3d3100; background: #ffc000; }

.project-section + .project-section { margin-top: 54px; }
.project-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 8px 22px rgba(44,84,120,.05); }
.project-card + .project-card { margin-top: 14px; }
.project-head { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: start; }
.project-head h3 { margin: 8px 0 0; color: var(--navy); font-size: clamp(1.25rem, 2.5vw, 1.62rem); line-height: 1.3; }
.project-meta-line { display: flex; flex-wrap: wrap; gap: 7px 18px; margin-top: 15px; color: #506679; font-size: max(.82rem, var(--text-meta-min)); }
.project-meta-part { min-width: 0; }
.project-meta-part svg { fill: none; stroke: var(--blue-deep); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.project-meta-part.meta-agency svg { stroke: var(--navy); }
.project-meta-part.meta-period svg { stroke: var(--green-deep); }
.project-meta-part.meta-keyword svg { stroke: var(--orange); }
.project-keywords { display: inline-flex; flex-wrap: wrap; gap: 5px; }
.project-keywords .keyword { padding-inline: 8px; color: var(--navy); border-color: #9fc6d9; font-size: max(.7rem, var(--text-tag-min)); }
.body-text > p { margin: 0; }
.body-text > p + p { margin-top: .9em; }
.project-description { margin: 16px 0 0; color: #42586b; }
.project-details-section { margin-top: 15px; }
.project-details-section h4 { margin: 0 0 9px; color: var(--navy); font-size: max(.82rem, var(--text-meta-min)); font-weight: 850; letter-spacing: .02em; }
.project-details { counter-reset: project-detail; display: grid; gap: 3px; margin: 0; padding: 0; list-style: none; }
.project-details li { counter-increment: project-detail; display: grid; grid-template-columns: 32px 1fr; gap: 12px; }
.project-details li::before { content: counter(project-detail, decimal-leading-zero); color: var(--blue-deep); font-weight: 900; }
.record-gallery { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; overflow: hidden; }
.record-image { flex: 0 0 auto; min-width: 0; margin: 0; }
.record-image img { width: 100%; height: 100%; padding: 0; object-fit: contain; object-position: left center; border: 0; border-radius: 8px; background: transparent; }
.record-gallery.image-count-1 { display: block; }
.record-gallery.image-count-1 .record-image { width: 100% !important; height: auto !important; max-height: 420px; }
.record-gallery.image-count-1 .record-image img { width: auto; max-width: 100%; height: auto; max-height: 420px; }
.project-details li { color: #4c6173; font-size: .88rem; line-height: 1.48; }

.publication-content { padding-top: 42px; }
.publication-legend { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; margin: 0 0 28px; padding: 10px 14px; border: 1px solid #a9cede; border-left: 3px solid var(--blue); border-radius: 12px; background: linear-gradient(90deg, #edf7fb, #f8fcfd); color: #435a6d; font-size: max(.76rem, var(--text-meta-min)); }
.publication-legend > span { display: inline-flex; align-items: center; gap: 4px; min-height: 20px; line-height: 1; }
.publication-legend sup { position: static; color: var(--navy); font-size: max(.76rem, var(--text-meta-min)); font-weight: 900; line-height: 1; }
.legend-highlight { color: var(--blue); font-weight: 800; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.publication-type-section + .publication-type-section { margin-top: 54px; }
.publication-section-heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; padding-bottom: 9px; border-bottom: 2px solid var(--navy); }
.publication-section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(1.7rem, 3.2vw, 2.35rem); letter-spacing: -.035em; }
.publication-section-heading span, .publication-year-heading span { color: var(--muted); font-size: .82rem; font-weight: 750; }
.publication-year + .publication-year { margin-top: 28px; }
.publication-year-heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.publication-year-heading h3 { margin: 0; color: var(--navy); font-size: 1.25rem; }
.publication-card { padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: 0 4px 13px rgba(44,84,120,.04); }
.publication-card + .publication-card { margin-top: 6px; }
.publication-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 12px; }
.publication-heading-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 9px; min-width: 0; }
.publication-tags { display: inline-flex; flex: 0 0 auto; flex-wrap: wrap; gap: 4px; }
.publication-tag { display: inline-flex; align-items: center; justify-content: center; min-height: 19px; padding: 2px 7px; border-radius: 999px; font-size: .61rem; font-weight: 850; line-height: 1; letter-spacing: .025em; text-align: center; text-transform: uppercase; }
.type-journal,
.type-conference { color: var(--navy); background: #dfeaf1; }
.type-patent { color: #fff; background: #3f6d87; }
.evaluation-scie { color: white; background: var(--navy); }
.evaluation-scie-q2 { color: white; background: var(--blue); }
.evaluation-scie-q1 { color: white; background: var(--green); }
.evaluation-scie-top10 { color: #463600; background: var(--yellow); }
.evaluation-scie-top5 { color: white; background: var(--orange); }
.evaluation-kci { color: var(--navy); background: #dfeaf1; }
.evaluation-esci { color: var(--cyan-deep); background: #cff4f5; }
.evaluation-award { color: var(--tag-yellow-text); background: var(--yellow); }
.patent-domestic { color: var(--navy); background: #dfeaf1; }
.patent-pct { color: white; background: var(--orange-deep); }
.patent-international { color: white; background: var(--navy); }
.publication-card h3, .publication-card h4 { flex: 1 1 360px; margin: 0; color: var(--navy); font-size: .98rem; line-height: 1.35; }
.publication-links { display: flex; gap: 5px; flex: 0 0 auto; }
.icon-link { min-width: 29px; height: 29px; padding: 0 6px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; color: var(--blue); font-size: .7rem; font-weight: 800; text-decoration: none; }
.publication-detail-row { margin-top: 4px; min-width: 0; }
.publication-row-icon { color: var(--blue-deep); }
.publication-row-icon svg { fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.publication-authors-row { margin-top: 3px; }
.authors { margin: 0; color: #526577; font-size: .81rem; line-height: 1.42; }
.author.lab-member { color: var(--blue); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.author-symbol { margin-left: 1px; color: var(--navy); font-size: .68rem; font-weight: 900; text-decoration: none; }
.publication-lower-row { display: flex; flex-wrap: wrap; gap: 4px 14px; margin-top: 4px; min-width: 0; }
.publication-meta-item { min-width: 0; }
.publication-venue { color: var(--muted); font-size: .78rem; line-height: 1.35; }
.publication-citation { color: var(--tag-green-text); font-size: .69rem; font-weight: 750; line-height: 1.3; }
.publication-card .keyword-row { gap: 4px; margin: 0; }
.publication-card .keyword { padding-inline: 6px; font-size: .62rem; }

.seminar-list { display: grid; gap: 7px; }
.seminar-card { padding: 14px 17px 15px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.seminar-title-row { display: flex; align-items: center; gap: 8px; }
.seminar-title-icon { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 0; color: var(--blue); }
.seminar-title-icon svg, .seminar-meta-item svg { fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.seminar-title { margin: 0; color: var(--navy); font-size: 1rem; font-weight: 800; line-height: 1.35; }
.seminar-meta-row { display: flex; flex-wrap: wrap; gap: 5px 11px; margin: 7px 0 0 26px; }
.seminar-meta-item { color: #52697b; font-size: max(.76rem, var(--text-meta-min)); font-weight: 760; }
.seminar-meta-item svg { color: var(--blue-deep); }
.seminar-card time { color: var(--blue-deep); font-weight: 850; }
.speaker { color: var(--navy); font-size: max(.76rem, var(--text-meta-min)); font-weight: 800; line-height: 1.25; }
.seminar-card .keyword-row { gap: 5px; margin: 0; }
.seminar-card .keyword { padding-inline: 6px; color: var(--cyan-deep); border: 1px solid #80dce0; background: white; font-size: max(.62rem, var(--text-tag-min)); line-height: 1; }
.seminar-summary { margin: 8px 0 0 26px; color: #4f6375; font-size: max(.86rem, var(--text-compact-min)); line-height: 1.55; }

.gallery-events { display: grid; grid-template-columns: minmax(0,1fr); gap: 22px; }
.gallery-event { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.gallery-event time { color: var(--blue); font-weight: 850; }
.gallery-event h2 { margin: 7px 0; color: var(--navy); font-size: 1.35rem; }
.gallery-event p { margin: 0; color: var(--muted); }
.gallery-event-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gallery-event.has-images { border-color: #8bc8da; box-shadow: 0 12px 32px rgba(44,84,120,.09); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 20px; }
.gallery-thumb { width: 100%; aspect-ratio: 16/9; margin: 0; padding: 0; border: 0; border-radius: 12px; background: transparent; overflow: hidden; cursor: zoom-in; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .22s ease; }
.gallery-thumb:hover img, .gallery-thumb:focus-visible img { transform: scale(1.035); }
.lightbox { width: min(1000px, calc(100vw - 40px)); max-height: calc(100vh - 40px); padding: 0; border: 0; border-radius: 18px; color: white; background: #071524; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.lightbox::backdrop { background: rgba(5,17,30,.82); backdrop-filter: blur(5px); }
.lightbox-inner { position: relative; display: grid; place-items: center; min-height: 60vh; padding: 56px 70px 70px; }
.lightbox img { max-height: 72vh; object-fit: contain; }
.lightbox-caption { margin: 16px 0 0; text-align: center; color: #d7e3ea; }
.lightbox-close, .lightbox-nav { position: absolute; border: 0; color: white; background: rgba(255,255,255,.12); cursor: pointer; }
.lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; }
.lightbox-nav { top: 50%; width: 44px; height: 54px; border-radius: 12px; transform: translateY(-50%); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

.empty-state { padding: 30px; border: 1px dashed #b7ccd8; border-radius: 16px; color: var(--muted); background: var(--surface); text-align: center; }
.data-error { padding: 18px; border-radius: 12px; color: #762d17; background: #fff0e9; }
.site-footer { padding: 58px 0 28px; color: #dfe9ef; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 38px; }
.footer-logo-panel { display: inline-flex; max-width: 290px; padding: 15px 18px; border-radius: 15px; background: #fff; box-shadow: 0 10px 24px rgba(7,21,36,.18); }
.footer-logo { width: 100%; height: auto; object-fit: contain; }
.site-footer h2 { margin: 0 0 10px; color: white; font-size: 0.85rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer p, .site-footer a { margin: 4px 0; color: #d7e3ea; font-size: .9rem; }
.site-footer a { display: block; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

@media (max-width: 960px) {
  .home-hero .shell { grid-template-columns: 1fr; gap: 30px; }
  .people-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --page: min(100% - 32px, 1180px); }
  .header-inner { min-height: 64px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 64px 0 auto; display: none; padding: 18px 16px 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(44,84,120,.12); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 13px 14px; }
  .page-hero { padding: 42px 0 38px; }
  .home-hero { padding: 44px 0 40px; }
  .home-hero .shell { gap: 22px; }
  .content-section { padding: 50px 0; }
  .recruitment-card > summary { padding: 22px; }
  .recruitment-content { padding: 0 22px 26px; }
  .recruitment-grid, .research-grid, .gallery-events { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .people-grid { grid-template-columns: 1fr; }
  .professor-card { grid-template-columns: 1fr; }
  .professor-card .person-photo { border-right: 0; border-bottom: 1px solid var(--line); }
  .toolbar {
    top: 64px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: visible;
  }
  .filter-button {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
  }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .home-hero h1 { font-size: clamp(2.45rem, 11.2vw, 3.45rem); }
  .hero-kicker { margin-bottom: 9px; font-size: .65rem; }
  .home-subtitle { margin-top: 14px; font-size: .86rem; }
  .hero-research-topics { grid-template-columns: 1fr; }
  .hero-research-topic { min-height: 0; padding: 10px 12px; }
  .hero-research-topic span { margin-bottom: 5px; }
  .hero-research-topic strong { font-size: .84rem; line-height: 1.32; }
  .project-card, .publication-card, .gallery-event { padding: 20px; }
  .project-head { grid-template-columns: 1fr; }
  .publication-card { padding: 13px 14px; }
  .publication-top { display: block; }
  .publication-links { margin-top: 8px; }
  .record-gallery { display: grid; grid-template-columns: 1fr; gap: 8px; overflow: visible; }
  .record-image,
  .record-gallery.image-count-1 .record-image { width: 100% !important; height: auto !important; max-height: none; }
  .record-image img,
  .record-gallery.image-count-1 .record-image img { width: 100%; height: auto; max-height: none; }
  .career-list div { grid-template-columns: 1fr; gap: 4px; }
  .footer-bottom { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Structural redesign v6: ASL research editorial + MSL timeline systems */
img {
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

.page-hero {
  --hero-image: url("assets/heroes/people-circuit-design.jpg");
  --hero-accent: #21ccd5;
  display: flex;
  align-items: flex-end;
  min-height: 330px;
  padding: 58px 0;
  border-bottom: 5px solid var(--hero-accent);
  background-color: #10273b;
  background-image:
    linear-gradient(90deg, rgba(6, 18, 31, .93) 0%, rgba(6, 18, 31, .72) 47%, rgba(6, 18, 31, .18) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}
.page-hero::before {
  z-index: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,.12) 8% calc(8% + 1px), transparent calc(8% + 1px) 100%),
    linear-gradient(0deg, rgba(255,255,255,.11) 0 1px, transparent 1px 100%);
  background-size: 100% 100%, 100% 48px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.page-hero::after {
  z-index: 0;
  right: auto;
  bottom: 0;
  left: max(24px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2));
  width: 156px;
  height: 5px;
  background: var(--hero-accent);
  box-shadow: none;
  transform: none;
}
.page-hero .shell { width: var(--page); }
.page-hero-copy { max-width: 680px; }
.page-hero-kicker {
  margin: 0 0 11px;
  color: var(--hero-accent);
  font-size: max(.72rem, var(--text-caption-min));
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.1rem);
  line-height: .98;
}
.page-hero-copy > p:last-child {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.84);
  font-size: .98rem;
  font-weight: 650;
  line-height: 1.6;
  word-break: keep-all;
}
.page-hero-people {
  --hero-image: url("assets/heroes/people-circuit-design.jpg");
  --hero-accent: #4ed8c2;
  background-position: center 44%;
}
.page-hero-projects {
  --hero-image: url("assets/heroes/projects-robot-arm.jpg");
  --hero-accent: #40b9ea;
  background-position: center 48%;
}
.page-hero-projects::before {
  background: linear-gradient(120deg, rgba(64,185,234,.16), transparent 48%);
  mask-image: none;
}
.page-hero-publications {
  --hero-image: url("assets/heroes/publications-book.jpg");
  --hero-accent: #ffc000;
  background-position: center 54%;
}
.page-hero-publications::before {
  background-image: repeating-linear-gradient(90deg, transparent 0 68px, rgba(255,192,0,.12) 68px 69px);
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}
.page-hero-seminars {
  --hero-image: url("assets/heroes/seminars-lecture.jpg");
  --hero-accent: #ef7653;
  background-position: center 42%;
}
.page-hero-seminars::before {
  background: linear-gradient(135deg, rgba(239,118,83,.18) 0 1px, transparent 1px 100%);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.page-hero-gallery {
  --hero-image: url("assets/heroes/gallery-cameras.jpg");
  --hero-accent: #9de473;
  background-position: center 58%;
}
.page-hero-gallery::before {
  background: radial-gradient(circle at 17% 70%, rgba(157,228,115,.26) 0 2px, transparent 3px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000, transparent 67%);
}

.home-hero {
  min-height: 560px;
  padding: 80px 0 72px;
  border-bottom: 5px solid #21ccd5;
  background-color: #0d2235;
  background-image:
    linear-gradient(90deg, rgba(5,17,29,.96) 0%, rgba(5,17,29,.78) 53%, rgba(5,17,29,.34) 100%),
    url("assets/heroes/home-robot-arm.jpg");
  background-position: center;
  background-size: cover;
}
.home-hero::before {
  opacity: .45;
  background-image:
    linear-gradient(rgba(126,231,237,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,231,237,.2) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.home-hero::after {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 5px;
  background: #21ccd5;
  box-shadow: none;
  transform: none;
}
.home-hero .shell {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: end;
}
.home-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.4vw, 4.9rem);
  line-height: .98;
}
.hero-kicker { color: #7ee7ed; }
.home-subtitle { color: rgba(255,255,255,.78); }
.hero-research-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(126,231,237,.42);
}
.hero-research-topic {
  display: grid;
  grid-template-columns: 40px minmax(0,1fr);
  align-items: center;
  min-height: 0;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid rgba(126,231,237,.28);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}
.hero-research-topic span {
  margin: 0;
  color: #63dbe2;
  font-size: max(.65rem, var(--text-caption-min));
  letter-spacing: .08em;
}
.hero-research-topic strong {
  font-size: .92rem;
  line-height: 1.28;
}

.recruitment-section { padding: 46px 0 58px; }
.recruitment-card {
  border: 0;
  border-top: 2px solid #122c42;
  border-bottom: 1px solid #98aeba;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.recruitment-card > summary {
  min-height: 90px;
  padding: 20px 0;
}
.recruitment-summary small {
  display: block;
  margin-bottom: 4px;
  color: #1989c2;
  font-size: max(.66rem, var(--text-caption-min));
  font-weight: 900;
  letter-spacing: .15em;
}
.recruitment-summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.26rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.025em;
}
.details-toggle-icon {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  border: 1px solid #1d6d98;
  border-radius: 0;
  background: transparent;
}
.details-toggle-icon::before,
.details-toggle-icon::after { background: #1d6d98; }
.recruitment-content {
  padding: 0;
  border-top: 1px solid #b8c8d1;
}
.recruitment-editorial {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.5fr);
  gap: clamp(34px, 6vw, 84px);
  padding: 42px 0 14px;
}
.recruitment-intro-panel { align-self: start; }
.recruitment-eyebrow {
  margin: 0 0 14px;
  color: #677b8a;
  font-size: max(.68rem, var(--text-caption-min));
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.recruitment-intro {
  max-width: none;
  margin: 0;
  color: #223a4e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.7;
}
.recruitment-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-bottom: 3px;
  border-bottom: 1px solid #1989c2;
  color: #176b96;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}
.recruitment-list { border-top: 1px solid #879eac; }
.recruitment-row {
  display: grid;
  grid-template-columns: 44px 126px minmax(0,1fr);
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #d3dfe5;
}
.recruitment-number {
  color: #1989c2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .8rem;
  font-weight: 700;
}
.recruitment-row h3 {
  margin: 0;
  color: #17354c;
  font-size: .88rem;
  line-height: 1.55;
}
.recruitment-row ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  color: #4d6272;
  font-size: .84rem;
  line-height: 1.55;
  list-style: none;
}
.recruitment-row li { position: relative; padding-left: 12px; }
.recruitment-row li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1989c2;
}

#research.content-section {
  padding-top: 74px;
  background: #f4f7f8;
}
.research-overview {
  margin: 0 0 70px;
  padding: 14px;
  border: 1px solid #c9dce5;
  border-radius: 12px;
  background: #edf4f7;
  box-shadow: none;
  overflow: hidden;
}
.research-overview img {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 0;
  object-fit: contain;
}
.research-thrusts {
  border-top: 2px solid #15364f;
}
.research-thrust {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 18px 24px;
  padding: 62px 0 68px;
  border-bottom: 1px solid #9db0bb;
}
.research-thrust-heading { grid-column: 1 / -1; }
.research-thrust-label {
  margin: 0 0 10px;
  color: #1989c2;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.research-thrust h3 {
  max-width: 960px;
  margin: 0;
  color: #143148;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.03;
}
.research-thrust-subtitle {
  margin: 12px 0 0;
  color: #607482;
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: .015em;
}
.research-thrust-visual {
  grid-column: 1 / 7;
  align-self: start;
  margin: 8px 0 0;
  background: #122a3c;
}
.research-thrust-visual img {
  width: 100%;
  height: auto;
  min-height: 260px;
  max-height: 440px;
  object-fit: cover;
}
.research-thrust-copy {
  grid-column: 8 / -1;
  align-self: start;
  padding-top: 4px;
}
.research-thrust-copy > p {
  margin: 0;
  color: #324a5c;
  font-size: .97rem;
  line-height: 1.82;
  word-break: keep-all;
}
.research-focus {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid #aebec7;
  list-style: none;
}
.research-focus li {
  padding: 10px 0;
  border-bottom: 1px solid #d4dfe4;
  color: #176b96;
  font-size: max(.75rem, var(--text-compact-min));
  font-weight: 850;
  letter-spacing: .015em;
}
.research-thrust:nth-child(even) .research-thrust-visual { grid-column: 7 / -1; }
.research-thrust:nth-child(even) .research-thrust-copy { grid-column: 1 / 6; grid-row: 2; }

.news-timeline { border-top: 2px solid #15364f; }
.news-timeline-year {
  display: grid;
  grid-template-columns: 116px minmax(0,1fr);
}
.news-year-rail {
  position: relative;
  padding-top: 23px;
  border-right: 1px solid #8ea5b2;
}
.news-year-rail h3 {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  margin: 0;
  padding: 4px 12px;
  border-radius: 999px;
  color: white;
  background: #15364f;
  font-size: .84rem;
  letter-spacing: .02em;
}
.news-year-rail span {
  display: block;
  margin: 7px 0 0 12px;
  color: #718491;
  font-size: .66rem;
  font-weight: 800;
}
.news-timeline-list { min-width: 0; }
.news-timeline-item {
  --news-color: #1989c2;
  position: relative;
  display: grid;
  grid-template-columns: 142px minmax(0,1fr);
  gap: 22px;
  min-width: 0;
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid #d3dee4;
}
.news-marker {
  position: absolute;
  top: 23px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--news-color);
  box-shadow: 0 0 0 1px var(--news-color);
}
.news-timeline-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.news-timeline-meta time {
  flex: 0 0 auto;
  color: #536a7a;
  font-size: .75rem;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
}
.news-timeline .category-label {
  min-height: 20px;
  padding: 3px 7px;
  color: #fff;
  background: var(--news-color);
  font-size: .58rem;
  line-height: 1;
}
.news-timeline-copy { min-width: 0; }
.news-timeline-copy > p {
  margin: 0;
  color: #243b4d;
  font-size: .88rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.news-project { --news-color: #1d6d98; }
.news-publication { --news-color: #08785f; }
.news-member { --news-color: #9b7600; }
.news-award { --news-color: #c54a26; }
.publication-content { padding-top: 44px; }
.publication-controls {
  display: block;
  margin-bottom: 18px;
}
.publication-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(560px, 100%);
}
.publication-search svg {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #577080;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.publication-search input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 42px;
  border: 1px solid #adc2ce;
  border-radius: 0;
  color: #20394c;
  background: #fff;
  font: inherit;
  font-size: .84rem;
  outline: 0;
}
.publication-search input:focus {
  border-color: #1989c2;
  box-shadow: inset 0 -2px #1989c2;
}
.publication-legend {
  gap: 10px 25px;
  margin-bottom: 30px;
  padding: 9px 0;
  border: 0;
  border-top: 1px solid #b5c6cf;
  border-bottom: 1px solid #b5c6cf;
  border-radius: 0;
  background: transparent;
}
.publication-legend > span {
  align-items: center;
  min-height: 22px;
  line-height: 22px;
}
.publication-legend sup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: static;
  height: 18px;
  line-height: 18px;
  vertical-align: middle;
}
.publication-tag {
  min-height: 19px;
  padding: 3px 7px;
  line-height: 13px;
  vertical-align: middle;
}
.publication-tags {
  align-items: center;
  min-height: 22px;
}
.publication-links { align-items: center; }
.icon-link {
  min-width: 30px;
  height: 28px;
  border-radius: 0;
}
.author {
  display: inline;
  line-height: inherit;
}
.author-symbol {
  display: inline-block;
  position: relative;
  top: -.18em;
  margin-left: 1px;
  font-size: .68em;
  line-height: 1;
  vertical-align: baseline;
}
.publication-meta-item {
  min-width: 0;
}
.publication-venue {
  min-width: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.publication-keywords-item .keyword-row { gap: 5px; }

/* Publication cards view */
.publication-cards-view .publication-type-section + .publication-type-section { margin-top: 54px; }
.publication-cards-view .publication-card {
  padding: 13px 15px;
  border-radius: 6px;
  box-shadow: none;
}
.publication-cards-view .publication-detail-row {
  margin-top: 7px;
}
.publication-cards-view .publication-detail-row .authors {
  min-width: 0;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.publication-cards-view .publication-lower-row {
  gap: 10px 24px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #edf1f3;
}
.publication-cards-view .publication-venue-item { flex: 1 1 460px; }
.publication-cards-view .publication-keywords-item { flex: 0 1 auto; }

.record-gallery {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-top: 22px;
  overflow: visible;
}
.record-image {
  flex: var(--media-ratio, 1) 1 0;
  min-width: min(230px, 100%);
  max-width: 100%;
  margin: 0;
}
.record-image img {
  width: 100%;
  height: auto;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.record-gallery.image-count-1 {
  display: flex;
  justify-content: center;
}
.record-gallery.image-count-1 .record-image {
  flex: 0 1 100%;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: none;
}
.record-gallery.image-count-1 .record-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
}

.seminar-list { gap: 8px; }
.seminar-card {
  padding: 15px 18px 16px;
  border-radius: 6px;
}
.seminar-title-row {
  display: grid;
  grid-template-columns: 18px minmax(0,1fr);
  align-items: center;
  gap: 9px;
}
.seminar-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0;
  line-height: 0;
}
.seminar-title { line-height: 1.45; }
.seminar-meta-row {
  display: flex;
  gap: 8px 22px;
  margin: 9px 0 0 27px;
}
.seminar-meta-item {
  line-height: 1.35;
}
.seminar-keywords .keyword-row {
  display: inline-flex;
  gap: 5px;
  margin: 0;
}
.seminar-card .keyword {
  padding-inline: 6px;
}
.speaker { line-height: 1.35; }
.seminar-summary { margin-left: 27px; }

.gallery-event { border-radius: 6px; }
.gallery-thumb {
  position: relative;
  border-radius: 6px;
  contain: paint;
  outline: 1px solid rgba(21,54,79,.14);
  outline-offset: -1px;
}
.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color .18s ease, background-color .18s ease;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: filter .18s ease;
  backface-visibility: hidden;
}
.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: none;
  filter: contrast(1.025) saturate(1.03);
}
.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after {
  border-color: #21a4cf;
  background: rgba(24,137,194,.035);
}

@media (max-width: 960px) {
  .home-hero { min-height: 0; }
  .home-hero .shell { grid-template-columns: 1fr; gap: 46px; }
  .hero-research-topics { max-width: 680px; }
  .research-thrust-visual { grid-column: 1 / 8; }
  .research-thrust-copy { grid-column: 8 / -1; }
  .research-thrust:nth-child(even) .research-thrust-visual { grid-column: 6 / -1; }
  .research-thrust:nth-child(even) .research-thrust-copy { grid-column: 1 / 6; }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: 270px;
    padding: 44px 0;
    background-image:
      linear-gradient(90deg, rgba(6,18,31,.93), rgba(6,18,31,.52)),
      var(--hero-image);
  }
  .page-hero h1 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .page-hero-copy > p:last-child { font-size: .87rem; }
  .home-hero { padding: 56px 0 50px; }
  .home-hero h1 { font-size: clamp(2.7rem, 11vw, 4rem); }
  .recruitment-card > summary { padding: 19px 0; }
  .recruitment-content { padding: 0; }
  .recruitment-editorial { grid-template-columns: 1fr; gap: 36px; padding-top: 32px; }
  .recruitment-row { grid-template-columns: 38px 112px minmax(0,1fr); }
  .research-overview { margin-bottom: 48px; }
  .research-thrust { display: block; padding: 48px 0 52px; }
  .research-thrust-visual { margin-top: 28px; }
  .research-thrust-copy,
  .research-thrust:nth-child(even) .research-thrust-copy { margin-top: 28px; }
  .research-thrust-visual img { min-height: 0; max-height: none; }
  .news-timeline-item { grid-template-columns: 1fr; gap: 7px; padding-left: 22px; }
  .news-year-rail h3 { padding-inline: 9px; font-size: .72rem; }
  .news-year-rail span { margin-left: 9px; }
  .publication-cards-view .publication-venue-item { flex-basis: 100%; }
  .record-image { min-width: min(260px, 100%); }
  .seminar-meta-row { gap: 7px 18px; }
}

@media (max-width: 480px) {
  .home-hero .shell { gap: 34px; }
  .hero-research-topic { grid-template-columns: 34px minmax(0,1fr); padding-block: 10px; }
  .hero-research-topic strong { font-size: .82rem; }
  .recruitment-summary strong { font-size: 1.13rem; }
  .recruitment-row {
    grid-template-columns: 36px minmax(0,1fr);
    gap: 6px 10px;
  }
  .recruitment-row ul { grid-column: 2; }
  .research-thrust h3 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .research-thrust-copy > p { font-size: .9rem; word-break: normal; }
  .news-year-rail h3 {
    min-height: 27px;
    padding-inline: 7px;
    font-size: .65rem;
  }
  .news-timeline-item { padding: 14px 0 14px 18px; }
  .news-marker { top: 19px; }
  .news-timeline-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
.news-timeline-copy > p { font-size: .82rem; }
  .publication-legend { gap: 6px 18px; }
  .publication-links { margin-top: 4px; }
  .publication-cards-view .publication-card { padding: 13px 12px; }
  .publication-cards-view .publication-lower-row { align-items: flex-start; flex-direction: column; }
  .record-gallery { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .record-image,
  .record-gallery.image-count-1 .record-image { width: 100% !important; }
  .seminar-card { padding: 14px 13px; }
  .seminar-meta-row {
    align-items: flex-start;
    gap: 8px 16px;
    margin-left: 27px;
  }
  .seminar-keywords { width: 100%; }
  .seminar-summary { margin-left: 27px; font-size: max(.82rem, var(--text-compact-min)); }
  .gallery-grid { gap: 8px; }
  .gallery-thumb { border-radius: 4px; }
}

/* Refinement v8: single layouts, compact timelines, and text wordmark */
.header-inner { min-height: 68px; }

.page-hero {
  align-items: center;
  min-height: 258px;
  padding: 46px 0;
}
.page-hero-copy { max-width: 760px; }
.page-hero h1 {
  font-size: clamp(2.65rem, 4.5vw, 3.75rem);
  font-weight: 820;
  line-height: 1;
}

.home-hero {
  min-height: 520px;
  padding: 70px 0 64px;
}
.home-hero .shell {
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, .84fr);
  gap: clamp(44px, 7vw, 96px);
}
.home-hero h1 {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5.2vw, 4.65rem);
  font-weight: 820;
}
.hero-kicker {
  max-width: 660px;
  font-size: max(.69rem, var(--text-caption-min));
  line-height: 1.45;
}
.home-subtitle {
  max-width: 610px;
  font-size: clamp(.88rem, 1.35vw, 1.02rem);
  line-height: 1.5;
}
.hero-research-topic {
  grid-template-columns: 38px minmax(0,1fr);
  padding: 11px 2px;
}
.hero-research-topic strong {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .9rem;
}

.recruitment-section { padding: 44px 0 58px; }
.recruitment-card {
  overflow: hidden;
  border: 1px solid #7fb9d0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(24, 73, 106, .11);
}
.recruitment-card > summary {
  min-height: 92px;
  padding: 22px 28px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(33,204,213,.13) 1px, transparent 1px) 0 0 / 36px 100%,
    linear-gradient(112deg, #102d45 0%, #16577c 70%, #147f93 120%);
}
.recruitment-summary small {
  margin-bottom: 5px;
  color: #79e1e6;
}
.recruitment-summary strong {
  color: #fff;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.48rem);
  font-weight: 780;
  letter-spacing: -.025em;
}
.details-toggle-icon {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.details-toggle-icon::before,
.details-toggle-icon::after { background: #fff; }
.recruitment-content {
  padding: 0;
  border-top: 0;
  background: linear-gradient(180deg, #f4f9fb, #fff 42%);
}
.recruitment-editorial {
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.45fr);
  gap: clamp(30px, 5vw, 64px);
  padding: 30px 32px 34px;
}
.recruitment-intro-panel {
  padding: 22px;
  border-left: 4px solid #21a8cf;
  border-radius: 0 14px 14px 0;
  background: #e8f4f8;
}
.recruitment-eyebrow {
  margin-bottom: 10px;
  color: #1977a3;
}
.recruitment-intro {
  color: #213d52;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .98rem;
  font-weight: 620;
  line-height: 1.67;
}
.recruitment-mail {
  margin-top: 18px;
  color: #176b96;
}
.recruitment-list { border-top: 2px solid #1d536f; }
.recruitment-row {
  grid-template-columns: 38px minmax(0,1fr);
  gap: 5px 12px;
  padding: 14px 2px;
}
.recruitment-number {
  grid-row: 1 / span 2;
  padding-top: 2px;
  color: #1989c2;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: max(.69rem, var(--text-meta-min));
  font-weight: 900;
}
.recruitment-row h3 {
  font-size: .86rem;
  line-height: 1.45;
}
.recruitment-row ul {
  grid-column: 2;
  gap: 3px;
  font-size: max(.81rem, var(--text-compact-min));
  line-height: 1.48;
}

#research.content-section { padding-top: 64px; }
.research-overview {
  width: min(980px, 100%);
  margin: 0 auto 58px;
  padding: 14px;
  border: 1px solid #c9dce5;
  border-radius: 12px;
  background: #edf4f7;
}
.research-thrusts { border-top-color: #244d69; }
.research-thrust {
  gap: 18px 28px;
  padding: 48px 0 52px;
}
.research-thrust-label {
  margin-bottom: 8px;
  font-size: max(.65rem, var(--text-caption-min));
}
.research-thrust h3 {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 790;
  letter-spacing: -.045em;
}
.research-thrust-subtitle {
  margin-top: 9px;
  font-size: max(.83rem, var(--text-compact-min));
}
.research-thrust-visual {
  margin-top: 4px;
  padding: 10px;
  border: 1px solid #cbdbe3;
  background: #fff;
}
.research-thrust-visual img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}
.research-thrust-copy > p {
  font-size: .9rem;
  line-height: 1.72;
}
.research-focus { margin-top: 22px; }
.research-focus li { padding: 8px 0; }

.news-timeline {
  border-top: 0;
}
.news-timeline-year + .news-timeline-year { margin-top: 34px; }
.news-timeline-year {
  display: block;
}
.news-timeline-year-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 9px;
  border-bottom: 2px solid #2c5478;
}
.news-timeline-year-heading h3 {
  margin: 0;
  color: #2c5478;
  font-size: 1.68rem;
  line-height: 1;
}
.news-timeline-year-heading span {
  color: #687d8c;
  font-size: max(.69rem, var(--text-meta-min));
  font-weight: 800;
}
.news-timeline-item {
  grid-template-columns: 3px 76px 116px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 6px 0;
  border-bottom-color: #dbe4e9;
}
.news-marker {
  position: static;
  align-self: center;
  width: 3px;
  height: 23px;
  border: 0;
  border-radius: 2px;
  background: var(--news-color);
  box-shadow: none;
}
.news-timeline-item > time {
  color: #536a7a;
  font-size: max(.73rem, var(--text-meta-min));
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  white-space: nowrap;
}
.news-timeline .category-label {
  justify-self: start;
  min-height: max(23px, var(--tag-height-min));
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--news-color);
  box-shadow: 0 5px 12px color-mix(in srgb, var(--news-color) 25%, transparent);
  font-size: max(.62rem, var(--text-tag-min));
  font-weight: 700;
  line-height: max(15px, var(--tag-line-min));
  text-transform: lowercase;
}
.news-timeline-copy > p {
  font-size: max(.84rem, var(--text-compact-min));
  line-height: 1.45;
}
.news-project { --news-color: #1889c2; }
.news-publication { --news-color: #008d72; }
.news-member { --news-color: #ffc000; }
.news-member .category-label { color: #4d3b00; }
.news-award { --news-color: #d1542d; }

.publication-cards-view .publication-type-section + .publication-type-section { margin-top: 40px; }
.publication-cards-view .publication-section-heading {
  margin-bottom: 13px;
  padding-bottom: 7px;
}
.publication-cards-view .publication-section-heading h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}
.publication-cards-view .publication-year + .publication-year { margin-top: 20px; }
.publication-cards-view .publication-year-heading { margin-bottom: 7px; }
.publication-cards-view .publication-year-heading h3 { font-size: 1.08rem; }
.publication-cards-view .publication-card {
  padding: 9px 12px;
  border-radius: 5px;
}
.publication-cards-view .publication-card + .publication-card { margin-top: 4px; }
.publication-cards-view .publication-heading-line {
  align-items: center;
  gap: 5px 9px;
}
.publication-cards-view .publication-card h3,
.publication-cards-view .publication-card h4 {
  font-size: .91rem;
  line-height: 1.35;
}
.publication-cards-view .publication-tag {
  min-height: max(18px, var(--tag-height-min));
  padding: 2px 6px;
  font-size: max(.57rem, var(--text-tag-min));
  line-height: max(14px, var(--tag-line-min));
}
.publication-cards-view .publication-detail-row {
  margin-top: 5px;
}
.publication-cards-view .publication-detail-row .authors {
  font-size: max(.77rem, var(--text-compact-min));
  line-height: 1.48;
}
.publication-cards-view .publication-lower-row {
  gap: 6px 22px;
  margin-top: 7px;
  padding-top: 6px;
}
.publication-cards-view .publication-venue {
  font-size: max(.74rem, var(--text-meta-min));
  line-height: 1.42;
}
.publication-cards-view .publication-citation { font-size: max(.66rem, var(--text-meta-min)); }
.publication-cards-view .publication-card .keyword {
  font-size: max(.58rem, var(--text-tag-min));
}
.publication-cards-view .icon-link {
  min-width: 28px;
  height: 26px;
  border-radius: 5px;
}

.seminar-title-row {
  align-items: center;
}
.seminar-meta-row { gap: 8px 24px; }
.seminar-meta-item {
  line-height: 1.35;
}
.seminar-title-icon {
  align-self: center;
  margin: 0;
}
.seminar-card .keyword {
  padding-inline: 6px;
}

.gallery-thumb img {
  image-rendering: auto;
  transform: none;
  filter: none;
  transition: none;
}
.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: none;
  filter: none;
}

.footer-grid {
  grid-template-columns: 1fr .9fr 1.45fr;
  gap: 42px;
}
.site-footer p {
  line-height: 1.62;
  word-break: keep-all;
}
.site-footer p a {
  display: inline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 960px) {
  .home-hero .shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-research-topics { max-width: 720px; }
  .recruitment-editorial {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 62px; }
  .page-hero {
    min-height: 215px;
    padding: 38px 0;
  }
  .page-hero h1 { font-size: clamp(2.35rem, 11vw, 3.15rem); }
  .home-hero { padding: 54px 0 48px; }
  .home-hero h1 { font-size: clamp(2.55rem, 11vw, 3.8rem); }
  .home-subtitle { max-width: 360px; }
  .recruitment-card > summary { padding: 19px 20px; }
  .recruitment-editorial { padding: 24px 20px 28px; }
  .research-overview {
    width: 100%;
    margin-bottom: 42px;
  }
  .research-thrust { padding: 42px 0 46px; }
  .research-thrust-visual {
    margin-top: 24px;
    padding: 7px;
  }
  .research-thrust-copy,
  .research-thrust:nth-child(even) .research-thrust-copy { margin-top: 23px; }
  .news-timeline-year + .news-timeline-year { margin-top: 28px; }
  .news-timeline-item {
    grid-template-columns: 3px 64px minmax(0,1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 10px;
    padding: 7px 0;
  }
  .news-marker { grid-row: 1 / span 2; }
  .news-timeline-item > time {
    grid-column: 2;
    grid-row: 1;
    font-size: max(.68rem, var(--text-meta-min));
  }
  .news-timeline .category-label {
    grid-column: 3;
    grid-row: 1;
  }
  .news-timeline-copy {
    grid-column: 3;
    grid-row: 2;
  }
  .news-timeline-copy > p {
    font-size: max(.8rem, var(--text-compact-min));
    line-height: 1.42;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-kicker { max-width: 310px; }
  .hero-research-topic strong { font-size: .8rem; }
  .recruitment-summary strong { font-size: 1.05rem; }
  .recruitment-intro-panel { padding: 18px; }
  .recruitment-row {
    grid-template-columns: 34px minmax(0,1fr);
    gap: 5px 8px;
  }
  .research-thrust h3 { font-size: clamp(1.82rem, 9vw, 2.35rem); }
  .news-timeline-year-heading h3 { font-size: 1.45rem; }
  .publication-cards-view .publication-card { padding: 10px; }
  .publication-cards-view .publication-lower-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

/* Responsive type floor: preserve component scale while preventing undersized text on touch devices. */
@media (max-width: 1366px) and (any-pointer: coarse) {
  :root {
    --text-caption-min: .75rem;
    --text-meta-min: .78rem;
    --text-tag-min: .8rem;
    --text-compact-min: .84rem;
    --tag-height-min: 25px;
    --tag-line-min: 15.36px;
  }
}

/*
 * One baseline geometry for Projects, Publications, and Seminars.
 * Icons, text, and the first keyword label share the same typographic baseline.
 * Multiline text and wrapped keywords grow only below that first baseline.
 */
.record-meta-row {
  align-items: first baseline;
}
.record-meta-item.record-meta-item {
  --record-meta-icon-slot: 18px;
  --record-meta-icon-size: 16px;
  display: inline-flex;
  align-items: first baseline;
  column-gap: 8px;
  min-width: 0;
  max-width: 100%;
}
.record-meta-icon.record-meta-icon {
  display: inline-block;
  flex: 0 0 var(--record-meta-icon-slot);
  width: var(--record-meta-icon-slot);
  height: var(--record-meta-icon-size);
  margin: 0;
  line-height: 0;
  /* Older WebKit fallback: approximate the cap-centered shift from x-height. */
  transform: translateY(calc(
    (var(--record-meta-icon-size) - 1em) / 2
    + (1em - 1ex) / 4
    + .015em
  ));
}
@supports (height: 1cap) {
  .record-meta-icon.record-meta-icon {
    transform: translateY(calc(
      (var(--record-meta-icon-size) - 1em) / 2
      + (1em - 1cap) / 2
      + .015em
    ));
  }
}
.record-meta-icon.record-meta-icon > svg {
  display: block;
  width: var(--record-meta-icon-size);
  height: var(--record-meta-icon-size);
  margin-inline: auto;
}
.record-meta-control.record-meta-control {
  flex: 0 1 auto;
  min-width: 0;
}
.record-meta-text.record-meta-text {
  display: block;
  padding: 0;
}
.record-meta-keywords.record-meta-keywords {
  display: inline-flex;
  align-items: first baseline;
  min-width: 0;
  max-width: 100%;
}
.record-meta-keywords > .keyword-row,
.record-meta-keywords.project-keywords {
  align-items: first baseline;
  min-width: 0;
  max-width: 100%;
}
.record-meta-keywords .keyword {
  display: inline-flex;
  align-items: first baseline;
  height: auto;
  min-height: 0;
  padding-block: .34em;
  line-height: 1;
}
.record-meta-baseline-probe {
  display: inline-block;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  vertical-align: baseline;
}
.keyword-label {
  display: inline;
}
.record-meta-standalone {
  display: inline-flex;
  align-items: first baseline;
  align-self: first baseline;
}

.project-meta-part.record-meta-item {
  line-height: 1.4;
}
.project-meta-part.meta-keyword {
  font-size: max(.7rem, var(--text-tag-min));
}
.project-meta-part.meta-keyword .keyword {
  font-size: inherit;
}

.publication-cards-view .publication-detail-row.record-meta-item,
.publication-cards-view .publication-meta-item.record-meta-item {
  gap: 0 8px;
}
.publication-cards-view .publication-detail-row.record-meta-item {
  font-size: max(.77rem, var(--text-compact-min));
}
.publication-cards-view .publication-detail-row .authors {
  font-size: inherit;
  line-height: 1.48;
}
.publication-cards-view .publication-venue-item {
  font-size: max(.74rem, var(--text-meta-min));
}
.publication-cards-view .publication-venue {
  font-size: inherit;
  line-height: 1.42;
}
.publication-cards-view .publication-keywords-item {
  font-size: max(.58rem, var(--text-tag-min));
}
.publication-cards-view .publication-keywords-item .keyword {
  font-size: inherit;
}

.seminar-title-row {
  font-size: 1rem;
  line-height: 1.45;
}
.seminar-title-icon {
  display: inline-grid;
  align-self: flex-start;
  place-items: center;
  width: 1.125em;
  height: 1.45em;
  margin: 0;
}
.seminar-title-icon > svg {
  display: block;
  width: 1.125em;
  height: 1.125em;
}
.seminar-title {
  font-size: inherit;
  line-height: inherit;
}
.seminar-meta-item.record-meta-item {
  gap: 0 8px;
  line-height: 1.2;
}
.seminar-keywords.record-meta-item {
  font-size: max(.62rem, var(--text-tag-min));
  transform: none;
}
.seminar-keywords .keyword {
  font-size: inherit;
}

@media (max-width: 760px) {
  .toolbar {
    position: static;
  }
  .project-head h3,
  .seminar-title {
    overflow-wrap: anywhere;
  }
  .project-meta-line,
  .seminar-meta-row,
  .publication-lower-row {
    max-width: 100%;
  }
  .project-meta-part.meta-keyword,
  .seminar-keywords,
  .publication-keywords-item {
    flex: 1 1 100%;
    width: auto;
  }
}

/* Metadata alignment lab: isolated diagnostic presentation, not production layout overrides. */
.qa-main {
  background: #f4f8fa;
}
.qa-hero {
  padding: 54px 0 38px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    linear-gradient(90deg, rgba(24,137,194,.08) 1px, transparent 1px),
    linear-gradient(rgba(24,137,194,.08) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}
.qa-hero h1 {
  margin: 5px 0 10px;
  color: var(--navy);
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.08;
}
.qa-hero > .shell > p:last-of-type {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}
.qa-environment {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.qa-environment dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
}
.qa-environment dl div {
  display: inline-flex;
  gap: 6px;
  min-width: 0;
}
.qa-environment dt {
  color: var(--blue-deep);
  font-size: max(.68rem, var(--text-tag-min));
  font-weight: 850;
}
.qa-environment dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: #506679;
  font-size: max(.68rem, var(--text-tag-min));
}
.qa-summary-section {
  padding: 34px 0 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.qa-summary-head,
.qa-suite-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.qa-label {
  margin: 0 0 5px;
  color: var(--blue-deep);
  font-size: max(.68rem, var(--text-tag-min));
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.qa-summary-head h2,
.qa-suite-heading h2 {
  margin: 0;
  color: var(--navy);
}
.qa-copy-report {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #8ec5d9;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-deep);
  font: inherit;
  font-size: max(.72rem, var(--text-meta-min));
  font-weight: 850;
  cursor: pointer;
}
.qa-copy-report:hover,
.qa-copy-report:focus-visible {
  background: #e9f6fa;
}
.qa-summary {
  margin-top: 18px;
}
.qa-summary-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.qa-summary-stats > div {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafb;
}
.qa-summary-stats strong {
  color: var(--navy);
  font-size: 1.2rem;
}
.qa-summary-stats span {
  color: var(--muted);
  font-size: max(.68rem, var(--text-tag-min));
}
.qa-summary-stats .qa-stat-fail {
  border-color: #e5a08d;
  background: #fff3ef;
}
.qa-summary-stats .qa-stat-fail strong {
  color: #b13f22;
}
.qa-summary-stats .qa-stat-pass {
  border-color: #83c7b8;
  background: #eefaf6;
}
.qa-failure-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 16px;
  max-height: 340px;
  margin: 16px 0 0;
  padding: 12px 16px 12px 34px;
  overflow: auto;
  border: 1px solid #e5a08d;
  border-radius: 8px;
  background: #fff8f5;
}
.qa-failure-list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #853019;
  font-size: max(.68rem, var(--text-meta-min));
}
.qa-failure-list span {
  overflow-wrap: anywhere;
}
.qa-all-pass {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid #83c7b8;
  border-radius: 8px;
  background: #eefaf6;
  color: var(--green-deep);
  font-weight: 800;
}
.qa-suite-section {
  padding: 24px 0 72px;
}
.qa-suite-nav {
  position: sticky;
  top: 76px;
  z-index: 40;
  display: flex;
  gap: 6px;
  width: fit-content;
  margin-bottom: 28px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 7px 18px rgba(44,84,120,.08);
  backdrop-filter: blur(10px);
}
.qa-suite-nav a {
  padding: 7px 11px;
  border-radius: 6px;
  color: var(--navy);
  font-size: max(.72rem, var(--text-meta-min));
  font-weight: 850;
}
.qa-suite-nav a:hover,
.qa-suite-nav a:focus-visible {
  background: #e9f6fa;
  color: var(--blue-deep);
}
.qa-suite {
  scroll-margin-top: 140px;
}
.qa-suite + .qa-suite {
  margin-top: 70px;
}
.qa-suite-heading {
  padding-bottom: 13px;
  border-bottom: 3px solid var(--navy);
}
.qa-suite-heading p {
  max-width: 760px;
  margin: 5px 0 0;
  color: var(--muted);
}
.qa-suite-heading > strong {
  flex: 0 0 auto;
  color: var(--blue-deep);
}
.qa-specimen-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.qa-specimen {
  width: min(100%, var(--qa-specimen-width));
  scroll-margin-top: 138px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(44,84,120,.04);
}
.qa-specimen.qa-fail {
  border-color: #d8684a;
  box-shadow: 0 0 0 2px rgba(216,104,74,.12);
}
.qa-specimen.qa-pass {
  border-color: #79b9aa;
}
.qa-specimen-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
}
.qa-specimen-head code {
  color: var(--navy);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: max(.68rem, var(--text-tag-min));
  font-weight: 800;
  overflow-wrap: anywhere;
}
.qa-specimen-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: max(.68rem, var(--text-tag-min));
  line-height: 1.35;
}
.qa-status {
  flex: 0 0 auto;
  min-width: 54px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #e9eef1;
  color: #526676;
  font-size: max(.64rem, var(--text-tag-min));
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.qa-fail .qa-status {
  background: #d55232;
  color: #fff;
}
.qa-pass .qa-status {
  background: var(--green-deep);
  color: #fff;
}
.qa-render {
  position: relative;
  padding: 12px;
  overflow: hidden;
}
.qa-render > .project-card,
.qa-render > .publication-card,
.qa-render > .seminar-card {
  margin: 0;
}
.qa-render > .project-card {
  padding: 18px;
}
.qa-render > .seminar-card {
  padding: 14px 16px;
}
.qa-centerline {
  position: absolute;
  z-index: 30;
  right: 8px;
  left: 8px;
  height: 0;
  pointer-events: none;
}
.qa-icon-line {
  border-top: 1px solid rgba(219,73,45,.8);
}
.qa-target-line {
  border-top: 1px dashed rgba(12,135,151,.9);
}
.qa-metrics {
  display: grid;
  grid-template-columns: 90px minmax(0,1fr);
  margin: 0;
  padding: 9px 12px 11px;
  border-top: 1px solid var(--line);
  background: #fbfcfd;
}
.qa-metrics > div {
  display: contents;
}
.qa-metrics dt,
.qa-metrics dd {
  padding-block: 3px;
  font-size: max(.66rem, var(--text-tag-min));
  line-height: 1.35;
}
.qa-metrics dt {
  color: var(--blue-deep);
  font-weight: 850;
}
.qa-metrics dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: #4b6072;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

@media (max-width: 720px) {
  .qa-hero {
    padding: 38px 0 28px;
  }
  .qa-summary-head,
  .qa-suite-heading {
    align-items: flex-start;
  }
  .qa-summary-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .qa-failure-list {
    grid-template-columns: 1fr;
  }
  .qa-suite-nav {
    top: 74px;
    width: 100%;
  }
  .qa-suite-nav a {
    flex: 1;
    text-align: center;
  }
  .qa-specimen-head {
    align-items: flex-start;
  }
  .qa-render {
    padding: 8px;
  }
  .qa-render > .project-card,
  .qa-render > .seminar-card {
    padding: 13px 12px;
  }
  .qa-metrics {
    grid-template-columns: 72px minmax(0,1fr);
  }
}
