:root {
  --white: #ffffff;
  --navy: #071f4e;
  --blue: #1769e0;
  --lime: #9bea21;
  --grid: minmax(clamp(32px, 6vw, 96px), 1fr) repeat(12, minmax(0, 92px)) minmax(clamp(32px, 6vw, 96px), 1fr);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  font-family:
    "Pretendard",
    "Inter",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    system-ui,
    sans-serif;
  font-feature-settings: "ss01", "ss02";
  background: var(--white);
  word-break: keep-all;
}

section[id] {
  scroll-margin-top: 118px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  transform: translateY(-140%);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) auto minmax(210px, 0.7fr);
  gap: 24px;
  align-items: center;
  padding: 14px clamp(32px, 6vw, 96px);
  background: var(--white);
  border-bottom: 1px solid var(--navy);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 104px;
  height: auto;
  object-fit: contain;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  line-height: 1.2;
}

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

.brand em {
  font-size: 12px;
  opacity: 0.68;
}

.site-nav,
.header-actions,
.lang-switch,
.hero-actions,
.fellow-directory-actions,
.apply-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: 8px;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  padding: 9px 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link[aria-current="page"] {
  color: var(--blue);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.lang-switch {
  border: 1px solid var(--navy);
  background: var(--white);
  padding: 3px;
}

.lang-switch button {
  min-width: 42px;
  border: 0;
  padding: 7px 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 820;
  cursor: pointer;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--navy);
  color: var(--white);
}

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
}

.header-cta,
.primary-action {
  background: var(--navy);
  color: var(--white);
}

.secondary-action {
  border: 1px solid var(--white);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(84vh - 70px);
  display: grid;
  grid-template-columns: var(--grid);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: url("./assets/hero-visual.png") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--navy);
  opacity: 0.76;
}

.hero-inner {
  grid-column: 2 / 12;
  padding: clamp(48px, 9vh, 96px) 0;
  color: var(--white);
}

.eyebrow,
.section-heading p,
.process-copy > p:first-child {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.apply-band .eyebrow,
.process-copy > p:first-child {
  color: var(--lime);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--white);
  opacity: 0.88;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.quick-facts article {
  min-height: 132px;
  padding: 28px clamp(18px, 3vw, 36px);
  background: var(--white);
  border-right: 1px solid var(--navy);
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.quick-facts span {
  margin-top: 12px;
  line-height: 1.5;
  opacity: 0.72;
}

.content-band,
.process-band,
.apply-band {
  display: grid;
  grid-template-columns: var(--grid);
  padding: clamp(64px, 8vw, 112px) 0;
}

.intro-band,
.center-band,
.news-band {
  background: var(--white);
}

.section-heading,
.two-column,
.how-layout,
.center-layout,
.research-grid,
.process-copy,
.process-steps,
.support-grid,
.fellow-directory-actions,
.fellow-directory,
.openings-grid,
.mentor-table-wrap,
.news-list,
.apply-band > div,
.apply-actions {
  grid-column: 2 / 14;
  min-width: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading > p {
  grid-column: 1 / 4;
}

.section-heading > h2 {
  grid-column: 4 / 11;
}

.section-heading > span {
  grid-column: 11 / 13;
}

.section-heading.compact {
  display: grid;
  row-gap: 14px;
  align-items: start;
}

.section-heading.compact > p {
  grid-column: 1 / 3;
}

.section-heading.compact > h2 {
  grid-column: 3 / 13;
}

.section-heading.compact > span {
  grid-column: 3 / 13;
  max-width: 940px;
}

.section-heading h2,
.process-copy h2,
.apply-band h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading span {
  display: block;
  color: var(--navy);
  opacity: 0.72;
  font-size: 17px;
  line-height: 1.72;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.narrative {
  grid-column: 1 / 7;
}

.media-panel {
  grid-column: 8 / 13;
  margin: 0;
}

.media-panel img {
  width: 100%;
  border: 1px solid var(--navy);
}

.narrative p,
.process-copy p,
.apply-band p {
  color: var(--navy);
  opacity: 0.76;
  font-size: 17px;
  line-height: 1.82;
}

.how-layout,
.center-layout,
.research-grid,
.support-grid,
.fellow-list,
.openings-grid,
.news-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.how-steps {
  grid-column: 1 / 9;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.requirements-panel {
  grid-column: 9 / 13;
}

.how-steps article,
.requirements-panel,
.director-card,
.detail-grid article,
.team-grid,
.related-links,
.research-grid article,
.support-grid article,
.fellow-card,
.openings-grid article,
.news-item {
  border: 1px solid var(--navy);
  background: var(--white);
}

.how-steps article,
.requirements-panel,
.research-grid article,
.support-grid article,
.openings-grid article,
.news-item,
.director-card,
.detail-grid article,
.team-grid,
.related-links {
  padding: 24px;
}

.how-steps h3,
.requirements-panel h3,
.director-card h3,
.team-grid h3,
.related-links h3,
.research-grid h3,
.support-grid h3,
.openings-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.3;
}

.how-steps p,
.research-grid p,
.support-grid p,
.openings-grid p {
  margin: 0;
  color: var(--navy);
  opacity: 0.74;
  line-height: 1.72;
}

.requirements-list {
  margin: 0;
  padding-left: 18px;
  color: var(--navy);
  opacity: 0.74;
  line-height: 1.72;
}

.requirements-list li + li {
  margin-top: 10px;
}

.director-card {
  grid-column: 1 / 5;
  background: var(--navy);
  color: var(--white);
}

.director-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.director-card h3 {
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 42px);
}

.director-card strong {
  display: block;
  color: var(--white);
  opacity: 0.88;
  line-height: 1.5;
}

.director-card p {
  margin: 18px 0 0;
  color: var(--white);
  opacity: 0.82;
  line-height: 1.72;
}

.detail-grid {
  grid-column: 5 / 10;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.team-grid {
  grid-column: 10 / 13;
  display: grid;
  gap: 12px;
}

.related-links {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-links h3 {
  grid-column: 1 / 4;
}

.detail-grid span,
.team-grid article strong,
.news-item span,
.item-number {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-grid strong {
  display: block;
  margin-top: 10px;
  line-height: 1.45;
}

.team-grid article {
  display: grid;
  gap: 4px;
}

.team-grid article span {
  opacity: 0.72;
  line-height: 1.45;
}

.related-link,
.table-link {
  color: var(--blue);
  font-weight: 820;
  text-decoration: none;
}

.mentor-table .table-link {
  display: inline-flex;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  padding: 0 10px;
  white-space: nowrap;
}

.related-link:hover,
.table-link:hover,
.news-item:hover strong,
.news-item:hover .news-link {
  text-decoration: underline;
}

.fellow-directory-actions {
  justify-content: flex-end;
  margin-top: 24px;
}

.fellow-directory {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px 24px;
  min-width: 0;
}

.fellow-directory-hero {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px 24px;
  align-items: end;
}

.fellow-directory-hero .eyebrow {
  grid-column: 1 / 3;
}

.fellow-directory-hero h1 {
  grid-column: 3 / 13;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.fellow-directory-hero > p:last-child {
  grid-column: 3 / 11;
  margin: 0;
  color: var(--navy);
  opacity: 0.74;
  font-size: 18px;
  line-height: 1.72;
}

.fellow-list {
  grid-column: 1 / 13;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fellow-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.fellow-photo {
  margin: 0;
  border-bottom: 1px solid var(--navy);
  background: var(--white);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.fellow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fellow-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.fellow-status {
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--blue);
  padding: 6px 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.fellow-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.fellow-name-en,
.fellow-summary {
  margin: 0;
  color: var(--navy);
}

.fellow-name-en {
  opacity: 0.62;
  font-weight: 720;
}

.fellow-name-en:empty {
  display: none;
}

.fellow-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.fellow-meta div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.fellow-meta dt,
.fellow-meta dd {
  margin: 0;
}

.fellow-meta dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fellow-meta dd {
  color: var(--navy);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.fellow-summary {
  opacity: 0.74;
  line-height: 1.72;
}

.admin-shell {
  grid-column: 2 / 14;
  display: grid;
  gap: 34px;
  min-width: 0;
}

.admin-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px 24px;
  align-items: end;
}

.admin-heading .eyebrow {
  grid-column: 1 / 3;
}

.admin-heading h1 {
  grid-column: 3 / 13;
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.admin-heading p:last-child {
  grid-column: 3 / 11;
  margin: 0;
  color: var(--navy);
  opacity: 0.72;
  font-size: 16px;
  line-height: 1.7;
}

.admin-section {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.admin-section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px 24px;
  align-items: end;
}

.admin-section-heading h2 {
  grid-column: 1 / 5;
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.16;
}

.admin-section-heading p {
  grid-column: 5 / 12;
  margin: 0;
  color: var(--navy);
  opacity: 0.72;
  line-height: 1.7;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.admin-stat,
.admin-button,
.admin-status,
.admin-output-panel,
.admin-table-wrap {
  border: 1px solid var(--navy);
  background: var(--white);
}

.admin-stat {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.admin-stat span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stat strong {
  color: var(--navy);
  font-size: 32px;
  line-height: 1;
}

.admin-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--navy);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.admin-button.primary {
  background: var(--navy);
  color: var(--white);
}

.admin-button.danger {
  border-color: #b91c1c;
  color: #b91c1c;
}

.admin-button:hover {
  color: var(--blue);
}

.admin-button.primary:hover {
  color: var(--lime);
}

.admin-status {
  display: block;
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.5;
}

.admin-status:empty {
  display: none;
}

.admin-status[data-tone="success"] {
  border-color: #0f766e;
  background: #f0fdfa;
  color: #115e59;
}

.admin-status[data-tone="error"] {
  border-color: #b91c1c;
  background: #fef2f2;
  color: #991b1b;
}

.admin-status[data-tone="pending"] {
  border-color: var(--blue);
  background: #f5fbff;
  color: var(--navy);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  table-layout: fixed;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--navy);
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.admin-table th:nth-child(1) {
  width: 24%;
}

.admin-table th:nth-child(2) {
  width: 26%;
}

.admin-table th:nth-child(3) {
  width: 18%;
}

.admin-table th:nth-child(4) {
  width: 32%;
}

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

.admin-table td strong {
  color: var(--navy);
}

.admin-table td span {
  margin-top: 4px;
  opacity: 0.62;
  font-size: 13px;
}

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

.admin-radio-group label {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--navy);
  padding: 0 12px;
  cursor: pointer;
}

.admin-radio-group input {
  accent-color: var(--blue);
}

.admin-radio-group span {
  margin: 0;
  color: var(--navy);
  opacity: 1;
  font-size: 14px;
  font-weight: 820;
}

.admin-output-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.admin-output-panel label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-output-panel textarea {
  width: 100%;
  min-height: 280px;
  resize: vertical;
  border: 1px solid var(--navy);
  padding: 14px;
  color: var(--navy);
  font: 13px/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.fellow-admin-list {
  display: grid;
  gap: 18px;
}

.fellow-admin-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  align-items: start;
  border: 1px solid var(--navy);
  background: var(--white);
  min-width: 0;
  overflow: hidden;
}

.fellow-admin-preview {
  margin: 0;
  border-right: 1px solid var(--navy);
  background: var(--white);
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  align-self: start;
  overflow: hidden;
}

.fellow-admin-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fellow-admin-body {
  display: grid;
  gap: 16px;
  padding: 20px;
  min-width: 0;
}

.fellow-admin-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.fellow-admin-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.admin-field:last-child {
  grid-column: 1 / -1;
}

.admin-field span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid var(--navy);
  padding: 10px 12px;
  color: var(--navy);
  font: inherit;
}

.admin-field textarea {
  resize: vertical;
  line-height: 1.6;
}

.fellow-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-admin-list {
  display: grid;
  gap: 18px;
}

.news-admin-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--navy);
  background: var(--white);
  padding: 20px;
  min-width: 0;
}

.news-admin-card-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-admin-card-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.news-admin-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.news-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-image-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.news-image-card {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid var(--navy);
  background: var(--white);
  padding: 8px;
  min-width: 0;
}

.news-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-image-card .admin-button {
  width: 100%;
}

.news-image-empty {
  margin: 0;
  border: 1px dashed var(--navy);
  padding: 16px;
  color: var(--navy);
  opacity: 0.7;
}

.file-button {
  position: relative;
  overflow: hidden;
}

.file-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.research-grid article {
  grid-column: span 6;
}

.item-number {
  margin-bottom: 20px;
}

.research-grid .solution {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--navy);
  color: var(--navy);
  opacity: 1;
}

.process-band {
  row-gap: 34px;
  background: var(--navy);
  color: var(--white);
}

.process-copy {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.process-copy > p:first-child {
  grid-column: 1 / 4;
}

.process-copy h2 {
  grid-column: 4 / 10;
  color: var(--white);
}

.process-copy p:last-child {
  grid-column: 10 / 13;
  margin: 0;
  color: var(--white);
  opacity: 0.78;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-steps article {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--white);
  padding: 18px;
}

.process-steps span {
  width: max-content;
  color: var(--lime);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 840;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.process-steps strong {
  color: var(--white);
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.support-grid article {
  grid-column: span 3;
}

.openings-grid article {
  grid-column: span 6;
  display: grid;
  gap: 18px;
}

.openings-grid article:only-child {
  grid-column: 3 / 11;
}

.opening-status {
  width: max-content;
  border: 1px solid var(--blue);
  padding: 6px 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.openings-grid dl {
  display: grid;
  grid-template-columns: minmax(84px, max-content) minmax(0, 1fr);
  gap: 8px 18px;
  margin: 0;
}

.openings-grid dt,
.openings-grid dd {
  margin: 0;
  line-height: 1.52;
}

.openings-grid dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.openings-grid dd {
  color: var(--navy);
  opacity: 0.8;
}

.opening-link {
  width: max-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--navy);
  padding: 0 14px;
  color: var(--navy);
  font-weight: 820;
  text-decoration: none;
}

.opening-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.opening-actions,
.pi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mentor-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: auto;
  contain: layout paint;
  border: 1px solid var(--navy);
  background: var(--white);
}

.mentor-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
}

.mentor-col-recruiting {
  width: 10%;
}

.mentor-col-area {
  width: 14%;
}

.mentor-col-role {
  width: 7%;
}

.mentor-col-name {
  width: 9%;
}

.mentor-col-name-en {
  width: 11%;
}

.mentor-col-affiliation {
  width: 12%;
}

.mentor-col-department {
  width: 27%;
}

.mentor-col-website {
  width: 10%;
}

.mentor-table th,
.mentor-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--navy);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.mentor-table th {
  position: sticky;
  top: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
}

.mentor-table td {
  color: var(--navy);
  line-height: 1.45;
  opacity: 0.76;
}

.mentor-table td:nth-child(1),
.mentor-table td:nth-child(2),
.mentor-table td:nth-child(4),
.mentor-table td:nth-child(5) {
  opacity: 1;
  font-weight: 820;
}

.mentor-table td:nth-child(1) {
  color: var(--blue);
}

.mentor-table td:nth-child(2),
.mentor-table .mentor-area-cell {
  color: #111827;
}

.mentor-table .mentor-recruiting-cell[data-status="inactive"] {
  color: #6b7280;
}

.mentor-table td:nth-child(8) .table-link {
  width: 100%;
}

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

.news-item {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
}

.news-item-body {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.news-media {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--navy);
  background: var(--white);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-media-button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 220ms ease;
}

.news-media[data-transitioning="true"] img {
  opacity: 0;
  transform: scale(0.985);
}

.news-carousel-arrow {
  position: absolute;
  top: 50%;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.news-carousel-arrow:hover {
  background: var(--navy);
  color: var(--white);
}

.news-carousel-arrow.prev {
  left: 8px;
}

.news-carousel-arrow.next {
  right: 8px;
}

.news-link,
.news-item strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  text-decoration: none;
}

.news-description {
  margin: 0;
  color: var(--navy);
  opacity: 0.74;
  font-size: 14px;
  line-height: 1.64;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 56px 24px 32px;
  background: rgba(7, 31, 78, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.news-lightbox[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.news-lightbox-panel {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  height: min(82vh, 860px);
  place-items: center;
}

.news-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid var(--white);
  background: var(--white);
  object-fit: contain;
  transition: opacity 220ms ease, transform 220ms ease;
}

.news-lightbox[data-transitioning="true"] .news-lightbox-image {
  opacity: 0;
  transform: scale(0.985);
}

.news-lightbox-close,
.news-lightbox-arrow {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.news-lightbox-close {
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
}

.news-lightbox-arrow {
  top: 50%;
  width: 38px;
  height: 38px;
  font-size: 28px;
  transform: translateY(-50%);
}

.news-lightbox-arrow[hidden] {
  display: none;
}

.news-lightbox-arrow.prev {
  left: 10px;
}

.news-lightbox-arrow.next {
  right: 10px;
}

body[data-lightbox-open="true"] {
  overflow: hidden;
}

.apply-band {
  grid-template-columns: var(--grid);
  gap: 32px;
  align-items: center;
  background: var(--blue);
  color: var(--white);
}

.apply-band > div:first-child {
  grid-column: 2 / 10;
}

.apply-band h2 {
  color: var(--white);
}

.apply-band p {
  max-width: 720px;
  color: var(--white);
  opacity: 0.84;
}

.apply-actions {
  grid-column: 10 / 14;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: var(--grid);
  align-items: center;
  padding: 28px 0 36px;
  border-top: 1px solid var(--navy);
}

.site-footer img {
  grid-column: 2 / 5;
  width: min(210px, 44vw);
}

.site-footer p {
  grid-column: 8 / 14;
  margin: 0;
  font-size: 13px;
  text-align: right;
  opacity: 0.68;
}

.pi-detail {
  grid-column: 2 / 14;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  min-width: 0;
}

.pi-hero {
  grid-column: 1 / 13;
  display: grid;
  gap: 16px;
}

.pi-hero.has-visual-header {
  gap: 0;
}

.pi-hero .related-link {
  width: max-content;
}

.pi-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.pi-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  opacity: 0.76;
  font-size: 20px;
  line-height: 1.6;
}

.pi-meta-grid {
  grid-column: 1 / 6;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pi-meta-grid article,
.pi-opening-panel {
  border: 1px solid var(--navy);
  background: var(--white);
  padding: 24px;
}

.pi-meta-grid span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pi-meta-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.pi-opening-panel {
  grid-column: 6 / 13;
  display: grid;
  gap: 18px;
}

.pi-opening-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

.pi-opening-panel p {
  margin: 0;
  color: var(--navy);
  opacity: 0.76;
  line-height: 1.72;
}

.pi-opening-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.pi-opening-meta span,
.pi-opening-meta strong {
  display: block;
}

.pi-opening-meta span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pi-opening-meta strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.pi-visual-header {
  grid-column: 1 / 13;
  margin: 0;
  border: 1px solid var(--navy);
  background: var(--white);
}

.pi-visual-header img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.secondary-action.dark {
  border-color: var(--navy);
  color: var(--navy);
}

@media (min-width: 1081px) {
  html[lang="ko"] .hero h1,
  html[lang="ko"] .section-heading h2,
  html[lang="ko"] .process-copy h2,
  html[lang="ko"] .apply-band h2 {
    white-space: nowrap;
  }

  html[lang="en"] .hero h1,
  html[lang="en"] .section-heading h2,
  html[lang="en"] .process-copy h2,
  html[lang="en"] .apply-band h2 {
    overflow-wrap: normal;
    text-wrap: balance;
    white-space: normal;
  }

  html[lang="en"] .section-heading h2,
  html[lang="en"] .process-copy h2,
  html[lang="en"] .apply-band h2 {
    font-size: clamp(30px, 3.2vw, 42px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }

  .hero-inner,
  .section-heading,
  .two-column,
  .how-layout,
  .center-layout,
  .research-grid,
  .process-copy,
  .process-steps,
  .support-grid,
  .fellow-directory-actions,
  .fellow-directory,
  .admin-shell,
  .openings-grid,
  .pi-detail,
  .news-list,
  .apply-band > div:first-child,
  .apply-actions {
    grid-column: 2 / 14;
  }

  .section-heading > p,
  .section-heading > h2,
  .section-heading > span,
  .process-copy > p:first-child,
  .process-copy h2,
  .process-copy p:last-child,
  .narrative,
  .media-panel,
  .how-steps,
  .requirements-panel,
  .director-card,
  .detail-grid,
  .team-grid,
  .related-links,
  .fellow-directory-hero,
  .fellow-directory-hero .eyebrow,
  .fellow-directory-hero h1,
  .fellow-directory-hero > p:last-child,
  .admin-heading,
  .admin-heading .eyebrow,
  .admin-heading h1,
  .admin-heading p:last-child,
  .apply-band > div:first-child,
  .apply-actions {
    grid-column: 1 / 13;
  }

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

  .admin-section-heading h2,
  .admin-section-heading p {
    grid-column: 1 / 13;
  }

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

  .fellow-admin-preview {
    border-right: 0;
    border-bottom: 1px solid var(--navy);
  }

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

  .quick-facts,
  .process-steps,
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-grid article,
  .support-grid article,
  .fellow-card,
  .openings-grid article,
  .openings-grid article:only-child {
    grid-column: span 6;
  }

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

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

  .related-links h3 {
    grid-column: 1 / 3;
  }

  .apply-actions {
    justify-content: flex-start;
  }

  .pi-hero,
  .pi-visual-header,
  .pi-meta-grid,
  .pi-opening-panel {
    grid-column: 1 / 13;
  }
}

@media (max-width: 720px) {
  :root {
    --grid: 20px minmax(0, 1fr) 20px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 78px;
  }

  .brand strong,
  .brand em {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 2px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 13px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    justify-content: flex-end;
  }

  .lang-switch button {
    min-width: 34px;
    padding-inline: 6px;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .hero {
    min-height: 72vh;
    background-position: 64% center;
  }

  .hero-inner {
    padding: 42px 0;
  }

  .hero h1 {
    font-size: clamp(34px, 10.8vw, 44px);
  }

  .quick-facts,
  .how-steps,
  .detail-grid,
  .process-steps,
  .news-list {
    grid-template-columns: 1fr;
  }

  .quick-facts article {
    border-right: 0;
    border-bottom: 1px solid var(--navy);
  }

  .quick-facts article:last-child {
    border-bottom: 0;
  }

  .content-band,
  .process-band,
  .apply-band {
    padding: 56px 0;
  }

  .hero-inner,
  .section-heading,
  .two-column,
  .how-layout,
  .center-layout,
  .research-grid,
  .process-copy,
  .process-steps,
  .support-grid,
  .fellow-directory-actions,
  .fellow-directory,
  .admin-shell,
  .openings-grid,
  .pi-detail,
  .mentor-table-wrap,
  .news-list,
  .apply-band > div:first-child,
  .apply-actions {
    grid-column: 2 / 3;
  }

  .research-grid article,
  .support-grid article,
  .fellow-card,
  .openings-grid article,
  .openings-grid article:only-child {
    grid-column: 1 / -1;
  }

  .fellow-directory-actions {
    justify-content: stretch;
  }

  .fellow-directory-actions .secondary-action {
    width: 100%;
  }

  .fellow-directory-hero {
    grid-template-columns: 1fr;
  }

  .fellow-directory-hero,
  .fellow-directory-hero .eyebrow,
  .fellow-directory-hero h1,
  .fellow-directory-hero > p:last-child {
    grid-column: 1 / -1;
  }

  .fellow-list {
    grid-template-columns: 1fr;
  }

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

  .admin-heading,
  .admin-heading .eyebrow,
  .admin-heading h1,
  .admin-heading p:last-child {
    grid-column: 1 / -1;
  }

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

  .admin-table {
    min-width: 760px;
  }

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

  .admin-section-heading h2,
  .admin-section-heading p {
    grid-column: 1 / -1;
  }

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

  .fellow-photo-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fellow-photo-actions .admin-button {
    width: 100%;
  }

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

  .pi-hero,
  .pi-visual-header,
  .pi-meta-grid,
  .pi-opening-panel {
    grid-column: 1 / -1;
  }

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

  .pi-actions .primary-action,
  .pi-actions .secondary-action {
    width: 100%;
  }

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

  .related-links {
    grid-template-columns: 1fr;
  }

  .related-links h3 {
    grid-column: 1;
  }

  .mentor-table {
    min-width: 0;
    display: block;
  }

  .mentor-table thead {
    display: none;
  }

  .mentor-table tbody,
  .mentor-table tr,
  .mentor-table td {
    display: block;
    width: 100%;
  }

  .mentor-table tr {
    border-bottom: 1px solid var(--navy);
    padding: 14px 0;
  }

  .mentor-table tr:last-child {
    border-bottom: 0;
  }

  .mentor-table td {
    border-bottom: 0;
    padding: 5px 14px;
  }

  .mentor-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 820;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mentor-table td:nth-child(1),
  .mentor-table td:nth-child(2),
  .mentor-table td:nth-child(6),
  .mentor-table td:nth-child(7) {
    font-size: 12px;
  }

  .apply-actions {
    grid-column: 2 / 3 !important;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .apply-actions .primary-action,
  .apply-actions .secondary-action {
    width: 100%;
  }

  .site-footer img,
  .site-footer p {
    grid-column: 2 / 3;
  }

  .site-footer p {
    margin-top: 16px;
    text-align: left;
  }
}
