﻿.page-hero {
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 max(40px, calc(50% - 560px));
  text-align: center
}



.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-display-sm);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -0.42px;
  margin: 0
}



.page-hero p {
  color: var(--color-gray-60);
  font-size: var(--text-body-sm);
  letter-spacing: -0.16px;
  line-height: var(--leading-body);
  margin: 0
}


.achvmt-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  counter-reset: achvmt-cnt;
}



.achvmt-list li {
  counter-increment: achvmt-cnt;
  border-bottom: 1px solid var(--line);
}



.achvmt-list li:last-child {
  border-bottom: none;
}



.achvmt-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
}



.achvmt-num {
  flex-shrink: 0;
  width: 44px;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary-60);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -1px;
}



.achvmt-num::before {
  content: counter(achvmt-cnt, decimal-leading-zero);
}



.achvmt-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}



.achvmt-yr {
  align-self: flex-start;
  font-size: var(--text-body-label);
  font-weight: 600;
  color: var(--color-primary-60);
  background: rgba(25, 83, 200, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}



.achvmt-ttl {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  letter-spacing: -.02em;
}



.achvmt-desc {
  font-size: var(--text-body-sm);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}



.file-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  cursor: pointer
}



.file-label {
  flex: 0 0 160px;
  font-size: 0.9rem;
  color: var(--text)
}



.file-input {
  flex: 1;
  font-size: 0.85rem
}



.file-exist {
  font-size: 0.8rem;
  color: #0d9488;
  margin-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px
}



.success-hero h2 {
  font-family: var(--font-display);
  font-size: var(--text-heading-lg);
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 8px;
  letter-spacing: -0.4px
}

/* ── Responsive: Tablet (768px–999px) ──────── */

@media (min-width: 768px) and (max-width: 999px) {
  .page-hero {
    height: 110px;
    padding: 0 22px
  }
}

/* ── Responsive: 767px — Mobile Primary ──── */

@media (max-width: 767px) {
  .page-hero {
    height: auto;
    min-height: 80px;
    padding: 0 20px 16px
  }

  .success-hero h2 {
    font-size: var(--text-heading-md);
  }
}


.news-total {
  font-size: var(--text-body-sm);
  font-weight: 400;
  color: var(--muted);
  margin-left: 8px;
}

/* 페이지네이션 */


.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 60px;
}


.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: var(--text-body-sm);
  color: var(--dark);
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}


.page-btn:hover:not(.disabled):not(.on) {
  border-color: var(--color-primary-60);
  color: var(--color-primary-60);
}


.page-btn.on {
  border-color: var(--color-primary-60);
  background: var(--color-primary-60);
  color: #fff;
  font-weight: 700;
}


.page-btn.disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}


.page-ellipsis {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: var(--muted);
  font-size: var(--text-body-sm);
}


.story-section-head h3 {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--dark);
  margin: 0;
  padding-top: 32px;
}


.story-section-head p {
  font-size: var(--text-body-sm);
  color: var(--muted);
  margin: 4px 0 0;
}


.video-thumb-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  pointer-events: none;
}

/* 수상자 사진 위 배지 오버레이 */


.winner-photo-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: -.01em;
  line-height: 1.5;
  pointer-events: none;
}


.winner-photo-badge--teal {
  background: rgba(25, 97, 82, .80);
}

/* 인터뷰영상 탭: 3열 균등 레이아웃 */


.gallery-asymmetric.uniform .gallery-item--wide {
  grid-column: span 1;
  grid-row: span 1;
}

/* ════════════════════════════════
   신청서 헤더 (접수번호 + 상태)
════════════════════════════════ */


.aply-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}


.aply-header-no-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
}


.aply-header-no-value {
  font-size: 1.1rem;
  font-weight: 600;
}


.aply-header-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ════════════════════════════════
   비디오 플레이어 컴포넌트
════════════════════════════════ */


.video-player-wrap {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d1830;
  text-decoration: none;
}


.video-player-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
}


.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}


.video-info-wrap {
  margin-top: 14px;
}


.video-info-title {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 6px;
}


.video-info-meta {
  font-size: var(--text-body-sm);
  color: var(--muted);
}


.video-info-desc {
  margin-top: 10px;
  font-size: var(--text-body-sm);
  color: var(--ink);
  white-space: pre-line;
}

/* 갤러리 상세 이미지 */


.gallery-detail-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

/* 비디오 플레이어 내 iframe/video 전체 채움 */


.video-player-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.video-player-video {
  width: 100%;
  height: 100%;
  background: #000;
}

/* 분리선 + 패딩 섹션 */


.section-divider {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 4px;
}


hr.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-10) 0 var(--space-8);
  padding: 0;
}

/* ════════════════════════════════
   유틸리티 클래스 (인라인 스타일 대체)
════════════════════════════════ */

/* 여백 */


.u-mb-12 {
  margin-bottom: 12px;
}


.u-mb-28 {
  margin-bottom: 28px;
}


.u-mb-24 {
  margin-bottom: 24px;
}


.u-mb-20 {
  margin-bottom: 20px;
}


.u-mb-16 {
  margin-bottom: 16px;
}


.u-mt-10 {
  margin-top: 10px;
}


.u-mt-16 {
  margin-top: 16px;
}


.u-mt-20 {
  margin-top: 20px;
}


.u-mt-24 {
  margin-top: 24px;
}


.u-mt-32 {
  margin-top: 32px;
}


.u-m-0 {
  margin: 0;
}


.u-m-20 {
  margin: 20px 0;
}

/* 표시 */


.u-hidden {
  display: none;
}


.u-inline-block {
  display: inline-block;
}


.u-mt-16-inline {
  margin-top: 16px;
  display: inline-block;
}

/* 플렉스 레이아웃 */


.u-flex-row-6 {
  display: flex;
  align-items: center;
  gap: 6px;
}


.u-flex-row-8 {
  display: flex;
  align-items: center;
  gap: 8px;
}


.u-flex-row-12 {
  display: flex;
  align-items: center;
  gap: 12px;
}


.u-flex-shrink-0 {
  flex-shrink: 0;
}


.u-flex-1 {
  flex: 1;
}


.u-flex-row-sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}


.u-flex-start-24 {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  justify-content: flex-start;
}

/* 텍스트 */


.u-muted {
  color: var(--muted);
}


.u-text-muted-sm {
  font-size: var(--text-body-sm);
  color: var(--muted);
}


.u-text-sm-0 {
  margin: 0;
  font-size: var(--text-body-sm);
}


.u-text-label {
  font-size: var(--text-body-label);
  color: var(--ink);
  font-weight: 600;
}


.u-text-center {
  text-align: center;
}


.u-pre-line {
  white-space: pre-line;
}


/* 목록형 미리보기: 줄바꿈(pre-line) 유지 + N줄 초과 시 말줄임(…) */
.u-clamp-2,
.u-clamp-3 {
  white-space: pre-line;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.u-clamp-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.u-clamp-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}


.u-cursor-default {
  cursor: default;
}


.u-cursor-pointer {
  cursor: pointer;
}

/* 너비 */


.u-w-60 {
  width: 60px;
}


.u-w-80 {
  width: 80px;
}


.u-w-110 {
  width: 110px;
}

/* 테이블 */


td.u-text-left {
  text-align: left;
}


td.u-empty-cell {
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
}

/* 빈 상태 (데이터 없음) */


.u-empty {
  padding: 3rem 0 0;
  text-align: center;
  color: var(--muted);
}

.u-empty p,
.content-card .u-empty p:not([class]) {
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: inherit;
}

.u-empty-lg {
  padding: 4rem 0;
  text-align: center;
  color: var(--muted);
}


.u-empty-48 {
  padding: 48px 0;
  text-align: center;
  color: var(--muted);
}

/* 인증 안내 박스(.notice-center)는 components.css로 이관 — register-verify 전용 */

/* 폼 인라인 입력 + 버튼 행(.inline-input-row)은 components.css로 이관 — register 전용 */

/* flex 오른쪽 정렬 CTA 행 */


.u-flex-end {
  display: flex;
  justify-content: flex-end;
}


.u-flex-end-mt {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}


.u-flex-end-mt32 {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

/* 작은 보조 텍스트 (xs + muted) */


.u-text-xs-muted {
  font-size: var(--text-body-xs);
  color: var(--muted);
}

/* content-sub-title 상단 여백 */


.content-sub-title.u-mt-32 {
  margin-top: 32px;
}

/* 홈 k-alert 위치 */


.k-alert-home {
  margin: 16px auto;
  max-width: 960px;
}

/* 단락 보조 크기 */


.u-text-95 {
  font-size: .95rem;
}

/* 48px 여백 유틸리티 */


.u-mb-48 {
  margin-bottom: 48px;
}


.u-mt-48 {
  margin-top: 48px;
}

/* flex wrap */


.u-flex-wrap {
  flex-wrap: wrap;
}

/* 배지 커스텀 패딩 */


.badge.badge-padded {
  padding: 6px 14px;
}

/* 위험 색 강조 텍스트 */


.u-danger {
  color: var(--danger);
}

/* 4px 상단 여백 */


.u-mt-4 {
  margin-top: 4px;
}

/* 검색 폼 — 인라인 flex 내 늘리기 */


.search.u-flex-1 {
  flex: 1;
  margin-bottom: 0;
}

/* 보도자료 링크 스타일 리셋 */


.press-link-reset {
  color: inherit;
  text-decoration: none;
  font-size: var(--text-heading-sm);
}

.press-pull-quote blockquote .press-link-reset p {
  font-size: inherit;
}


.press-link-reset-block {
  color: inherit;
  text-decoration: none;
  display: block;
}


.press-link-icon {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  color: var(--muted);
}


.press-link-flex {
  display: flex;
  color: inherit;
}

/* 주목색 primary-60 SVG 아이콘 */


.ic-primary {
  color: var(--color-primary-60);
}

/* auth-cta 블록 표시 */


.auth-cta.u-block {
  display: block;
  text-align: center;
  text-decoration: none;
}

/* register 동의 레이블 — auth-wrap display:block 덮어쓰기 방지.
   체크박스는 문구 첫 줄에 정렬(라벨이 2줄로 wrap돼도 위치 고정) */
.auth-wrap label.notice--check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}


.notice.notice--check {
  align-items: flex-start !important;
}


.notice.notice--check.u-mt-20 {
  margin-top: 20px;
}


.notice.notice--check.u-mt-8 {
  margin-top: 8px;
}

/* auth-bottom 여백 */


.auth-bottom.u-mt-12 {
  margin-top: 12px;
}

/* form-grid 전체 너비 컬럼 */


.form-grid .u-full-col {
  grid-column: 1 / -1;
}

/* 인라인 피드백 메시지 (아이디/비밀번호 확인 등) */


.field-msg {
  font-size: var(--text-body-label);
  margin-top: 6px;
  display: block;
}

/* 알림 수신 체크 박스 컨테이너 */


.noti-check-wrap {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}


.noti-check-wrap input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-primary-60);
}


.noti-check-wrap label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  margin: 0;
}


.noti-check-wrap .noti-title {
  font-size: var(--text-body-xs);
  font-weight: 500;
}


.noti-check-wrap .noti-desc {
  font-size: 12px;
  color: var(--muted);
}

/* 아이콘 블록 (빈 상태 위 아이콘) */


.u-empty-icon {
  margin: 0 auto 12px;
  display: block;
  opacity: .4;
}

/* 오류 알림 박스 */


.alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

/* 상태 알림 박스 변형 */


.alert-warn {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 40px 24px;
  margin-bottom: 16px;
  text-align: center;
  color: #92400e;
}


.alert-warn .alert-icon {
  margin: 0 auto 12px;
  display: block;
  opacity: .6;
}



.alert-warn-sm {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}



.alert-success-sm {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}



.alert-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}



.alert-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}


.alert-success .alert-msg {
  display: flex;
  align-items: center;
  gap: 8px;
}



.alert-neutral {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 140px 24px;
  margin-bottom: 16px;
  text-align: center;
  color: var(--muted);
}


.alert-neutral .alert-icon {
  margin: 0 auto 12px;
  display: block;
  opacity: .4;
}


.alert-neutral-title {
  font-size: var(--text-display-xxsm);
  font-weight: 700;
  margin: 0 0 8px;
}


.alert-neutral-desc {
  font-size: var(--text-body-sm);
  margin: 0;
}

/* 필드 헤더 행 (라벨 + 상태 배지를 양끝으로) */


.field-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--color-primary-5);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}


.field-header-row .field-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}


.field-header-row .field-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── 공지팝업 모바일 반응형 ─────────────────────────── */

@media (max-width: 768px) {
  .notice-popup-box {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: min(90vw, 360px) !important;
    min-height: unset !important;
    max-height: 80vh !important;
    overflow: hidden !important;
  }

  .notice-popup-box>div:nth-child(2) {
    overflow-y: auto !important;
    max-height: calc(80vh - 90px) !important;
  }

  .alert-neutral {
    padding: 60px 16px;
  }

  .alert-neutral-title {
    font-size: var(--text-heading-sm);
  }

  .press-link-reset {
    font-size: var(--text-heading-xs);
  }
  
  .press-pull-quote blockquote .press-link-reset p {
    font-size: var(--text-body-lg);
  }
}

/* ===== v5 style.css 서브 레이아웃·컴포넌트 (append, v5 우선) ===== */

* {
  box-sizing: border-box
}

[hidden] {
  display: none !important
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  /* 한국어: 단어(어절) 중간에서 줄바꿈 금지(공백에서만 끊김). 긴 영문/URL은 overflow-wrap으로 보호 */
  word-break: keep-all;
  overflow-wrap: break-word;
}

button,
input,
textarea,
select {
  font: inherit;
  cursor: pointer
}

input,
textarea {
  cursor: text
}

/* textarea는 세로 방향만 리사이즈 허용(가로 드래그로 레이아웃 틀어짐 방지) */
textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

hr {
  margin: 28px 0;
}

.top {
  height: 92px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line)
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  font-size: var(--text-body-lg);
  font-weight: 900
}

.logo {
  font-size: var(--text-body-lg);
  color: var(--color-primary-40)
}

#nav {
  margin-left: auto;
  display: flex;
  gap: var(--space-6)
}

.nav-link {
  border: 0;
  background: transparent;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 0;
  position: relative
}

.nav-link.on:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 2px;
  background: var(--color-primary-40)
}

/* ── Pill Buttons ───────────────────────────── */
.primary,
.secondary,
.apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 700;
  letter-spacing: -0.18px;
  padding: 10px 20px;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap
}

.primary {
  border: 1.5px solid var(--color-primary-60);
  background: var(--white);
  color: var(--color-primary-95)
}

.primary:hover {
  background: var(--color-primary-90);
  color: var(--white);
  border-color: var(--color-primary-90)
}

.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink)
}

.secondary:hover {
  background: var(--color-gray-95);
  color: var(--white);
  border-color: var(--color-gray-95)
}

.apply {
  border: 1px solid var(--color-primary-80);
  background: var(--color-primary-80);
  color: var(--white)
}

.apply:hover {
  background: var(--color-primary-80);
  border-color: var(--color-primary-80)
}

.primary.sm,
.secondary.sm,
.apply.sm {
  font-size: var(--text-body-xs);
  letter-spacing: -0.14px
}

.primary.xs,
.secondary.xs,
.apply.xs {
  font-size: var(--text-body-label);
  letter-spacing: -0.12px;
  gap: 4px;
  padding: 6px 16px
}

/* 버튼 내부 아이콘: 텍스트 높이에 맞춰 일괄 스케일(em → 각 버튼 font-size 기준, 인라인 width/height보다 우선) */
.primary svg,
.secondary svg,
.apply svg {
  width: 1.1em;
  height: 1.1em
}

.full {
  display: flex;
  width: 100%;
  justify-content: center
}

/* ── Badge ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-family: var(--font-body);
  font-size: var(--text-body-xs);
  letter-spacing: -0.12px;
  white-space: nowrap
}

.badge.sm {
  padding: 4px 12px;
  font-size: var(--text-body-label);
  font-weight: 500;
  letter-spacing: -0.1px
}

.badge.light {
  background: var(--color-primary-5);
  color: var(--color-primary-90)
}

.badge.dark {
  background: var(--color-primary-95);
  color: var(--color-gray-0)
}

.badge.lined {
  background: var(--color-gray-0);
  border: 1px solid var(--color-primary-95);
  color: var(--color-primary-95)
}

.badge.gray {
  background: var(--color-gray-5);
  color: var(--color-gray-95)
}

/* 비활성/미완료 상태 — 낮은 강조의 뮤트 그레이 */
.badge.disabled {
  background: var(--color-gray-10);
  color: var(--color-gray-60)
}

.b-hero {
  text-align: center;
  padding: 48px 20px 44px
}

.b-eyebrow {
  font-weight: 900;
  color: var(--color-primary-40);
  letter-spacing: .02em
}

.b-hero h1 {
  font-size: clamp(48px, 6.2vw, 82px);
  letter-spacing: -.065em;
  line-height: .98;
  margin: 14px 0;
  color: var(--color-primary-40)
}

.b-hero p {
  font-size: var(--text-body-lg);
  color: var(--muted);
  line-height: var(--leading-body);
  max-width: 720px;
  margin: 0 auto
}

.b-pill {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--teal-border);
  border-radius: 999px;
  padding: 12px 24px;
  margin-top: 30px;
  box-shadow: 0 14px 30px rgba(25, 83, 200, .12)
}

.b-pill span {
  width: 112px;
  height: 7px;
  background: var(--teal-mid);
  border-radius: 99px;
  overflow: hidden
}

.b-pill i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--color-primary-40);
  border-radius: 99px;
  transition: width .25s ease
}

.b-carousel-section {
  position: relative;
  overflow: hidden;
  padding: 26px 0 58px
}

.b-carousel-section:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 168px;
  height: 3px;
  background: var(--teal-border)
}

.b-carousel-section:after {
  content: "";
  position: absolute;
  left: 0;
  top: 168px;
  width: 44%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-40), var(--color-primary-20))
}

.b-track {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 18px;
  overflow: visible;
  scroll-snap-type: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0 26px;
  justify-content: center
}

.process-card {
  position: relative;
  flex: 0 0 calc((1200px - 54px)/4);
  min-height: 248px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  border: 1px solid var(--teal-border);
  border-radius: 26px;
  padding: 78px 22px 24px;
  box-shadow: 0 18px 42px rgba(25, 83, 200, .10);
  scroll-snap-align: none;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.process-card:hover,
.process-card.active {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(25, 83, 200, .18);
  border-color: var(--teal-mid)
}

.process-card em {
  position: absolute;
  left: 18px;
  top: -32px;
  font-style: normal;
  font-size: 138px;
  font-weight: 900;
  line-height: 1;
  color: var(--teal-tint);
  z-index: 0
}

.process-card small {
  position: relative;
  color: var(--color-primary-40);
  font-weight: 900;
  letter-spacing: .08em
}

.process-card h3 {
  position: relative;
  font-size: var(--text-heading-sm);
  letter-spacing: -.05em;
  margin: 16px 0 10px
}

.process-card h3 span {
  display: block;
  font-size: var(--text-body-sm);
  color: var(--color-primary-40);
  font-weight: 800;
  margin: 6px 0 0;
  letter-spacing: -.02em
}

.process-card p {
  position: relative;
  color: var(--muted);
  font-size: var(--text-body-sm);
  line-height: 1.52;
  margin-bottom: 0
}

.big-cta {
  display: block;
  margin: 26px auto 0;
  border: 1px solid var(--teal-border);
  background: var(--white);
  border-radius: 999px;
  padding: 17px 42px;
  font-weight: 900;
  font-size: var(--text-body-lg);
  box-shadow: 0 14px 32px rgba(25, 83, 200, .13)
}

.big-cta span {
  color: var(--color-primary-40);
  font-size: var(--text-heading-sm);
  margin-left: 10px
}

.section {
  padding: var(--layout-pad-y) var(--layout-pad-x)
}

.section.alt {
  background: var(--white)
}

.b-section {
  background: var(--color-primary-5)
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px
}

.section-head.centered {
  display: block;
  text-align: center
}

.section-head h2 {
  font-size: var(--text-heading-lg);
  letter-spacing: -.055em;
  margin: 0;
  color: var(--ink)
}

.section-head p {
  color: var(--muted);
  font-size: var(--text-body-md)
}

.alumni-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 270px;
  gap: var(--space-3)
}

.alumni-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--color-primary-90);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease
}

.alumni-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow)
}

.alumni-card:nth-child(2) {
  grid-row: span 2
}

.alumni-card:nth-child(5) {
  grid-row: span 2
}

.alumni-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(255, 255, 255, .22), transparent 28%), linear-gradient(180deg, rgba(9, 20, 25, .1), rgba(6, 10, 12, .86))
}

.alumni-card:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .95;
  background: linear-gradient(135deg, rgba(25, 83, 200, .16), rgba(120, 152, 220, .38))
}

.tone0 {
  background: linear-gradient(135deg, #1953c8, #041b4d)
}

.tone1 {
  background: linear-gradient(135deg, #113f9e, #020e31)
}

.tone2 {
  background: linear-gradient(135deg, #0a2e77, #020e31)
}

.tone3 {
  background: linear-gradient(135deg, #2167f4, #041b4d)
}

.tone4 {
  background: linear-gradient(135deg, var(--color-primary-5), var(--color-primary-40))
}

.tone5 {
  background: linear-gradient(135deg, var(--color-primary-20), var(--ink))
}

.alumni-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: var(--white);
  z-index: 2
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(25, 83, 200, .92);
  padding: 8px 12px;
  font-weight: 900;
  font-size: var(--text-body-label);
  color: var(--white)
}

.alumni-card h3 {
  font-size: var(--text-heading-sm);
  margin: 14px 0 8px
}

.alumni-card p {
  font-size: var(--text-body-xs);
  color: rgba(255, 255, 255, .78);
  line-height: 1.55
}

.center-row {
  text-align: center;
  margin-top: 36px
}

.b-more {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--line)
}

.screen-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto
}

.screen-list button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px;
  text-align: left
}

.screen-list b {
  color: var(--color-primary-40);
  margin-right: 8px
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  list-style: none;
  min-height: 44px;
  background: var(--white);
  padding: 0 max(40px, calc(50% - 640px));
  margin: 0;
  color: var(--color-primary-70);
  font-weight: 500;
  font-size: var(--text-body-label);
  letter-spacing: -0.12px
}

.crumb li+li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23113f9e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") no-repeat center / 14px 14px;
  vertical-align: middle;
  margin-right: 2px
}

.crumb li[aria-current] {
  color: var(--color-primary-90);
  font-weight: 700
}

.crumb button,
.crumb a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer
}

/* Subpage shell — decorative background layer */
@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-shell {
  position: relative;
  isolation: isolate;
  animation: page-enter 300ms ease-out both;
}

/* 페이지 타이틀 — 콘텐츠 카드 좌측 상단 (구 .page-hero, esamanru Light 56px) */
.content-card>.page-title {
  font-family: var(--font-display);
  font-size: var(--text-display-md);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -0.56px;
  color: var(--color-primary-95);
  margin: 0 0 36px
}

.page-body {
  padding: 50px max(40px, calc(50% - 640px)) 120px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
}

.side {
  position: sticky;
  top: 110px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 사이드바 상단 — 현재 1depth 카테고리 타이틀 (진한 남색 블록) */
.side-head {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: var(--color-primary-80);
  border-radius: var(--radius-md);
}

.side-head::after {
  content: '';
  position: absolute;
  top: 11px;
  right: -8px;
  width: 173px;
  height: 103px;
  background: url("/images/side-head-deco.png") no-repeat center / contain;
  opacity: .1;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: -1;
}

.side-head-title {
  margin: 0;
  font-weight: 700;
  font-size: var(--text-heading-sm);
  line-height: var(--leading-tight);
  letter-spacing: -0.26px;
  color: var(--white)
}

/* 사이드바 메뉴 박스 (흰색 보더) */
.side-nav {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side button,
.side .side-item {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-weight: 400;
  font-size: var(--text-body-sm);
  letter-spacing: -0.16px;
  color: var(--color-gray-60);
  cursor: pointer
}

.side .active,
.side .side-item.active {
  background: var(--color-primary-5);
  color: var(--color-primary-80);
  font-weight: 700
}

/* 사이드 2뎁스 화살표 (PC 기본 숨김, 모바일에서만 노출) */
.side-arrow {
  margin-left: auto;
  color: var(--muted);
  pointer-events: none;
  flex-shrink: 0;
  display: none
}

svg.side-arrow {
  vertical-align: middle
}

.side .active .side-arrow,
.side .side-item.active .side-arrow {
  color: inherit
}

/* Side Navigation — 3-depth sub items */
.side-subs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 10px;
  margin-bottom: 6px
}

.side .side-sub {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  padding: 6px 10px;
  font-weight: 400;
  font-size: var(--text-body-xs);
  color: var(--color-gray-60);
  border-radius: var(--radius-sm);
  transition: background 150ms, color 150ms;
  line-height: var(--leading-body);
  letter-spacing: -0.14px
}

@media (hover: hover) {
  .side .side-sub:hover {
    background: var(--color-primary-5);
    color: var(--ink)
  }
}

.side .side-sub.active {
  background: transparent;
  color: var(--color-primary-80);
  font-weight: 700
}

.content-card {
  min-width: 0
}

.content-card>.page-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 6px;
  background: var(--color-primary-20);
  border-radius: 0 10px 10px 0;
  margin-top: 6px;
}

/* editorial 페이지(news/press/stories/gallery)는 자체 풀블리드 섹션 보유 — 추가 오버라이드 불필요 */

/* ── 서브 타이틀 박스 ─────────────────────────────────────────
   콘텐츠 카드 상단의 green-tint 인용/타이틀 영역 (h=120px)    */
.content-sub-title {
  background: var(--color-primary-5);
  border: 1px solid var(--color-primary-10);
  border-radius: var(--radius-md);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  flex-shrink: 0;
  margin-bottom: 32px
}

.content-sub-title p:not([class]),
.content-sub-title h2:not([class]),
.content-card .content-sub-title p:not([class]),
.content-card .content-sub-title h2:not([class]) {
  font-family: var(--font-display);
  font-size: var(--text-display-xxsm);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -0.28px;
  color: var(--color-primary-90);
  margin: 0
}

.content-sub-title p:not([class]),
.content-card .content-sub-title p:not([class]) {
  font-size: var(--text-heading-sm)
}

.content-card h2:not([class]) {
  font-family: var(--font-display);
  font-size: var(--text-heading-sm);
  font-weight: 500;
  margin: 0 0 var(--space-3);
  color: var(--color-gray-95)
}

.content-card h3:not([class]) {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  margin: var(--space-8) 0 var(--space-4);
  color: var(--color-gray-95)
}

.content-card p:not([class]) {
  font-size: var(--text-body-md);
  color: var(--color-gray-95);
  line-height: var(--leading-body);
  letter-spacing: -0.18px;
  margin: 0
}

.content-card .notice {
  margin-bottom: var(--space-6)
}

/* 표 뒤에 이어지는 소제목 상단 간격 */
.content-card .table-wrap+h2 {
  margin-top: var(--space-8)
}

/* 절차(.flow) 뒤에 이어지는 소제목 블록 상단 간격 */
.content-card .flow+.content-sub-title {
  margin-top: var(--space-8)
}

.content-card p:not([class])+p:not([class]) {
  margin-top: var(--space-6)
}

/* 콘텐츠 좌우 분할 레이아웃 */
.content-split {
  display: flex;
  gap: 40px;
  align-items: flex-start
}

.content-split-img {
  width: 44%;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  object-fit: cover
}

.content-split-body {
  flex: 1;
  min-width: 0
}

.content-card .content-split-body h3 {
  margin: 0 0 16px 0;
}

.content-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: 28px
}

.content-split--reverse {
  flex-direction: row-reverse;
  margin-top: 28px
}

@media (max-width: 768px) {
  .content-sub-title {
    margin-bottom: 16px;
  }
}

/* ── 인사말(시안A) — 인용형 카드 레이아웃 ───────────────────────── */
/* 카드 (상단 탭 + 그림자) */
.greeting-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  filter: drop-shadow(0 8px 10px rgba(17, 63, 158, 0.05));
}

.greeting-card-tab {
  display: block;
  width: calc(100% - 100px);
  height: 24px;
}

.greeting-card-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 26px 40px 40px 26px;
  background: var(--white);
  border-radius: 40px 0 40px 40px;
}

/* 카드 내부 옅은 실험실 배경 (opacity 20% + 상단 화이트 페이드) */
.greeting-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: scaleX(-1);
  background:
    linear-gradient(163deg, #fff 58%, rgba(255, 255, 255, 0) 90%),
    linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)),
    url('../images/greeting-labbg.png');
  background-repeat: no-repeat;
  background-size: cover, cover, 1050px auto;
  background-position: center, center, left bottom;
}

/* 좌: 인물 사진 + 장식 */
.greeting-photo {
  position: relative;
  z-index: 3;
  flex: 0 0 200px;
  width: 200px;
  height: 267px;
  margin: 0;
  isolation: isolate;
}

.greeting-photo-img {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--color-primary-20);
  border-radius: var(--radius-xl);
}

.greeting-photo-ellipse {
  position: absolute;
  z-index: 2;
  width: 288px;
  height: 288px;
  left: -97px;
  top: 60px;
  pointer-events: none;
}

.greeting-photo-mol {
  position: absolute;
  z-index: 1;
  width: 86px;
  height: 86px;
  left: 131px;
  top: 210px;
  pointer-events: none;
}

/* 우: 인사말 본문 */
.greeting-body {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 리드 인용 블록 */
.greeting-quote {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-primary-20);
}

.greeting-quote-mark {
  flex: 0 0 auto;
  width: 34px;
  height: 28px;
  margin-top: 6px;
}

.greeting-lead {
  margin: 0;
  font-size: var(--text-body-lg);
  line-height: var(--leading-body);
  letter-spacing: -0.26px;
  color: var(--color-gray-95);
}

.greeting-lead .hl {
  color: var(--color-primary-70);
}

/* 본문 문단 */
.greeting-text {
  display: flex;
  flex-direction: column;
}

.greeting-text p {
  margin: 0;
  font-size: var(--text-body-md);
  line-height: var(--leading-body);
  letter-spacing: -0.22px;
  color: var(--color-gray-95);
}

/* 서명 + 닫는 인용부호 */
.greeting-sign {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-end;
}

.greeting-sign-name {
  margin: 0;
  font-size: var(--text-body-md);
  line-height: var(--leading-body);
  letter-spacing: -0.22px;
  color: var(--color-gray-95);
  text-align: right;
}

.greeting-quote-mark--close {
  transform: rotate(180deg);
}

/* 인사말 서명 라인 */
.content-card .content-signoff {
  margin-top: var(--space-6);
  color: var(--ink);
  font-size: var(--text-body-md);
  text-indent: 0;
  text-align: right;
}

.ia-grid,
.card-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

/* ── Person Card ─────────────────────────── */
.person-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px
}

/* 연도 라벨 + 뷰 토글을 한 줄에 (라벨 좌측 · 토글 우측) */
.person-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px
}

.person-bar .renowned-year-label {
  margin-bottom: 0
}

.view-toggle {
  display: flex;
  gap: 4px;
  justify-content: flex-end
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  color: var(--color-gray-40);
  transition: border-color .15s, color .15s
}

.view-btn.on {
  border-color: var(--color-primary-90);
  color: var(--color-primary-90)
}

.person-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

/* Row 레이아웃 */
.person-grid.row {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.person-grid.row .person-card {
  flex-direction: row;
  gap: 22px;
  align-items: flex-start;
  border: none;
  border-bottom: 1px solid var(--color-gray-10);
  border-radius: 0;
  padding: 20px 0 32px 0;
  background: transparent
}

.person-grid.row .person-card:last-child {
  border-bottom: none;
}

.person-grid.row .person-card .person-photo {
  width: 170px;
  aspect-ratio: 4 / 5;
  flex-shrink: 0
}

.person-grid.row .person-card .person-data {
  align-items: flex-start;
  height: 100%
}

.person-grid.row .person-card .person-name {
  font-size: var(--text-heading-md);
  letter-spacing: -0.36px;
  text-align: left;
  line-height: 1.2;
}

.person-grid.row .person-card .person-meta {
  text-align: left
}

.person-grid.row .person-card .badge {
  font-size: var(--text-body-label);
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: -0.12px;
}

.person-card {
  background: var(--white);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-sm);
  padding: 10px 10px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.person-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  background: var(--color-gray-10);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-30)
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 사진 미등록 상태: 인물 아이콘 플레이스홀더 표시.
   .person-photo 안에 <img>를 넣으면 :empty가 풀려 자동으로 사라진다. */
.person-photo:empty {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23a6adbb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 44px 44px;
}

.person-grid+.renowned-year-label,
.story-feature+.renowned-year-label {
  margin-top: 24px;
}

.person-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%
}

.person-card .person-name {
  font-family: var(--font-body);
  font-size: var(--text-heading-sm);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.24px;
  color: var(--dark);
  text-align: center;
  margin: 0
}

/* 이름 미정 카드: 빈 문자열이라도 줄 높이 유지(인접 카드 baseline 정렬 깨짐 방지) */
.person-card .person-name:empty::before {
  content: "\00a0";
}

.person-meta {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: center;
}

.person-card .person-aff {
  font-size: var(--text-body-xs);
  letter-spacing: -0.14px;
  line-height: var(--leading-body);
  color: var(--color-gray-90);
  margin: 0;
}

.person-card .person-desc {
  font-size: var(--text-body-label);
  letter-spacing: -0.14px;
  line-height: var(--leading-body);
  color: var(--color-gray-70);
  margin: 0
}

.person-card .person-aff + .person-desc {
  margin-top: 8px;
}

.person-btn {
  padding-top: 8px
}

.person-btn .primary {
  border-radius: var(--radius-sm);
  border-width: 1px;
  border-color: var(--color-primary-90);
}

.person-grid.row .person-btn {
  padding-top: 12px
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.card,
.ia-grid div,
.card-grid div,
.archive-grid div,
.list>div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow .2s ease, border-color .2s ease
}

.card:hover,
.ia-grid div:hover,
.card-grid div:hover,
.archive-grid div:hover,
.list>div:hover {
  box-shadow: var(--shadow)
}

.faq {
  border-bottom: 1px solid var(--color-gray-20);
  padding: 0 20px
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0 24px;
  text-align: left
}

.faq-q-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0
}

.faq-q-inner>span {
  font-size: var(--text-body-md);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: -0.18px;
  color: var(--dark)
}

/* 좌측 도움말 아이콘: 색 명시 필수 — 미지정 시 button UA 기본 글자색을 currentColor로 상속해
   PC(≈검정)와 모바일(iOS 등 시스템 틴트)에서 색이 달라짐. 질문 텍스트와 동일 톤으로 고정. */
.faq-q-inner>.ic {
  color: var(--dark)
}

.faq-q>.ic {
  flex-shrink: 0;
  color: var(--color-gray-50);
  transition: transform .25s ease
}

.faq.open .faq-q>.ic {
  transform: rotate(180deg)
}

.faq-a {
  display: none;
  align-items: flex-start;
  gap: 10px;
  background: var(--color-gray-5);
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px
}

.faq.open .faq-a {
  display: flex
}

.faq-a-ic {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-top: 2px;
  color: var(--color-primary-60)
}

.faq-a p {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  letter-spacing: -0.16px;
  color: var(--color-primary-90)
}

.ia-grid h3,
.card-grid b,
.archive-grid b {
  color: var(--ink)
}

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  /* 폴백 */
  min-height: calc(100dvh - 80px);
  /* 모던 브라우저 */
  padding: 48px 20px;
  background: var(--bg)
}

.auth-wrap {
  background: var(--white);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  width: 100%;
  max-width: 520px
}

.auth-wrap.wide {
  max-width: 680px
}

.auth-logo {
  display: block;
  height: 40px;
  margin: 0 auto 26px;
  object-fit: contain
}

.auth-wrap h2 {
  font-family: var(--font-display);
  font-size: var(--text-display-sm);
  font-weight: 500;
  text-align: center;
  margin: 0 0 4px;
  letter-spacing: -.04em;
  line-height: var(--leading-tight)
}

.auth-links {
  display: flex;
  justify-content: flex-end;
  margin: 6px 0 20px;
  font-size: var(--text-body-label)
}

.auth-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: var(--text-body-xs);
  color: var(--color-gray-70)
}

.auth-bottom b {
  color: var(--color-primary-80);
  cursor: pointer;
  text-decoration: underline
}

.link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary-80);
  text-decoration: underline;
  font-size: inherit;
  letter-spacing: inherit
}

/* ── Attendance fieldset (lectureApply) ─────── */
.attend-fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0 16px;
  min-width: 0;
  /* fieldset UA min-width:min-content가 좁은 폭에서 오버플로우 유발 → 해제 */
}

.attend-fieldset legend {
  font-size: var(--text-body-xs);
  font-weight: 700;
  color: var(--ink);
  padding: 0 8px
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* 목업 .radio-group: 옵션 레이블 굵게(700), 라디오/체크박스 accent(primary-60) */
.radio-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  margin: 0
}

.radio-group input[type="radio"],
.radio-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary-60);
  cursor: pointer;
  margin: 0;
}

/* accent-color는 체크박스에만 적용 — lectureApply의 단일 라디오 색은 기존 유지 */
.radio-group input[type="checkbox"] {
  accent-color: var(--color-primary-60);
}

.radio-group--stack {
  flex-direction: row;
  gap: var(--space-10);
}

.form-grid .radio-group.radio-group--stack label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  margin: 0;
}

.radio-group--stack input[type="radio"],
.radio-group--stack input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* ── Gallery keyboard access ─────────────────── */
.gallery-grid>[role="button"] {
  cursor: pointer
}

.gallery-grid>[role="button"]:hover b {
  color: var(--color-primary-80)
}

/* ── Focus-visible radius overrides (global ring from namk-ui.css) ── */
.auth-cta:focus-visible {
  border-radius: var(--radius-pill)
}

.faq-q:focus-visible {
  border-radius: var(--radius-md)
}

.auth-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-primary-50);
  background: var(--white);
  color: var(--color-primary-90);
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  font-weight: 700;
  letter-spacing: -0.18px;
  padding: 14px 26px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s
}

.auth-cta:hover {
  background: var(--color-primary-90);
  color: var(--white);
  border-color: var(--color-primary-90)
}

/* ── Field (standalone text input) ─────────── */
.field {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--ink);
  background: var(--white);
  margin-top: 6px;
  transition: border-color .15s, box-shadow .15s
}

/* select(.field) 네이티브 화살표 제거 + 커스텀 chevron + 우측 패딩 확보 */
select.field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23626978' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

select.field::-ms-expand {
  display: none;
}

.field-label {
  display: block;
  font-weight: 700;
  font-size: var(--text-body-xs);
  color: var(--ink);
  margin-bottom: 20px;
}

.auth-wrap input,
.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-weight: 400;
  letter-spacing: -0.18px;
  line-height: 1.5;
  margin-top: 12px;
}

.pw-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 6px
}

.pw-wrap input {
  flex: 1;
  margin-top: 0;
  padding-right: 44px
}

.pw-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--color-gray-50);
  display: flex;
  align-items: center;
  line-height: 1
}

.pw-toggle:hover {
  color: var(--color-gray-80)
}

.auth-wrap input::placeholder,
.form-grid input::placeholder,
.form-grid textarea::placeholder,
.field::placeholder {
  color: var(--color-gray-50);
  letter-spacing: -0.18px
}

.auth-wrap label,
.form-grid label {
  display: block;
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--color-gray-95);
  letter-spacing: -0.14px;
  margin: 0 0 20px 0;
}

.steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  counter-reset: step
}

.steps.spaced {
  margin-bottom: var(--space-7)
}

.steps li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 9px 15px;
  font-weight: 700;
  font-size: var(--text-body-sm);
  color: var(--color-gray-60)
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  border: 1px solid currentColor;
  font-size: var(--text-body-xs);
  line-height: 1;
  flex-shrink: 0
}

.steps li.on {
  background: var(--color-primary-60);
  border-color: var(--color-primary-60);
  color: var(--white)
}

/* 완료된 단계: Scholar's Deep 으로 더 가라앉음 */
.steps li.on:not([aria-current]) {
  background: var(--color-primary-80);
  border-color: var(--color-primary-80);
}

/* 현재 진행 중 단계: 흰 바탕 + Clinical Sage 보더/텍스트 */
.steps li[aria-current="step"] {
  background: var(--white);
  border-color: var(--color-primary-60);
  color: var(--color-primary-60);
}

.steps li[aria-current="step"]::before {
  background: var(--color-primary-60);
  color: var(--white);
}

.tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--color-gray-20)
}

/* hidden 속성으로 탭 바 숨김 — .tabs의 display:flex가 UA [hidden]을 덮으므로 명시 필요 */
.sub-tabs[hidden] {
  display: none;
}

.tabs button {
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  border-radius: 0;
  padding: 8px 20px;
  font-weight: 400;
  font-size: var(--text-body-sm);
  color: var(--color-gray-60);
  transition: color .15s, border-color .15s
}

.tabs button:hover {
  color: var(--color-primary-80)
}

.tabs button.on {
  color: var(--color-primary-60);
  border-bottom-color: var(--color-primary-80);
  font-weight: 700
}

/* Filter chips: 다차원 필터를 한 행에 표시하는 pill 형 토글 */
.filter-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-chips>[role="group"] {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-chips-sep {
  width: 1px;
  height: 16px;
  background: var(--line);
  flex-shrink: 0;
  margin: 0 6px;
  align-self: center;
}

.filter-chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font: 400 var(--text-body-xs)/1.4 var(--font-body);
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.filter-chip:hover {
  color: var(--dark);
  border-color: var(--color-gray-40);
}

.filter-chip.on {
  background: var(--color-primary-5);
  color: var(--color-primary-60);
  border-color: var(--teal-border);
  font-weight: 700;
}

/* 필수 입력 범례 — 폼 상단 1회 안내 (* = 필수) */
.form-legend {
  margin: 0 0 var(--space-4);
  font-size: var(--text-body-sm);
  color: var(--muted);
}

.form-legend .req {
  margin-right: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 4px;
}

.form-grid.one {
  grid-template-columns: 1fr
}

.notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px 14px 16px;
  border-radius: var(--radius-md);
  background: var(--color-primary-5);
  color: var(--color-primary-90);
  font-size: var(--text-body-md);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.18px;
  border: 1px solid var(--color-primary-10);
}

.profile {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-7);
  align-items: center;
  margin-bottom: var(--space-7)
}

.content-card .profile h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.06em;
  font-size: var(--text-display-xsm);
  margin: 0 0 var(--space-1);
}

.profile .badge {
  margin-bottom: var(--space-2)
}

.photo {
  height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-tint), var(--teal-mid));
  display: grid;
  place-items: center;
  color: var(--color-primary-40);
  font-weight: 700;
  text-align: center
}

.profile .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.mission {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--dark), var(--color-primary-90));
  color: var(--white);
  padding: 34px;
  margin-bottom: 18px
}

.org,
.flow {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 22px
}

.flow {
  align-items: center
}

.org li,
.flow li {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px 20px;
  position: relative
}

.flow li+li::before {
  content: '›';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-primary-60);
  font-size: var(--text-body-lg);
  line-height: 1;
  font-weight: 700;
  pointer-events: none
}

.timeline {
  list-style: none;
  padding: 0 0 4px 28px;
  margin: 8px 0 0;
  border-left: 1px solid var(--line)
}

.timeline li {
  margin: 0 0 24px;
  font-size: var(--text-body-md);
  line-height: 1.6;
  letter-spacing: -0.16px;
  color: var(--color-gray-90);
  position: relative
}

.timeline li:last-child {
  margin-bottom: 0
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary-60);
  border: 2px solid var(--white)
}

.timeline li b {
  color: var(--dark)
}

.map {
  height: 320px;
  border: 1px dashed var(--teal-border);
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  background: var(--bg);
  font-weight: 700;
  color: var(--color-primary-80)
}

.info {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  margin-top: 22px
}

.info dt {
  font-size: var(--text-body-sm);
  font-weight: 700
}

.info dd {
  margin: 0;
  font-size: var(--text-body-sm);
  color: var(--muted)
}

.table-wrap {
  overflow: auto;
  margin-bottom: 20px
}

.content-card>.primary,
.content-card>.secondary {
  margin-bottom: 16px
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0
}

th {
  text-align: left;
  background: var(--color-primary-5);
  border-bottom: 1px solid var(--color-primary-40);
  padding: 12px 18px;
  font-size: var(--text-body-md);
  font-weight: 700;
  color: var(--dark)
}

td {
  background: var(--white);
  border-bottom: 1px solid var(--color-gray-20);
  padding: 16px 18px;
  font-size: var(--text-body-md);
  color: var(--color-gray-70)
}

td:first-child {
  border-left: none;
  border-radius: 0
}

td:last-child {
  border-right: none;
  border-radius: 0
}

.files {
  display: grid;
  gap: var(--space-2)
}

/* 단순 파일명 표시(다운로드 불가) — 가급적 .file-down 사용 권장 */
.files>span {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px
}

/* ── 다운로드 가능한 첨부파일 행 (.file-down) ──
   공개 게시물(공지/보도자료 등)의 첨부파일은 기본적으로 다운로드 affordance 제공.
   파일 아이콘 + 파일명 + 메타(형식/용량) + 다운로드 액션을 한 행에 배치. */
.files {
  list-style: none;
  margin: 0;
  padding: 0;
}

.file-down {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  transition: border-color .15s ease, background .15s ease;
}

.file-down:hover {
  border-color: var(--color-primary-60);
  background: var(--color-primary-5);
}

.file-down:focus-visible {
  outline: 2px solid var(--color-primary-50);
  outline-offset: 2px;
}

.file-down-ic {
  flex-shrink: 0;
  color: var(--color-primary-60);
}

.file-down-name {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  word-break: break-all;
}

.file-down-meta {
  flex-shrink: 0;
  font-size: var(--text-body-xs);
  color: var(--muted);
}

.file-down-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: var(--text-body-xs);
  font-weight: 700;
  color: var(--color-primary-80);
}

.file-down-action .ic {
  color: var(--color-primary-60);
}

@media (max-width: 600px) {
  .file-down {
    flex-wrap: wrap;
  }

  .file-down-name {
    flex-basis: 100%;
  }

  .greeting-quote {
    flex-direction: column;
  }
}

/* ── 게시물 상세 헤더/메타 (newsDetail 등) ── */
.post-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-title {
  margin: 0;
}

.post-meta {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body-sm);
}

.post-files-head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-10);
}

/* 이전글/다음글 네비 테이블 */
.post-nav col.post-nav-label {
  width: 90px;
}

.post-nav th,
.post-nav td {
  text-align: left;
}

.post-nav th {
  color: var(--muted);
  font-weight: 600;
}

.post-nav td.is-empty {
  color: var(--muted);
}

.archive-grid {
  grid-template-columns: repeat(5, 1fr)
}

.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px
}

footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted)
}

footer b {
  color: var(--dark)
}

@media(max-width:1240px) {
  .b-track {
    max-width: calc(100vw - 44px)
  }

  .process-card {
    flex-basis: calc((100vw - 104px)/4);
    padding: 76px 18px 22px
  }

  .process-card h3 {
    font-size: var(--text-heading-sm)
  }

  .process-card p {
    font-size: var(--text-body-xs)
  }
}

@media(max-width:1000px) {
  .top {
    height: auto;
    flex-wrap: wrap;
    padding: 14px 22px
  }

  #nav {
    order: 3;
    width: 100%;
    overflow: auto;
    margin-left: 0
  }

  .nav-link.on:after {
    display: none
  }

  .b-track {
    padding: 20px 22px
  }

  .process-card {
    flex-basis: 86vw
  }

  .page-body,
  .profile,
  .contact-layout {
    padding: 0 22px;
    grid-template-columns: 1fr
  }

  /* 1컬럼 구간에서는 LNB 숨김 — 모바일 헤더(햄버거)가 카테고리 내비 제공 */
  .side {
    display: none
  }

  .alumni-grid,
  .screen-list,
  .ia-grid,
  .card-grid,
  .archive-grid,
  .form-grid {
    grid-template-columns: 1fr
  }

  .person-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .person-grid.row .person-card {
    align-items: flex-start;
    gap: 18px;
  }

  .person-grid.row .person-card .person-photo {
    width: 100px;
    height: 138px
  }

  .person-grid.row .person-card .person-name {
    font-size: var(--text-heading-sm);
    text-align: left
  }

  .alumni-card,
  .alumni-card:nth-child(2),
  .alumni-card:nth-child(5) {
    grid-row: auto;
    height: 300px
  }

  .section-head {
    display: block
  }

  .section {
    padding: var(--layout-pad-y-mobile) var(--layout-pad-x-mobile)
  }

  footer {
    display: block;
    padding: 34px 22px
  }

  .radio-group--stack {
    gap: 0;
  }

  .content-card p:not([class]) {
    font-size: var(--text-body-sm);
  }

  .content-card .content-signoff {
    font-size: var(--text-body-sm);
    margin-top: 28px;
  }

  .faq-q-inner>.ic {
    display: none;
  }

  .person-card .person-desc {
    font-size: var(--text-body-label);
  }
}

.digital-section {
  background: var(--bg);
  position: relative;
  overflow: hidden
}

.digital-section:before {
  content: "";
  position: absolute;
  right: -120px;
  top: 70px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 83, 200, .12), transparent 68%)
}

.process-card .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--teal-tint);
  border: 1px solid var(--teal-border);
  color: var(--color-primary-40);
  font-size: var(--text-body-label);
  letter-spacing: -.01em;
  box-shadow: 0 8px 18px rgba(25, 83, 200, .08)
}

.process-card .status-badge i {
  font-style: normal;
  font-size: var(--text-body-xs);
  color: var(--color-primary-40)
}

.process-card h3 {
  font-size: var(--text-heading-md);
  line-height: 1.16;
  margin: 16px 0 12px;
  color: var(--dark);
  letter-spacing: -.06em
}

.process-card h3 span {
  font-size: var(--text-body-sm);
  color: var(--color-primary-40);
  font-weight: 900;
  letter-spacing: -.025em;
  margin-top: 10px
}

.process-card p {
  font-size: var(--text-body-xs);
  line-height: 1.56;
  color: var(--color-gray-60)
}

.b-more,
.center-row .b-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  border: 1px solid var(--teal-border);
  background: linear-gradient(135deg, var(--white), var(--bg));
  color: var(--dark);
  border-radius: 999px;
  min-width: 230px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: var(--text-body-sm);
  box-shadow: 0 16px 34px rgba(25, 83, 200, .14);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.b-more span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-40), var(--color-primary-20));
  color: var(--white);
  font-size: var(--text-body-md);
  line-height: 1
}

.b-more:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-40);
  box-shadow: 0 22px 44px rgba(25, 83, 200, .22)
}

@media(max-width:1000px) {
  .process-card h3 {
    font-size: var(--text-heading-sm)
  }
}

.process-card.compact {
  min-height: 232px;
  padding-bottom: 30px
}

.process-card.compact p {
  display: none
}

.process-card.compact h3 {
  margin-bottom: 0
}

.b-section .section-head {
  margin-bottom: 34px
}

.b-section .section-head p {
  display: none
}

.digital-section .section-head p {
  font-size: var(--text-body-sm);
  margin-top: 12px
}

/* ARCHIVE AWARD SECTION */
.alumni-section-awards {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 2%, rgba(25, 83, 200, .10), transparent 36%),
    linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  padding: 82px 0 92px;
}

.alumni-section-awards::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(25, 83, 200, .18) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .35;
  pointer-events: none;
}

.alumni-section-awards .section-head {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  padding: 0 24px;
}

.alumni-section-awards .b-more {
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 15px 32px rgba(25, 83, 200, .12);
}

.archive-award-stage {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  perspective: 1100px;
  max-width: 1080px;
  width: calc(100vw - 48px);
  min-height: 474px;
  padding: 24px 8px 30px;
  overflow: visible;
  transform: translateZ(0);
}

.archive-award-stage.is-rolling .archive-award-card {
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.archive-award-card,
.archive-award-card:nth-child(n),
.archive-award-card.featured {
  position: relative;
  flex: 0 0 226px;
  width: 226px;
  height: 394px;
  min-height: 394px;
  margin: 0;
  margin-left: -38px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--teal-mid);
  box-shadow: 0 28px 64px rgba(26, 28, 34, .10), 0 18px 42px rgba(25, 83, 200, .10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--dark);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.archive-award-card:first-child {
  margin-left: 0;
}

.archive-award-card.featured {
  flex-basis: 254px;
  width: 254px;
  height: 426px;
  min-height: 426px;
  transform: translateY(-14px);
  border-color: var(--color-primary-60);
  box-shadow: 0 36px 84px rgba(25, 83, 200, .18), 0 24px 56px rgba(26, 28, 34, .12);
}

.archive-award-card:nth-child(1) {
  z-index: 1;
  transform: rotate(-6deg) translateY(24px);
}

.archive-award-card:nth-child(2) {
  z-index: 2;
  transform: rotate(-2.5deg) translateY(8px);
}

.archive-award-card:nth-child(3) {
  z-index: 5;
  transform: translateY(-14px);
}

.archive-award-card:nth-child(4) {
  z-index: 2;
  transform: rotate(2.5deg) translateY(8px);
}

.archive-award-card:nth-child(5) {
  z-index: 1;
  transform: rotate(6deg) translateY(24px);
}

.archive-award-card:hover,
.archive-award-card:nth-child(n):hover {
  z-index: 10;
  transform: translateY(-10px) rotate(0deg);
  box-shadow: 0 42px 92px rgba(25, 83, 200, .18), 0 22px 52px rgba(20, 22, 28, .13);
}

.archive-award-card.featured:hover {
  transform: translateY(-22px);
}

.archive-award-card .award-icon {
  display: none;
}

.archive-award-card .award-photo,
.archive-award-card.featured .award-photo {
  order: 1;
  width: 100%;
  height: 240px;
  flex: 0 0 240px;
  margin: 0;
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  background: var(--color-primary-90);
  position: relative;
}

.archive-award-card.featured .award-photo {
  height: 270px;
  flex-basis: 270px;
}

.archive-award-card .award-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  display: block;
}

.archive-award-card:nth-child(1) .award-photo img {
  object-position: 50% 14%;
}

.archive-award-card:nth-child(2) .award-photo img {
  object-position: 50% 5%;
}

.archive-award-card:nth-child(3) .award-photo img {
  object-position: 50% 5%;
}

.archive-award-card:nth-child(4) .award-photo img {
  object-position: 50% 8%;
}

.archive-award-card:nth-child(5) .award-photo img {
  object-position: 50% 3%;
}

.archive-award-card .award-photo::after,
.archive-award-card.featured .award-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  top: auto;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--white) 82%);
  z-index: 2;
}

.archive-award-card .award-copy,
.archive-award-card.featured .award-copy {
  order: 2;
  padding: 14px 18px 8px;
  background: var(--white);
  color: var(--dark);
}

.archive-award-card .award-copy .field-badge,
.archive-award-card.featured .award-copy .field-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--teal-tint);
  border: 1px solid var(--teal-border);
  color: var(--color-primary-40);
  font-size: var(--text-body-xs);
  font-weight: 900;
}

.archive-award-card .award-copy h3,
.archive-award-card.featured .award-copy h3 {
  margin: 10px 0 6px;
  font-size: var(--text-heading-xs);
  line-height: 1.1;
  letter-spacing: -.065em;
  color: var(--dark);
}

.archive-award-card .award-copy strong,
.archive-award-card.featured .award-copy strong {
  display: block;
  margin: 0 0 6px;
  font-size: var(--text-body-label);
  line-height: 1.35;
  color: var(--color-gray-60);
  font-weight: 800;
}

.archive-award-card .award-copy p,
.archive-award-card.featured .award-copy p {
  display: none;
}

.archive-award-card .award-copy small,
.archive-award-card.featured .award-copy small {
  display: block;
  color: var(--muted);
  font-weight: 900;
  font-size: var(--text-body-xs);
}

.archive-award-card .award-link,
.archive-award-card.featured .award-link {
  display: none;
}

@media (max-width: 980px) {
  .archive-award-stage {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    min-height: 410px;
  }

  .archive-award-card,
  .archive-award-card:nth-child(n),
  .archive-award-card.featured {
    flex-basis: 196px;
    width: 196px;
    height: 356px;
    min-height: 356px;
    margin-left: -46px;
  }

  .archive-award-card.featured {
    flex-basis: 220px;
    width: 220px;
    height: 382px;
    min-height: 382px;
  }

  .archive-award-card .award-photo,
  .archive-award-card.featured .award-photo {
    height: 214px;
    flex-basis: 214px;
  }

  .archive-award-card.featured .award-photo {
    height: 238px;
    flex-basis: 238px;
  }
}

@media (max-width: 720px) {
  .archive-award-stage {
    min-height: 360px;
    padding-left: 0;
    padding-right: 0;
  }

  .archive-award-card,
  .archive-award-card:nth-child(n),
  .archive-award-card.featured {
    flex-basis: 160px;
    width: 160px;
    height: 310px;
    min-height: 310px;
    margin-left: -58px;
  }

  .archive-award-card.featured {
    flex-basis: 184px;
    width: 184px;
    height: 334px;
    min-height: 334px;
  }

  .archive-award-card .award-photo,
  .archive-award-card.featured .award-photo {
    height: 176px;
    flex-basis: 176px;
  }

  .archive-award-card.featured .award-photo {
    height: 198px;
    flex-basis: 198px;
  }

  .archive-award-card .award-copy h3,
  .archive-award-card.featured .award-copy h3 {
    font-size: var(--text-body-md);
  }
}

/* smooth rolling (JS-enhanced: .smooth-rolling-ready 클래스가 추가될 때) */
.archive-award-stage.smooth-rolling-ready {
  position: relative;
  max-width: 1080px;
  width: calc(100vw - 48px);
  min-height: 500px;
  height: 500px;
  overflow: visible;
  display: block;
  padding: 0;
  perspective: 1200px;
}

.archive-award-stage.smooth-rolling-ready .archive-award-card,
.archive-award-stage.smooth-rolling-ready .archive-award-card:nth-child(n),
.archive-award-stage.smooth-rolling-ready .archive-award-card.featured {
  position: absolute;
  left: 50%;
  top: 28px;
  margin: 0;
  flex: none;
  width: 228px;
  height: 396px;
  min-height: 396px;
  transform-origin: center center;
  transition:
    transform .9s cubic-bezier(.22, .61, .25, 1),
    width .9s cubic-bezier(.22, .61, .25, 1),
    height .9s cubic-bezier(.22, .61, .25, 1),
    box-shadow .9s cubic-bezier(.22, .61, .25, 1),
    opacity .65s ease;
  will-change: transform, width, height;
}

.archive-award-stage.smooth-rolling-ready .archive-award-card.pos-0 {
  --x: -374px;
  --y: 34px;
  --r: -7deg;
  --s: .96;
  z-index: 1;
  opacity: .94;
  transform: translateX(calc(-50% + var(--x))) translateY(var(--y)) rotate(var(--r)) scale(var(--s));
}

.archive-award-stage.smooth-rolling-ready .archive-award-card.pos-1 {
  --x: -188px;
  --y: 12px;
  --r: -3deg;
  --s: 1;
  z-index: 3;
  opacity: .98;
  transform: translateX(calc(-50% + var(--x))) translateY(var(--y)) rotate(var(--r)) scale(var(--s));
}

.archive-award-stage.smooth-rolling-ready .archive-award-card.pos-2 {
  --x: 0px;
  --y: -20px;
  --r: 0deg;
  --s: 1.04;
  z-index: 7;
  opacity: 1;
  width: 282px;
  height: 454px;
  min-height: 454px;
  box-shadow: 0 42px 94px rgba(25, 83, 200, .22), 0 26px 60px rgba(26, 28, 34, .14);
  border-color: var(--teal-mid);
  transform: translateX(calc(-50% + var(--x))) translateY(var(--y)) rotate(var(--r)) scale(var(--s));
}

.archive-award-stage.smooth-rolling-ready .archive-award-card.pos-3 {
  --x: 188px;
  --y: 12px;
  --r: 3deg;
  --s: 1;
  z-index: 3;
  opacity: .98;
  transform: translateX(calc(-50% + var(--x))) translateY(var(--y)) rotate(var(--r)) scale(var(--s));
}

.archive-award-stage.smooth-rolling-ready .archive-award-card.pos-4 {
  --x: 374px;
  --y: 34px;
  --r: 7deg;
  --s: .96;
  z-index: 1;
  opacity: .94;
  transform: translateX(calc(-50% + var(--x))) translateY(var(--y)) rotate(var(--r)) scale(var(--s));
}

.archive-award-stage.smooth-rolling-ready .archive-award-card:hover,
.archive-award-stage.smooth-rolling-ready .archive-award-card:nth-child(n):hover {
  z-index: 12;
  transform: translateX(calc(-50% + var(--x))) translateY(calc(var(--y) - 10px)) rotate(0deg) scale(var(--s));
  box-shadow: 0 44px 98px rgba(25, 83, 200, .20), 0 24px 56px rgba(20, 22, 28, .15);
}

.archive-award-stage.smooth-rolling-ready .archive-award-card.pos-2:hover {
  transform: translateX(-50%) translateY(-32px) rotate(0deg) scale(1.045);
}

.archive-award-stage.smooth-rolling-ready .archive-award-card .award-photo,
.archive-award-stage.smooth-rolling-ready .archive-award-card.featured .award-photo {
  height: 242px;
  flex-basis: 242px;
}

.archive-award-stage.smooth-rolling-ready .archive-award-card.pos-2 .award-photo {
  height: 286px;
  flex-basis: 286px;
}

.archive-award-stage.smooth-rolling-ready .archive-award-card .award-copy,
.archive-award-stage.smooth-rolling-ready .archive-award-card.featured .award-copy {
  padding: 14px 18px 8px;
}

.archive-award-stage.smooth-rolling-ready .archive-award-card.pos-2 .award-copy {
  padding: 16px 21px 9px;
}

.archive-award-stage.smooth-rolling-ready .archive-award-card.pos-2 .award-copy h3 {
  font-size: var(--text-heading-sm);
}

@media (max-width: 980px) {
  .archive-award-stage.smooth-rolling-ready {
    width: 100%;
    min-height: 430px;
    height: 430px;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card,
  .archive-award-stage.smooth-rolling-ready .archive-award-card:nth-child(n),
  .archive-award-stage.smooth-rolling-ready .archive-award-card.featured {
    width: 194px;
    height: 352px;
    min-height: 352px;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-0 {
    --x: -270px;
    --y: 30px;
    --s: .92;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-1 {
    --x: -135px;
    --y: 12px;
    --s: .96;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-2 {
    width: 226px;
    height: 386px;
    min-height: 386px;
    --x: 0px;
    --y: -16px;
    --s: 1.02;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-3 {
    --x: 135px;
    --y: 12px;
    --s: .96;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-4 {
    --x: 270px;
    --y: 30px;
    --s: .92;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card .award-photo,
  .archive-award-stage.smooth-rolling-ready .archive-award-card.featured .award-photo {
    height: 210px;
    flex-basis: 210px;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-2 .award-photo {
    height: 236px;
    flex-basis: 236px;
  }
}

@media (max-width: 720px) {
  .archive-award-stage.smooth-rolling-ready {
    min-height: 380px;
    height: 380px;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card,
  .archive-award-stage.smooth-rolling-ready .archive-award-card:nth-child(n),
  .archive-award-stage.smooth-rolling-ready .archive-award-card.featured {
    width: 158px;
    height: 304px;
    min-height: 304px;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-0 {
    --x: -190px;
    --y: 24px;
    --s: .88;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-1 {
    --x: -96px;
    --y: 8px;
    --s: .94;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-2 {
    width: 184px;
    height: 334px;
    min-height: 334px;
    --x: 0px;
    --y: -12px;
    --s: 1.02;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-3 {
    --x: 96px;
    --y: 8px;
    --s: .94;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-4 {
    --x: 190px;
    --y: 24px;
    --s: .88;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card .award-photo,
  .archive-award-stage.smooth-rolling-ready .archive-award-card.featured .award-photo {
    height: 172px;
    flex-basis: 172px;
  }

  .archive-award-stage.smooth-rolling-ready .archive-award-card.pos-2 .award-photo {
    height: 198px;
    flex-basis: 198px;
  }
}

.contact-layout.contact-only {
  margin: 0 auto;
  display: block
}

.contact-layout.contact-only .info {
  width: 100%;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(65, 141, 123, .2);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(65, 141, 123, .08);
  margin-bottom: 32px;
}

.contact-layout.contact-only dt,
.contact-layout.contact-only dd {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(65, 141, 123, .12)
}

.contact-layout.contact-only dt {
  font-weight: 800;
  color: var(--color-primary-90);
  background: var(--white);
  border-right: 1px solid rgba(65, 141, 123, .2)
}

.contact-layout.contact-only dd {
  color: var(--dark)
}

.contact-layout.contact-only dt:last-of-type,
.contact-layout.contact-only dd:last-of-type {
  border-bottom: 0
}

@media(max-width:900px) {
  .contact-layout.contact-only dt,
  .contact-layout.contact-only dd {
    padding: 18px 14px;
  }
}

/* HERO V3 */
.b-hero.b-hero-v3 {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 52px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 72px;
  text-align: left;
  position: relative;
}

.b-hero-v3 .b-eyebrow {
  color: var(--color-accent);
}

.b-hero-v3 h1 {
  text-align: left;
  font-size: clamp(42px, 5.4vw, 74px);
  color: var(--white);
}

.b-hero-v3 .b-hero-body>p {
  text-align: left;
  margin-left: 0;
  color: rgba(212, 218, 253, .68);
}

.b-hero-v3 .b-pill {
  justify-content: flex-start;
}

.b-hero-science {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b-sci-glow {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 129, 249, .22) 0%, rgba(91, 129, 249, .07) 48%, transparent 72%);
  pointer-events: none;
}

.b-sci-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.b-sci-ring-1 {
  width: 350px;
  height: 350px;
  border: 1.5px solid rgba(91, 129, 249, .25);
}

.b-sci-ring-2 {
  width: 450px;
  height: 450px;
  border: 1px solid rgba(91, 129, 249, .12);
  animation: sciPulse 3.8s ease-in-out infinite;
}

.b-sci-icon {
  position: relative;
  z-index: 2;
  font-size: 210px;
  line-height: 1;
  filter: drop-shadow(0 0 36px rgba(91, 129, 249, .68)) drop-shadow(0 0 80px rgba(91, 129, 249, .24));
  user-select: none;
}

@keyframes sciPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .5;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media(max-width:1120px) {
  .b-hero.b-hero-v3 {
    grid-template-columns: 1fr 360px;
    gap: 36px;
    padding: 60px 32px 56px
  }

  .b-hero-science {
    height: 380px
  }

  .b-sci-ring-1 {
    width: 280px;
    height: 280px
  }

  .b-sci-ring-2 {
    width: 360px;
    height: 360px
  }

  .b-sci-icon {
    font-size: 170px
  }
}

@media(max-width:900px) {
  .b-hero.b-hero-v3 {
    grid-template-columns: 1fr;
    padding: 44px 24px 40px;
    text-align: center
  }

  .b-hero-v3 h1,
  .b-hero-v3 .b-hero-body>p {
    text-align: center
  }

  .b-hero-v3 .b-pill {
    justify-content: center
  }

  .b-hero-science {
    height: 260px
  }

  .b-sci-ring-1 {
    width: 210px;
    height: 210px
  }

  .b-sci-ring-2 {
    width: 270px;
    height: 270px
  }

  .b-sci-icon {
    font-size: 130px
  }
}


/* DIGITAL CONTENT LAYOUT */
.dig-layout {
  display: grid;
  grid-template-columns: 1fr 296px;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 36px;
  align-items: start;
}

.dig-featured {
  border-radius: 8px;
  overflow: hidden;
  background: #1a3a72;
  cursor: pointer;
  transition: opacity .2s;
}

.dig-featured:hover {
  opacity: .92;
}

.dig-featured-thumb {
  position: relative;
  height: 296px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  gap: var(--space-2);
}

.dig-featured-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dig-featured.lecture .dig-featured-thumb::before {
  background: linear-gradient(135deg, rgba(91, 129, 249, .72), rgba(15, 50, 130, .58)), linear-gradient(145deg, #091438, var(--color-primary-95));
}

.dig-featured.interview .dig-featured-thumb::before {
  background: linear-gradient(135deg, rgba(80, 110, 230, .70), rgba(15, 50, 130, .68)), linear-gradient(145deg, #0a1838, #040b28);
}

.dig-featured.documentary .dig-featured-thumb::before {
  background: linear-gradient(135deg, rgba(60, 95, 200, .72), rgba(15, 45, 110, .62)), linear-gradient(145deg, #0d1c3a, #060a22);
}

.dig-featured.case .dig-featured-thumb::before {
  background: linear-gradient(135deg, rgba(91, 129, 249, .75), rgba(10, 40, 110, .62)), linear-gradient(145deg, #0a1f48, #040b28);
}

.dig-featured-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  border: 2px solid rgba(255, 255, 255, .42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-body-lg);
  color: var(--white);
  transition: background .2s, transform .2s;
  z-index: 2;
}

.dig-featured:hover .dig-featured-play {
  background: rgba(91, 129, 249, .62);
  border-color: rgba(91, 129, 249, .88);
  transform: translate(-50%, -60%) scale(1.08);
}

.dig-badge-type,
.dig-badge-lang {
  position: relative;
  z-index: 2;
  font-size: var(--text-body-xs);
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(91, 129, 249, .18);
  border: 1px solid rgba(91, 129, 249, .35);
  color: var(--color-accent);
}

.dig-badge-lang {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .85);
}

.dig-featured-info {
  padding: 18px 22px 20px;
}

.dig-featured-info h3 {
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: #e8eefb;
  margin: 0 0 7px;
  line-height: 1.45;
}

.dig-featured-info p {
  font-size: var(--text-body-label);
  color: rgba(212, 218, 253, .52);
  margin: 0;
}

.dig-list {
  display: flex;
  flex-direction: column;
  max-height: 360px;
  overflow-y: auto;
}

.dig-list::-webkit-scrollbar {
  width: 3px;
}

.dig-list::-webkit-scrollbar-track {
  background: transparent;
}

.dig-list::-webkit-scrollbar-thumb {
  background: rgba(91, 129, 249, .22);
  border-radius: 2px;
}

.dig-item {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  padding: 11px 10px 11px 14px;
  border-bottom: 1px solid rgba(91, 129, 249, .07);
  background: transparent;
  cursor: pointer;
  transition: background .15s;
}

.dig-item:first-child {
  border-top: 1px solid rgba(91, 129, 249, .07);
}

.dig-item:hover {
  background: rgba(91, 129, 249, .05);
}

.dig-item.active {
  background: rgba(91, 129, 249, .09);
  padding-left: 16px;
}

.dig-item-thumb {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-body-label);
  color: rgba(255, 255, 255, .8);
  position: relative;
  overflow: hidden;
}

.dig-item-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
}

.dig-item.lecture .dig-item-thumb::before {
  background: linear-gradient(135deg, rgba(91, 129, 249, .65), rgba(15, 50, 120, .75));
}

.dig-item.interview .dig-item-thumb::before {
  background: linear-gradient(135deg, rgba(80, 110, 230, .65), rgba(15, 48, 115, .75));
}

.dig-item.documentary .dig-item-thumb::before {
  background: linear-gradient(135deg, rgba(60, 95, 200, .65), rgba(15, 45, 110, .75));
}

.dig-item.case .dig-item-thumb::before {
  background: linear-gradient(135deg, rgba(91, 129, 249, .62), rgba(10, 40, 110, .72));
}

.dig-item-thumb span {
  position: relative;
  z-index: 1;
}

.dig-item-info {
  flex: 1;
  min-width: 0;
}

.dig-item-info small {
  display: block;
  font-size: var(--text-body-xs);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 3px;
}

.dig-item-info p {
  font-size: var(--text-body-label);
  color: rgba(212, 218, 253, .68);
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media(max-width:960px) {
  .dig-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .dig-featured-thumb {
    height: 220px;
  }

  .dig-list {
    max-height: none;
  }
}

/* ── Success hero (complete page) ── */
.success-hero {
  text-align: center;
  padding: 32px 0 28px;
  margin-bottom: 24px
}

.success-hero-ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-tint);
  border: 2px solid var(--teal-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-60);
  margin-bottom: 16px
}

.success-hero .success-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-heading-lg);
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 8px;
  letter-spacing: -0.06em;
  line-height: var(--leading-tight);
}

.success-hero .success-hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary-60);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.success-hero p b {
  color: var(--ink);
  font-weight: 700;
}

.success-hero p {
  color: var(--muted);
  font-size: var(--text-body-md);
  margin: 0
}

/* ── Icon utilities ── */
.ic {
  display: inline-block;
  vertical-align: -.15em;
  flex-shrink: 0
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 10px 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 18px
}

/* 검색폼 하단 여백 확대(목록 상단과 분리) — 인라인 style 대체 */
.search.has-gap {
  margin-bottom: 28px;
}

/* 검색바 + 페이지당 건수 선택기 한 줄 배치 (좁으면 셀렉터가 아래로 줄바꿈) */
.search-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.search-row .search {
  flex: 1 1 240px;
  min-width: 0;
  margin-bottom: 0;
}

.news-size-select {
  display: inline-flex;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* 줄바꿈으로 셀렉터가 단독 줄에 떨어져도 찌부러지지 않도록 고유 높이 확보(터치타겟 44px). 데스크탑에선 search-row stretch가 우선 */
  min-height: 44px;
  border: none;
  background: transparent;
  padding: 0 16px;
  font: 400 var(--text-body-xs)/1 var(--font-body);
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.size-btn+.size-btn {
  border-left: 1px solid var(--line);
}

.size-btn:hover {
  color: var(--dark);
  background: var(--color-gray-5);
}

.size-btn.on {
  background: var(--color-primary-60);
  color: var(--color-gray-0);
  font-weight: 700;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  letter-spacing: -0.18px;
  color: var(--ink);
  outline: none;
  min-width: 0;
  padding: 0
}

.search-input::placeholder {
  color: var(--color-gray-50)
}

.search>button {
  color: var(--color-primary-95);
  background: transparent;
  border: 1px solid var(--color-primary-90);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: -0.12px;
  cursor: pointer;
  flex-shrink: 0
}

.file-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.file-chips button,
.file-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-family: inherit;
  color: var(--color-gray-70);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.file-chips button:hover,
.file-chips span:hover {
  background: var(--color-primary-5);
  border-color: var(--color-primary-40);
  color: var(--color-primary-80);
}

.file-chips button:focus-visible {
  outline: 2px solid var(--color-primary-50);
  outline-offset: 2px;
}

.file-chips .ic {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.img-ph {
  background: var(--bg);
  border-radius: var(--radius-md);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--color-gray-30)
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.icon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--color-gray-10);
  border-radius: var(--radius-md);
  padding: 80px 20px 20px;
  overflow: hidden;
  background: linear-gradient(31deg, rgba(188, 229, 220, 0) 65%, rgba(188, 229, 220, 0.2) 95%);
  color: var(--color-primary-60)
}

.icon-card-bg {
  position: absolute;
  top: -1px;
  right: 0;
  width: 190px;
  height: 238px;
  opacity: 0.1;
  object-fit: cover;
  pointer-events: none
}

.icon-card-data b {
  display: block;
  font-size: var(--text-heading-md);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.36px;
  color: var(--dark);
  margin: 0
}

.icon-card-data p {
  font-size: var(--text-body-md);
  line-height: var(--leading-body);
  letter-spacing: -0.18px;
  color: var(--color-gray-70);
  margin: 0
}

.list-row {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.list-row>.ic {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary-60)
}

/* ── List Event Item ──────────────────── */
.list-item-row {
  display: flex;
  align-items: flex-start;
  gap: 20px
}

.list-item-body {
  flex: 1;
  min-width: 0
}

.list-item-body>.badge {
  margin-bottom: 8px
}

.list-item-title {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
  letter-spacing: -.02em
}

.list-item-speaker {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 3px
}

.list-item-sub {
  font-size: var(--text-body-sm);
  color: var(--muted);
  margin: 0 0 2px
}

.list-item-action {
  flex-shrink: 0;
  padding-top: 2px
}

/* 좁은 화면: 액션을 본문 아래로 스택(좁은 셀에서 버튼이 어색하게 접히는 문제 방지) */
@media (max-width: 600px) {
  .list-item-row {
    flex-direction: column;
    gap: 14px;
  }

  .list-item-action {
    padding-top: 0;
    width: 100%;
  }

  .list-item-action .row-actions {
    justify-content: flex-start;
  }

  .list-item-sub {
    font-size: var(--text-body-xs);
    line-height: var(--leading-body);
  }

  .list-item-speaker {
    margin-bottom: 16px;
    font-size: var(--text-body-sm);
  }

  .list-item-title {
    font-size: var(--text-body-lg);
  }
}

/* ── Story Item (Video) ─────────────────── */
.story-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px
}

.story-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.story-item[role="button"] {
  cursor: pointer
}

.story-item.lg {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
}

.story-thumb {
  position: relative;
  width: 220px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-primary-80);
  flex-shrink: 0
}

.story-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.story-thumb.lg {
  width: 100%;
  height: auto;
  aspect-ratio: 551 / 289;
}

.story-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 16, 0.5)
}

.story-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-90);
  padding-left: 5px;
}

.story-item.lg .story-play {
  width: 80px;
  height: 80px
}

.story-thumb .story-badges {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0
}

.story-content .story-badges {
  display: flex;
  gap: 8px;
  align-items: center
}

.story-title {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  line-height: var(--leading-body);
  letter-spacing: -0.22px;
  color: var(--dark);
  margin: 0
}

.story-meta {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  letter-spacing: -0.14px;
  color: var(--color-gray-70);
  margin: 0
}

/* ── Gallery Grid ─────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px
}

.gallery-grid>div {
  font-size: var(--text-body-xs);
  color: var(--muted)
}

.gallery-grid>div b {
  display: block;
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--dark);
  margin: 6px 0 4px
}

/* ── Responsive: Tablet (768px–999px) ──────── */
@media (min-width: 768px) and (max-width: 999px) {

  /* 크럼: 데스크탑 40px → 태블릿 22px (page-body와 통일) */
  .crumb {
    padding: 0 22px;
  }

  /* 페이지 타이틀: 태블릿에서 축소 */
  .content-card>.page-title {
    font-size: var(--text-display-sm)
  }

  /* 콘텐츠 카드: 34px → 26px */
  .content-card {
    padding: 26px
  }

  /* 섹션 헤딩 */
  .section-head h2 {
    font-size: var(--text-heading-md)
  }

  .section-head p {
    font-size: var(--text-body-sm)
  }

  /* (auth 반응형은 components.css 단일 블록으로 이관) */

  /* 탭: 태블릿에서도 줄바꿈 없이 가로 스크롤 */
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none
  }

  .tabs button {
    white-space: nowrap;
    padding: 8px 16px
  }

  /* 갤러리: 3열 → 2열 */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  /* 아이콘 그리드: minmax 완화 */
  .icon-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
  }

  /* 영상 썸네일: 살짝 축소 */
  .story-thumb {
    width: 230px;
    height: 130px;
  }

  /* 미션 박스 */
  .mission {
    padding: 28px 24px
  }
}

/* ── 인사말(시안A): 999px 미만에서 카드 세로 스택 (999px부터 가로 배치) ──── */
@media (max-width: 998px) {
  .greeting-card-inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .greeting-photo {
    align-self: center;
  }

  .greeting-body {
    width: 100%;
  }
}

/* ── Responsive: 767px — Mobile Primary ──── */
@media (max-width: 767px) {
  .content-card>.page-title {
    font-size: var(--text-heading-md);
    margin-bottom: 40px;
  }

  .crumb {
    padding: 0 16px;
  }

  .page-body {
    padding: 0 16px;
  }

  .contact-layout {
    padding: 0;
  }

  .profile {
    padding: 16px 0;
  }

  .content-card {
    padding: 20px 0
  }

  .content-split {
    flex-direction: column
  }

  .content-split-img {
    width: 100%
  }

  .content-hero-img {
    height: 200px
  }

  .content-split--reverse {
    flex-direction: column
  }

  /* 인사말(시안A): 폰에서 카드 박스 해제 — 배경·패딩·그림자·상단탭·실험실배경 제거, 본문 풀폭
     (장식 클리핑·가로 오버플로우 방지를 위해 .greeting-card-inner overflow:hidden은 유지) */
  .greeting-card {
    filter: none;
  }

  .greeting-card-tab {
    display: none;
  }

  .greeting-card-bg {
    display: none;
  }

  .greeting-card-inner {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .greeting-lead {
    font-size: var(--text-body-md);
  }

  .greeting-text p {
    font-size: var(--text-body-sm);
  }

  .greeting-sign-name {
    font-size: var(--text-body-sm);
  }

  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .tabs::-webkit-scrollbar {
    display: none
  }

  .tabs button {
    white-space: nowrap;
    padding: 8px 14px
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .icon-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
  }

  .info {
    grid-template-columns: 120px 1fr
  }

  .mission {
    padding: 24px 16px
  }

  .org li,
  .flow li {
    padding: 12px 14px
  }

  .flow li+li::before {
    display: none
  }

  .story-thumb {
    width: 140px;
    height: 74px
  }

  .section-head h2 {
    font-size: var(--text-heading-md)
  }

  .section-head p {
    font-size: var(--text-body-sm)
  }

  .alumni-card h3 {
    font-size: var(--text-body-md)
  }

  /* iOS 자동 줌 방지(≥16px) + 좁은 화면 placeholder 잘림 방지: 폼 입력 16px 강제
     (.auth-wrap 입력은 components.css auth 반응형 블록이 담당) */
  .form-grid input,
  .form-grid select,
  .form-grid textarea,
  .field,
  .search-input {
    font-size: 18px !important;
  }

  /* 터치 타겟: 탭·버튼 */
  .tabs button {
    min-height: 44px;
    padding: 12px 16px;
  }

  .primary,
  .secondary,
  .apply {
    padding: 10px 26px;
    min-height: 44px;
  }

  /* (pw-toggle 터치 영역은 components.css auth 반응형 블록으로 이관) */

  /* 라디오 그룹 터치 영역 */
  .radio-group label {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 0;
  }

  /* faq: content-card 좌우 패딩 0 전환에 맞춰 컨테이너 들여쓰기 제거 */
  .faq {
    padding: 0;
  }

  /* faq 아코디언 최소 높이 */
  .faq-q {
    min-height: 56px;
  }

  /* .page-body/.profile/.contact-layout 1컬럼 전환은 1000px 블록에서 처리(상속) */

  .person-grid.row {
    grid-template-columns: 1fr;
    gap: 0
  }

  /* 테이블 모바일 가로 스크롤 */
  .content-card>table,
  .table-wrap table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  /* .notice 모바일 정렬 */
  .notice {
    align-items: flex-start;
    padding: 12px 14px;
    font-size: var(--text-body-sm);
    gap: 6px;
  }

  .notice .ic {
    margin-top: 2px;
    flex-shrink: 0;
  }

  /* .news-grid 601–767px 구간 1열 전환 */
  .news-grid {
    grid-template-columns: 1fr;
  }

  /* .success-hero 모바일 폰트 축소 */
  .success-hero .success-hero-title {
    font-size: var(--text-heading-md);
  }

  .success-hero {
    padding: 24px 0 20px;
  }

  /* .info dd overflow 방지 */
  .info {
    grid-template-columns: 1fr;
  }

  .info dd {
    word-break: break-word;
    min-width: 0;
  }

  .content-card .lede,
  .renowned-grid .story-card-name,
  .gallery-item--wide .gallery-title {
    font-size: var(--text-body-md);
  }
}

/* ── Responsive: 480px — Small Screens ───── */
@media (max-width: 480px) {
  .person-grid {
    grid-template-columns: 1fr
  }

  .person-grid.row .person-card .person-photo {
    width: 120px;
    height: 150px
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .icon-grid {
    grid-template-columns: 1fr
  }

  .content-card {
    padding: 16px 0
  }

  .faq-q {
    padding: 10px 0 18px
  }

  .faq-q-inner>span {
    font-size: var(--text-body-sm)
  }

  .steps {
    gap: 6px
  }

  .steps li {
    font-size: var(--text-body-xs);
    padding: 7px 11px
  }

  .info {
    grid-template-columns: 1fr;
    gap: 4px
  }

  .info dt {
    margin-top: 12px
  }

  .info dt:first-child {
    margin-top: 0
  }

  .story-item {
    align-items: flex-start
  }

  .story-thumb {
    width: 120px;
    height: 63px
  }

  .section-head h2 {
    font-size: var(--text-heading-xs)
  }

  .content-card h2:not([class]) {
    font-size: var(--text-display-xsm);
  }

  .story-title {
    font-size: var(--text-body-md)
  }

  .person-grid.row .person-card .person-name {
    font-size: var(--text-heading-sm)
  }

  .alumni-card h3 {
    font-size: var(--text-body-sm)
  }

  /* .gallery-asymmetric 480px 캡션 개선 */
  .gallery-asymmetric {
    grid-auto-rows: 140px;
  }

  .gallery-caption {
    padding: 8px 10px 8px;
  }

  .gallery-title {
    font-size: var(--text-body-sm);
  }

  .gallery-meta {
    display: none;
  }

  /* .press-quote-mark 480px 추가 축소 */
  .press-quote-mark {
    font-size: 80px;
    top: 4px;
    left: 14px;
  }

  .press-pull-quote {
    padding: 22px 22px 26px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Editorial Content Pages — news / press / stories / gallery
   Modern impact layouts that escape generic table/list patterns.
   ═══════════════════════════════════════════════════════════════ */

/* ── NEWS: Editorial Featured + Card Grid ─────────────────────── */
.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
  margin-bottom: 56px;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.news-featured:hover {
  border-color: var(--teal-border);
  box-shadow: 0 18px 42px rgba(25, 83, 200, .10);
  transform: translateY(-2px);
}

.news-featured:focus-visible {
  outline: 2px solid var(--color-primary-60);
  outline-offset: 3px;
}

.news-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--color-gray-5);
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.news-featured:hover .news-featured-img img {
  transform: scale(1.03);
}

.news-featured-body {
  padding: 38px 36px 38px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.news-featured-tags {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-featured-tags .news-date {
  font-size: var(--text-body-sm);
  color: var(--muted);
  letter-spacing: -.02em;
}

.news-featured-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.04em;
  color: var(--dark);
  margin: 0;
}

.news-featured-excerpt {
  font-size: var(--text-body-md);
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

.news-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-weight: 700;
  color: var(--color-primary-60);
  font-size: var(--text-body-sm);
}

.news-featured:hover .news-featured-cta {
  color: var(--color-primary-80);
}

.news-section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.news-eyebrow {
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--color-primary-60);
  text-transform: uppercase;
}

.news-section-head h3 {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--dark);
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.news-card:hover {
  border-color: var(--teal-border);
  box-shadow: 0 12px 28px rgba(25, 83, 200, .10);
  transform: translateY(-3px);
}

.news-card:focus-visible {
  outline: 2px solid var(--color-primary-60);
  outline-offset: 3px;
}

.news-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--color-gray-5);
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: none;
  border: 1px solid var(--line);
  color: var(--text-sub);
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--radius-pill);
}

.news-card-badge--alt {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--line);
}

.news-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.news-card-title {
  font-size: var(--text-body-md);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.02em;
  color: var(--dark);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  font-size: var(--text-body-xs);
  color: var(--muted);
}

.news-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-card-meta svg {
  color: var(--muted);
}

.news-archive {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.news-archive-head {
  margin-bottom: 16px;
}

.news-archive-head h3 {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--dark);
  margin: 0 0 4px;
}

.news-archive-head p {
  font-size: var(--text-body-sm);
  color: var(--muted);
  margin: 0;
}

/* ── PRESS: Magazine Pull-Quote Layout ────────────────────────── */
.press-header {
  background: var(--teal-tint);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.press-eyebrow {
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-primary-60);
  text-transform: uppercase;
}

.press-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.05em;
  color: var(--dark);
  margin: 4px 0 0;
}

.press-subhead {
  font-size: var(--text-body-md);
  color: var(--ink);
  margin: 4px 0 0;
  line-height: 1.55;
}

.press-pull-quote {
  position: relative;
  margin: 0 0 48px;
  padding: 40px 40px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.press-pull-quote:has(+ .press-pull-quote) {
  margin-bottom: 20px;
}

.press-pull-quote+.press-pull-quote {
  margin-top: 0;
}

.press-quote-mark {
  position: absolute;
  top: 34px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 140px;
  line-height: 1;
  color: var(--color-primary-5);
  pointer-events: none;
  user-select: none;
}

.press-pull-quote blockquote {
  position: relative;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.press-pull-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.035em;
  color: var(--dark);
  margin: 0;
}

.press-pull-quote figcaption {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--text-body-xs);
}

.press-quote-media {
  font-weight: 700;
  color: var(--color-primary-60);
  letter-spacing: -.01em;
}

.press-quote-date {
  color: var(--muted);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.press-card:hover {
  border-color: var(--teal-border);
  box-shadow: 0 12px 28px rgba(25, 83, 200, .10);
  transform: translateY(-2px);
}

.press-card:focus-visible {
  outline: 2px solid var(--color-primary-60);
  outline-offset: 3px;
}

.press-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.press-card-media {
  display: inline-flex;
  padding: 4px 12px;
  background: var(--color-primary-5);
  color: var(--color-primary-80);
  border-radius: var(--radius-pill);
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: -.01em;
}

.press-card-top svg {
  color: var(--muted);
  transition: color .2s ease;
}

.press-card:hover .press-card-top svg {
  color: var(--color-primary-60);
}

.press-card-title {
  font-size: var(--text-body-lg);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -.02em;
  color: var(--dark);
  margin: 0;
  min-height: 70px;
}

.press-card-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-body-xs);
  color: var(--muted);
  margin-top: auto;
}

/* 날짜 줄 안의 원본 기사 바로가기 아이콘: 오른쪽 끝 정렬 */
.press-card-date .press-link-flex {
  margin-left: auto;
  color: var(--muted);
  transition: color .2s ease;
}

.press-card:hover .press-card-date .press-link-flex {
  color: var(--color-primary-60);
}

.press-archive {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* ── STORIES: Pioneer Feature + Video Hero ────────────────────── */
.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 90px;
}

.story-feature-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-gray-5);
  border: 1px solid var(--line);
}

.story-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-feature-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-feature-eyebrow {
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-primary-60);
  text-transform: uppercase;
}

.story-feature-name {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.05em;
  color: var(--dark);
  margin: 0;
}

.story-feature-aff {
  font-size: var(--text-body-md);
  color: var(--muted);
  margin: 0 0 6px;
}

.story-feature-quote {
  position: relative;
  padding-left: 18px;
  border-left: 1px solid var(--color-primary-60);
  font-size: var(--text-body-md);
  line-height: 1.6;
  color: var(--ink);
  margin: 14px 0 14px;
}

.story-feature-body .primary.sm {
  align-self: flex-start;
  margin-top: 4px;
}

.story-feature-body .badge {
  align-self: flex-start;
}

.story-feature--sm {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.story-section-head {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-eyebrow {
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--color-primary-60);
  text-transform: uppercase;
}

.story-section-head h3:not([class]) {
  font-size: var(--text-heading-md);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--dark);
  margin: 0;
}

.story-section-head p:not([class]) {
  font-size: var(--text-body-sm);
  color: var(--muted);
  margin: 4px 0 0;
}

.story-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.story-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.story-card:hover {
  border-color: var(--teal-border);
  box-shadow: 0 12px 28px rgba(25, 83, 200, .10);
  transform: translateY(-2px);
}

.story-card:focus-visible {
  outline: 2px solid var(--color-primary-60);
  outline-offset: 3px;
}

.story-card-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-gray-5);
}

.story-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 카드 이미지 위 수상 구분 배지 오버레이 (저명/우수) ── */
.renowned-feature-img,
.renowned-grid .story-card-img {
  position: relative;
}

.tier-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(2, 14, 49, .28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.renowned-feature-img .tier-badge {
  font-size: var(--text-body-xs);
  padding: 6px 12px;
}

.renowned-grid .tier-badge {
  left: 10px;
  bottom: 8px;
}

/* 배경에만 투명도(글씨는 불투명 유지) — 85% = 15% 투명, 숫자 낮출수록 더 투명 */
.tier-badge--top {
  background: color-mix(in srgb, var(--color-primary-95) 85%, transparent);
  color: var(--color-gray-0);
}

.tier-badge--excellent {
  background: color-mix(in srgb, var(--color-primary-70) 85%, transparent);
  color: var(--color-gray-0);
}

.story-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 0;
}

.story-card-body .badge.sm {
  align-self: flex-start;
  font-size: var(--text-body-label);
  padding: 4px 12px;
}

.story-card-name {
  font-family: var(--font-body);
  font-size: var(--text-heading-md);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--dark);
  margin: 4px 0 0;
}

.story-card-aff {
  font-size: var(--text-body-xs);
  color: var(--muted);
  margin: 0;
}

.story-card-desc {
  font-size: var(--text-body-sm);
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

/* ── STORIES: full-width row list variant ────────────────────── */
.story-card-grid--row {
  grid-template-columns: 1fr;
  gap: 14px;
}

.story-card-grid--row .story-card {
  grid-template-columns: 180px 1fr auto;
  align-items: center;
}

.story-card-chevron {
  display: none;
}

.story-card-grid--row .story-card-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 8px;
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}

.story-card-grid--row .story-card-chevron svg {
  width: 24px;
  height: 24px;
}

.story-card-grid--row .story-card:hover .story-card-chevron {
  color: var(--color-primary-60);
  transform: translateX(3px);
}

@media (max-width: 999px) {
  .story-card-desc {
    font-size: var(--text-body-xs);
  }
}

/* ── RENOWNED: 1-left featured + 2×2-right grid layout ────────── */
.renowned-year-label {
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  font-weight: 500;
  color: var(--color-primary-80);
  margin-bottom: 18px;
}

.renowned-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.renowned-feature {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.renowned-feature:hover {
  border-color: var(--teal-border);
  box-shadow: 0 12px 28px rgba(25, 83, 200, .10);
  transform: translateY(-2px);
}

.renowned-feature:focus-visible {
  outline: 2px solid var(--color-primary-60);
  outline-offset: 3px;
}

.renowned-feature-img {
  flex: 1;
  min-height: 0;
  max-height: 260px;
  overflow: hidden;
  background: var(--color-gray-5);
}

.renowned-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.renowned-feature-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 20px;
}

.renowned-feature-body .story-feature-eyebrow {
  font-size: var(--text-body-xs);
  letter-spacing: .1em;
  margin-bottom: 3px;
}

.renowned-feature-body .story-feature-name {
  font-size: var(--text-display-sm);
  margin: 0;
}

.renowned-feature-body .story-feature-aff {
  font-size: var(--text-body-xs);
  margin: 0;
}

.renowned-feature-body .story-feature-quote {
  font-size: var(--text-body-sm);
  padding-left: 12px;
  margin: 4px 0 0;
  line-height: 1.5;
}

.renowned-feature-body p+p,
.renowned-grid .story-card-body p+p {
  margin-top: 0;
  line-height: 1.2;
}

.renowned-feature-body .primary.sm {
  align-self: flex-start;
  margin-top: 8px;
}

.renowned-grid {
  gap: 10px;
  height: 100%;
  grid-template-rows: 1fr 1fr;
}

.renowned-grid .story-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.renowned-grid .story-card-img {
  flex: 1;
  min-height: 0;
  max-height: 160px;
  border-radius: 0;
  width: 100%;
}

.renowned-grid .story-card-body {
  padding: 20px 18px 22px;
  gap: 8px;
}

.renowned-grid .story-card-name {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0;
}

.renowned-grid .story-card-aff {
  font-size: var(--text-body-label);
}

.renowned-grid .story-card-desc {
  font-size: var(--text-body-xs);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Video hero — for stories interview tab */
.video-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.video-hero:hover {
  border-color: var(--teal-border);
  box-shadow: 0 18px 42px rgba(25, 83, 200, .10);
  transform: translateY(-2px);
}

.video-hero:focus-visible {
  outline: 2px solid var(--color-primary-60);
  outline-offset: 3px;
}

.video-hero-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--color-gray-95);
  overflow: hidden;
  width: 100%;
}

.video-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.video-hero:hover .video-hero-img img {
  transform: scale(1.04);
}

.video-hero-body {
  padding: 24px 24px 28px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.video-hero-body .badge,
.video-hero-body button,
.video-hero-body .primary,
.video-hero-body .secondary,
.video-hero-body .apply {
  /* 링크형 버튼(.primary 등)도 flex 컬럼에서 꽉 차지 않도록 내용 너비로 */
  align-self: flex-start;
}

.video-hero-eyebrow {
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--color-primary-60);
  text-transform: uppercase;
}

.video-hero-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.04em;
  color: var(--dark);
  margin: 0;
}

.video-hero-meta {
  font-size: var(--text-body-xs);
  color: var(--muted);
  margin: 0;
}

.video-hero-excerpt {
  font-size: var(--text-body-sm);
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

/* Play overlay — shared by stories video + gallery video */
.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .94);
  border-radius: 50%;
  color: var(--color-primary-60);
  pointer-events: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  padding-left: 4px;
}

.video-hero:hover .video-play-overlay,
.video-thumb:hover .video-play-overlay,
.gallery-item--video:hover .video-play-overlay {
  background: var(--color-primary-60);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 12px 28px rgba(25, 83, 200, .18);
}

.video-duration {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 4px 10px;
  background: rgba(17, 20, 24, .82);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: var(--text-body-xs);
  font-weight: 700;
  letter-spacing: -.01em;
}

.video-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.video-thumb {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.video-thumb:hover {
  border-color: var(--teal-border);
  box-shadow: 0 12px 28px rgba(25, 83, 200, .10);
  transform: translateY(-2px);
}

.video-thumb:focus-visible {
  outline: 2px solid var(--color-primary-60);
  outline-offset: 3px;
}

.video-thumb-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--color-gray-95);
  overflow: hidden;
}

.video-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumb-img .video-play-overlay {
  width: 48px;
  height: 48px;
}

.video-thumb-title {
  padding: 16px 18px 4px;
  font-size: var(--text-body-md);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--dark);
  margin: 0;
}

.video-thumb-meta {
  padding: 0 18px 18px;
  font-size: var(--text-body-xs);
  color: var(--muted);
  margin: 0;
}

@media (max-width: 767px) {
  .video-hero-title {
    font-size: var(--text-body-lg);
  }
}

/* ── GALLERY: Asymmetric Photo Mosaic ─────────────────────────── */
.gallery-hero {
  background: var(--teal-tint);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-eyebrow {
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-primary-60);
  text-transform: uppercase;
}

.gallery-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.05em;
  color: var(--dark);
  margin: 0;
}

.gallery-subhead {
  font-size: var(--text-body-md);
  color: var(--ink);
  line-height: 1.55;
  margin: 4px 0 0;
  max-width: 560px;
}

/* Asymmetric grid: 3-column base, items span across */
.gallery-asymmetric {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 24px;
}

.gallery-item {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-gray-5);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(25, 83, 200, .14);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--color-primary-60);
  outline-offset: 3px;
}

.gallery-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--tall {
  grid-column: span 1;
  grid-row: span 2;
}

/* 마지막 행 풀폭 배너 — wide(2×2)+일반 2개 뒤 남는 하단 빈 셀을 채워 그리드 정렬 완성 */
.gallery-item--banner {
  grid-column: 1 / -1;
  grid-row: span 1;
}

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(180deg, rgba(17, 20, 24, 0) 0%, rgba(17, 20, 24, .82) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-tag {
  align-self: flex-start;
  padding: 3px 10px;
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius-pill);
  font-size: var(--text-body-xs);
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-tag--video {
  background: var(--color-primary-60);
  color: var(--white);
}

.gallery-title {
  font-size: var(--text-body-md);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--white);
  margin: 0;
}

.gallery-item--wide .gallery-title {
  font-size: var(--text-body-lg);
}

.gallery-meta {
  font-size: var(--text-body-xs);
  color: rgba(255, 255, 255, .82);
  margin: 0;
}

.gallery-item--video .video-play-overlay {
  width: 56px;
  height: 56px;
}

.video-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  background: rgba(17, 20, 24, .82);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: var(--text-body-xs);
  font-weight: 700;
  letter-spacing: -.01em;
}

/* ── Responsive — Editorial Pages ─────────────────────────────── */
@media (max-width: 960px) {

  .news-featured,
  .story-feature,
  .video-hero {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 24px;
  }

  .news-featured-img,
  .video-hero-img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .news-featured-body,
  .video-hero-body {
    padding: 20px 20px 24px;
    gap: 10px;
  }

  .story-feature {
    gap: 26px;
    margin-bottom: 40px;
  }

  .story-feature-img {
    aspect-ratio: 3 / 2;
    max-height: 380px;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .renowned-layout {
    grid-template-columns: 1fr;
  }

  .press-grid,
  .video-thumb-grid {
    grid-template-columns: 1fr;
  }

  .gallery-asymmetric {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-item {
    grid-column: span 1;
  }

  .gallery-item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .press-header,
  .gallery-hero {
    padding: 28px 20px;
  }

  .press-pull-quote {
    padding: 22px 22px 26px;
  }

  .press-quote-mark {
    display: none;
  }

  .story-card {
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 12px 12px 16px;
  }

  .story-section-head h3:not([class]) {
    font-size: var(--text-heading-sm);
    padding-top: 0;
  }

  .story-card-grid--row .story-card {
    /* 모바일: 가로 배치 대신 이미지 위 · 본문 아래로 세로 스택 */
    grid-template-columns: 1fr;
  }

  .story-card-grid--row .story-card-img {
    /* 세로 스택 시 정사각형(1/1)은 너무 높음 → 4:3 직사각형으로 낮춤 */
    aspect-ratio: 4 / 3;
  }

  .story-feature-aff {
    font-size: var(--text-body-sm);
    margin: 0;
  }

  .story-card-grid--row .story-card-chevron {
    display: none;
  }

  .gallery-asymmetric {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-auto-rows: 160px;
    gap: 12px;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-caption {
    padding: 14px 14px 12px;
  }

  .video-play-overlay {
    width: 48px;
    height: 48px;
  }

  .news-featured-title {
    font-size: var(--text-display-xxsm);
  }

  .story-feature-name {
    font-size: var(--text-display-xxsm);
  }

  .renowned-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .press-pull-quote figcaption {
    font-size: var(--text-body-label);
  }

  .press-card-title {
    font-size: var(--text-body-md);
    min-height: 0;
  }

  .press-card-date {
    font-size: var(--text-body-label);
    margin-top: 10px;
  }

  .story-feature-quote {
    font-size: var(--text-body-sm);
    padding: 0;
    border-left: none;
  }
}

/* ── Photo Thumbnail Grid (galleryPhoto detail) ─────────────── */
.photo-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.photo-thumb-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  cursor: pointer;
  display: block;
}

/* ── Gallery Detail Header (galleryPhoto / galleryVideo) ────── */
.media-detail-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 36px;
}

.media-detail-head .media-detail-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.03em;
  color: var(--dark);
  margin: 0;
}

.media-detail-meta {
  font-size: var(--text-body-sm);
  color: var(--muted);
  margin: 0;
}

.media-detail-desc {
  font-size: var(--text-body-md);
  color: var(--ink);
  line-height: var(--leading-body);
  margin: 16px 0 0;
}

/* Video player area (placeholder thumb for galleryVideo) */
.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  cursor: pointer;
}

.video-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .8;
}

/* Section label inside content card */
.media-section-label {
  font-size: var(--text-body-md);
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 14px;
  letter-spacing: -.02em;
}

/* Footer actions row (detail pages) */
.detail-actions {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ── Photo Viewer Slideshow ─────────────────────────────────── */
.photo-viewer {
  margin: 0;
}

.photo-viewer-stage {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--color-gray-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.photo-viewer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s ease;
}

.photo-viewer-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(17, 20, 24, .52);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}

.photo-viewer-btn:hover {
  background: rgba(17, 20, 24, .82);
}

.photo-viewer-btn--prev {
  left: 16px;
}

.photo-viewer-btn--next {
  right: 16px;
}

.photo-viewer-count {
  position: absolute;
  bottom: 14px;
  right: 16px;
  background: rgba(17, 20, 24, .7);
  color: var(--white);
  font-size: var(--text-body-xs);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: -.01em;
}

.photo-viewer-caption {
  margin-top: 16px;
  font-size: var(--text-body-sm);
  color: var(--muted);
  min-height: 1.4em;
}

.photo-viewer-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.photo-viewer-thumbs::-webkit-scrollbar {
  display: none;
}

.photo-viewer-thumb {
  flex: 0 0 80px;
  width: 80px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .55;
  transition: opacity .2s ease, border-color .2s ease;
}

.photo-viewer-thumb.active {
  border-color: var(--color-primary-60);
  opacity: 1;
}

.photo-viewer-thumb:hover {
  opacity: .85;
}

/* ── Event Detail Section ────────────────────────────────────── */
.event-detail-section {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.event-detail-label {
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-primary-60);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.event-detail-dl {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px 20px;
  margin: 16px 0 0 0;
}

.event-detail-dl dt {
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--muted);
  padding-top: 1px;
}

.event-detail-dl dd {
  font-size: var(--text-body-sm);
  color: var(--ink);
  margin: 0;
}

/* ── 진행중 공모 하이라이트 (contest-hero) ──────────────────
   content-sub-title 박스와 동일한 green-tint 어법.
   Flat-by-default: 정적 요소이므로 그림자 없음.            */
.contest-hero {
  background: var(--color-primary-5);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  margin-bottom: var(--space-10);
}

/* 리드 문단 뒤에 올 때 블록 간격 확보 */
.content-card p+.contest-hero {
  margin-top: var(--space-6);
}

.content-card>p+h2:not([class]) {
  margin-top: var(--space-8);
}

.contest-hero-top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}

.contest-hero-dday {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-body-xs) !important;
  font-weight: 700;
  color: var(--color-primary-80);
}

.contest-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-heading-md);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -0.06em;
  color: var(--dark);
  margin: 0 0 var(--space-6);
}

.contest-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  margin: 0 0 var(--space-5);
}

.contest-hero-meta div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  column-gap: 14px;
  row-gap: 4px;
  font-size: var(--text-body-sm);
  color: var(--ink);
}

.contest-hero-meta dt {
  color: var(--muted);
  grid-column: 2;
}

.contest-hero-meta b {
  grid-column: 2;
  font-size: var(--text-body-md);
}

.contest-hero-meta .ic-badge {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-0);
  border-radius: 50%;
}

.contest-hero-meta .ic-badge .ic {
  width: 24px;
  height: 24px;
}

.contest-hero .form-actions {
  margin-top: var(--space-5);
}

@media (max-width: 480px) {
  .contest-hero-meta {
    grid-template-columns: 1fr;
  }
}

.contest-hero-meta b {
  font-weight: 700;
  color: var(--ink);
}

.contest-hero-meta .ic {
  color: var(--color-primary-60);
}

/* ── 배점 비중 바 (score-bar) ─────────────────────────────── */
.score-cell {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 132px;
}

.score-cell b {
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
  width: 52px;
  white-space: nowrap;
}

.score-bar {
  position: relative;
  flex: 1;
  height: 8px;
  background: var(--color-primary-5);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.score-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--color-primary-60);
  border-radius: var(--radius-pill);
}

.score-bar-fill.w-10 {
  width: 10%;
}

.score-bar-fill.w-20 {
  width: 20%;
}

.score-bar-fill.w-30 {
  width: 30%;
}

.score-bar-fill.w-40 {
  width: 40%;
}

.score-bar-fill.w-100 {
  width: 100%;
}

/* 합계 행 강조 */
.score-table tr.is-total td {
  background: var(--color-primary-5);
  border-bottom: none;
  font-weight: 700;
  color: var(--dark);
}

.score-table tr.is-total .score-cell b {
  color: var(--color-primary-80);
}

/* ── 심사 절차 세로 타임라인 (proc-timeline) — Wellcome key-dates 패턴 ──
   왼쪽 점-라인이 단계를 잇고, 각 노드는 캡션+단계명+설명 스택.        */
.proc-timeline {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
}

.proc-timeline li {
  position: relative;
  padding: 0 0 var(--space-7) var(--space-8);
}

.proc-timeline li:last-child {
  padding-bottom: 0;
}

/* 연결선: 각 노드 점 중심에서 다음 노드까지 */
.proc-timeline li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.proc-timeline li:last-child::before {
  display: none;
}

/* 진행 표지 점 */
.proc-timeline-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary-60);
}

.proc-timeline-step {
  display: block;
  font-size: var(--text-body-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 var(--space-1);
}

.proc-timeline-name {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.18px;
  color: var(--dark);
  margin: 0 0 var(--space-1);
}

.proc-timeline-desc {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  letter-spacing: -0.16px;
  color: var(--muted);
  margin: 0;
}

/* ── 윤리 원칙 번호 조항 리스트 (principle-list) — 호암재단 문서형 패턴 ──
   번호 + 조항명 + 설명이 한 행, 행 사이 1px 룰. 카드·배경 없음.        */
.principle-list {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
}

.principle-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-1) var(--space-5);
  align-items: baseline;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
}

.principle-list li:last-child {
  padding-bottom: 0;
}

.principle-num {
  grid-row: span 2;
  align-self: start;
  font-family: var(--font-display);
  font-size: var(--text-display-xsm);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.06em;
  color: var(--color-gray-30);
  white-space: nowrap;
}

.principle-name {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.18px;
  color: var(--dark);
  margin: 0;
}

.principle-desc {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  letter-spacing: -0.16px;
  color: var(--muted);
  margin: 0;
}

/* ── 제출서류 변형 (.principle-list--doc) — 각 항목 우측에 양식 다운로드 버튼 ──
   기본 2열(72px 1fr)에 버튼 컬럼(auto)을 추가한 3열. 자동배치 깨짐 방지 위해
   name/desc는 col2, 버튼은 col3에 명시 배치. */
.principle-list--doc li {
  grid-template-columns: 72px 1fr auto;
  align-items: center;
}

.principle-list--doc li:first-child {
  border-top: none;
  padding-top: 0;
}

.principle-list--doc .principle-name {
  grid-column: 2;
  grid-row: 1;
}

.principle-list--doc .principle-desc {
  grid-column: 2;
  grid-row: 2;
}

/* 양식 다운로드 버튼 — 민트 아웃라인 베이스 (전역). notice 제출서류·apply 첨부서류 공용.
   외형은 bare 셀렉터로 승격하고, 그리드 배치 속성만 .principle-list--doc 스코프에 둔다. */
.doc-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--color-primary-40);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: var(--text-body-xs);
  font-weight: 700;
  color: var(--color-primary-60);
  transition: border-color .2s, background .2s, color .2s;
}

.doc-form-btn:hover {
  background: var(--color-primary-5);
  border-color: var(--color-primary-60);
  color: var(--color-primary-80);
}

.doc-form-btn svg {
  width: 20px;
  height: 20px;
}

/* 제출서류 리스트 내 그리드 배치 (col3, 1행, 우측 정렬) */
.principle-list--doc .doc-form-btn {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
}

/* 모바일: 좁은 폭에서 버튼이 이름 아래로 내려가도록 2열로 전환 */
@media (max-width: 767px) {
  .principle-list--doc li {
    grid-template-columns: 44px 1fr;
  }

  .principle-list--doc .doc-form-btn {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
    margin-top: var(--space-2);
  }
}

/* ── 문서형 불릿 리스트 (.doc-list) — 본문 항목 나열 ──
   카드·배경 없음. UA 기본 disc 대신 토큰 색 도트 마커 + 페이지 리듬 간격. */
/* doc-list 규칙(.doc-list, li, ::before, +h2/h3/h4 인접 간격, ≤767px 축소)은 namk-ui.css로 통합 — 중복 제거. */

/* criteria-sub: 장식이 아니라 텍스트 위계이므로 회색 계열만 사용
   (Single Voice: Clinical Sage 금지). 한국어 letter-spacing 금지. */
.content-card h4.criteria-sub {
  font-size: var(--text-body-md);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-gray-95);
  margin: var(--space-6) 0 0;
}

/* ── 심사 절차 프로세스 (.proc-flow) — 번호 스텝 ──
   데스크탑: 가로(번호 배지 + 연결선 + 라벨). 모바일: 세로 스텝으로 전환(.sched와 동일 접근).
   연결선·배지는 회색 계열(장식이므로 Clinical Sage 금지). 한국어 letter-spacing 금지. */
.proc-flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: var(--space-6) 0 0;
  padding: 0;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-1);
}

/* 번호 배지 밴드 — 연결선(top:50%)이 배지 중심과 일치 */
.proc-rail {
  position: relative;
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

/* 가로 연결선: 좌/우 반쪽으로 그려 이웃 배지와 맞닿게(끊김 방지) */
.proc-rail::before,
.proc-rail::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% + var(--space-1));
  height: 2px;
  background: var(--line);
}

.proc-rail::before {
  left: calc(-1 * var(--space-1));
}

.proc-rail::after {
  right: calc(-1 * var(--space-1));
}

.proc-step:first-child .proc-rail::before {
  display: none;
}

.proc-step:last-child .proc-rail::after {
  display: none;
}

/* 번호 배지: 흰 배경이 연결선을 가림 */
.proc-num {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--color-gray-30);
  color: var(--color-gray-80);
  font-size: var(--text-body-xs);
  font-weight: 700;
}

.proc-label {
  font-size: var(--text-body-sm);
  font-weight: 500;
  line-height: var(--leading-tight);
  color: var(--ink);
}

/* 모바일: 가로 → 세로 스텝(번호 좌 · 라벨 우, 번호 사이 세로 연결선) */
@media (max-width: 767px) {
  .proc-flow {
    grid-template-columns: 1fr;
    margin-top: var(--space-4);
  }

  .proc-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: var(--space-4);
    padding: var(--space-2) 0;
  }

  .proc-rail {
    width: 34px;
    flex: none;
    margin-bottom: 0;
  }

  .proc-rail::before {
    display: none;
  }

  .proc-rail::after {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + var(--space-4));
  }

  .proc-step:last-child .proc-rail::after {
    display: none;
  }

  .proc-label {
    font-size: var(--text-body-sm);
    font-weight: 600;
  }
}

/* 타임라인·조항 리스트 뒤 notice와의 블록 간격을 페이지 리듬(24px)에 맞춤 */
.proc-timeline+.notice,
.principle-list+.notice {
  margin-top: var(--space-6);
}

/* ── 메타 패널 (info.ruled) — 라벨:값 형식의 메타 정보 ──
   소프트 블루 틴트 패널 + 라벨 컬럼 강조로 일반 표와 시각 차별화. 기존 .info 그리드 유지. */
.info.ruled {
  gap: 0;
  background: var(--color-gray-0);
  border: 1px solid var(--color-primary-10);
  border-radius: var(--radius-md);
  padding: 4px var(--space-6);
  margin-bottom: var(--space-10);
}

.info.ruled dt,
.info.ruled dd {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-primary-10);
}

.info.ruled dt {
  color: var(--color-primary-90);
  font-weight: 600;
}

.info.ruled dd {
  color: var(--ink);
}

.info.ruled dd b {
  color: var(--ink);
  font-weight: 700;
}

/* 마지막 행 구분선 제거 */
.info.ruled> :nth-last-child(-n+2) {
  border-bottom: none;
}

@media (max-width: 767px) {
  .principle-list li {
    grid-template-columns: 44px 1fr;
    gap: 4px 16px;
  }

  /* 넘버(40px)가 좁아진 44px 컬럼을 넘쳐 overflow-wrap이 '0'/'2'로 쪼개는 것 방지: 32px로 축소(base·doc 공통) */
  .principle-num {
    font-size: var(--text-display-xxsm);
  }

  /* 제목: 모바일에서 번호 축소에 맞춰 한 단계 다운(26px→22px) */
  .principle-name {
    font-size: var(--text-body-md);
  }

  .info.ruled {
    grid-template-columns: 1fr;
    padding: 4px var(--space-5);
  }

  .info.ruled dt {
    padding-bottom: 2px;
    border-bottom: none;
  }

  .info.ruled dd {
    padding-top: 2px;
  }
}

/* ── 첨부 업로드 항목 (file-upload) — apply.html 어포던스 ──── */
.files.uploads {
  gap: var(--space-3);
}

.file-upload {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.file-upload:hover {
  border-color: var(--color-primary-60);
  background: var(--color-primary-5);
}

.file-upload-name {
  flex: 1;
  min-width: 0;
}

.file-upload-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: var(--text-body-xs);
  font-weight: 700;
  color: var(--color-primary-80);
}

.file-upload-action svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .contest-hero {
    padding: var(--space-5);
  }

  .contest-hero-meta {
    gap: var(--space-2) var(--space-4);
  }

  .score-cell {
    min-width: 110px;
  }

  .file-upload {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .file-upload-name {
    font-size: var(--text-body-sm);
  }

  .file-upload-action {
    justify-content: flex-end;
  }
}

/* ── 첨부 서류 행 (.attach-*) — apply.html 첨부서류 (.file-upload 업로드 카드 + 양식 다운로드) ──
   좌측 업로드 카드(.file-upload)와 우측 양식 다운로드 버튼을 한 행에 배치. */
.attach-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.attach-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: 12px;
}

.attach-row .file-upload {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: space-between;
}


/* 필수 입력 표시 */
.req {
  color: var(--color-primary-60);
  font-weight: 700;
}

@media (max-width: 767px) {
  .attach-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ══════════════════════════════════════════════════════════
   신청접수 폼 (/contest/apply) 페이지 전용
   — apply.html 인라인 <style>에서 이관 (페이지별 링크 대신 전역 통합)
   ══════════════════════════════════════════════════════════ */

/* 신청 부문 체크박스 (다중 선택) — 목업 .radio-group 정렬 */
.div-radio {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.div-radio label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--ink);
}

.div-radio input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary-60);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

/* 신청 부문을 attend-fieldset(테두리 박스 + legend) 룩으로 — 마크업 불변, :has로 해당 래퍼만 타겟 */
.u-m-20:has(> .div-radio) {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 36px 32px;
  margin: 36px 0;
}

.u-m-20:has(> .div-radio) > .field-label {
  position: absolute;
  top: 0;
  left: 12px;
  transform: translateY(-50%);
  margin: 0;
  padding: 2px 6px;
  background: var(--color-gray-5);
}

.u-m-20:has(> .div-radio) > .div-radio {
  margin-top: 0;
}

/* 제출서류 양식 다운로드 버튼 — 목업 .doc-form-btn 파랑 pill */
.btn-dl {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--color-primary-40);
  color: var(--color-primary-60);
  border-radius: var(--radius-pill);
  font-size: var(--text-body-xs);
  font-weight: 700;
  background: var(--white);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}

.btn-dl:hover {
  background: var(--color-primary-60);
  color: #fff;
  border-color: var(--color-primary-60);
}

.file-exist {
  font-size: .8rem;
  color: #6c757d;
}

.files .file-label {
  flex: 0 0 270px;
  white-space: nowrap;
  overflow: hidden;
}

.file-dl-cell {
  flex: 0 0 140px;
  text-align: right;
}

/* 상단 필수 안내 배너 */
.form-required-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 40px;
  padding: 18px;
  border-radius: 8px;
  background: #fff4f4;
  border: 1px solid #f3c2c2;
  color: #c0392b;
  font-size: var(--text-body-md);
}

.form-required-note::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c0392b;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.attach-head {
  margin-top: 48px;
}

.attach-head h2 {
  margin: 0 0 8px;
}

.attach-desc {
  margin: -12px 0 8px;
  font-size: var(--text-body-sm);
  color: var(--muted);
  line-height: var(--leading-body);
}

@media (max-width: 640px) {
  #affilEtcWrap[style*="hidden"] {
    display: none;
  }

  /* 필수 안내 배너: 폰트·패딩 축소 */
  .form-required-note {
    font-size: var(--text-body-xs);
    padding: 10px 14px;
    gap: 8px;
  }

  .form-required-note::before {
    width: 20px;
    height: 20px;
    font-size: .9rem;
  }

  /* 신청 부문: 옵션 세로 스택 + 박스 패딩 축소 (목업 모바일) */
  .div-radio {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .u-m-20:has(> .div-radio) {
    padding: 30px 20px 24px;
  }

  /* 첨부 서류 상단 여백 축소 */
  .attach-head {
    margin-top: 32px;
  }

  .attach-desc {
    font-size: var(--text-body-xs);
  }

  .attach-row .file-upload {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding: 18px;
  }

  .file-upload-name {
    flex: none;
    width: 100%;
  }

  .file-upload-action {
    display: flex;
    justify-content: flex-start;
    max-width: 100%;
  }

  .file-upload-action .fu-text {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* ── 리드 문단 (.lede) — content-sub-title 박스 대체 ──────────
   페이지 인트로용 단일 lede 라인. 박스 처리 없이 톤 위계로 강조. */
.content-card .lede {
  font-size: var(--text-body-lg);
  color: var(--ink);
  line-height: var(--leading-body);
  letter-spacing: -0.22px;
  margin: 0 0 var(--space-7);
}

/* ── 보조 안내 라인 (.muted-line) — h2 하위 설명 ──── */
.content-card .muted-line {
  color: var(--muted);
  font-size: var(--text-body-xs);
  line-height: var(--leading-body);
  margin: calc(-1 * var(--space-2)) 0 var(--space-4);
}

/* ── h2 직하 카드 설명 (.content-card-desc) ──── */
.content-card .content-card-desc {
  color: var(--muted);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  margin: 0 0 8px 0;
}

/* ── 폼 필드 그리드 단위 행 (label + input 세로 배치) ────── */
.form-grid .field-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  min-width: 0;
  /* 그리드 아이템이 select 긴 옵션 min-content로 1fr 트랙을 넓히지 않도록 */
}

.form-grid .field-row.full {
  grid-column: 1 / -1;
}

/* radio-group은 .form-grid label{display:block} 보다 특이성을 높여 인라인 정렬 복구 */
.form-grid .radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: normal;
  margin: 8px 0;
  font-size: var(--text-body-sm);
}

.form-grid .field-row .field-label {
  display: block;
  font-size: var(--text-body-xs);
  font-weight: 700;
  color: var(--ink);
  margin: 2px 0 0;
}

/* ── 업로드 완료 상태 (.file-upload.is-done) ──── */
.file-upload.is-done {
  background: var(--color-primary-5);
  border-color: var(--color-primary-20);
}

.file-upload.is-done .file-upload-action {
  color: var(--color-primary-80);
}

.file-upload.is-done .file-upload-name {
  color: var(--color-primary-90);
  font-weight: 600;
}

/* 선택된 파일명 앞 체크 아이콘 (JS가 .file-upload-name에 주입) */
.file-upload-name .ic {
  width: 18px;
  height: 18px;
  vertical-align: -4px;
  margin-right: 6px;
  margin-bottom: 2px;
  color: var(--color-primary-80);
}

/* ── 테이블 우측 액션 묶음 (.row-actions) ──────── */
.row-actions {
  display: inline-flex;
  gap: 6px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.notice>.ic,
.notice>svg {
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── contest-hero D-day 강조 (pill chip) ────── */
.contest-hero-top .contest-hero-dday {
  background: var(--white);
  border: 1px solid var(--color-primary-20);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: var(--text-body-md);
  margin-left: auto;
}

/* ── 공모·신청 페이지 간격·테이블 정렬 통일 패스 ──────────────
   인접 블록 간격, 테이블 헤더 위계, td 정렬 유틸리티.        */

/* notice + form-actions 간격 통일 (C-2) */
.content-card .notice+.form-actions {
  margin-top: var(--space-6);
}

/* form-grid 다음 h2 상단 간격 (A-2) */
.content-card .form-grid+h2:not([class]) {
  margin-top: var(--space-12);
}

/* notice + info.ruled 간격 (M-2) */
.content-card .notice+.info.ruled {
  margin-top: var(--space-7);
}

/* 테이블 헤더 위계 통일 — Label tone (M-3) */
.content-card .table-wrap th {
  font-size: var(--text-body-xs);
  font-weight: 700;
  color: var(--color-primary-90);
  text-align: left;
}

/* td 정렬 유틸리티 (M-4) */
.content-card .table-wrap td.cell-center {
  text-align: center;
}

.content-card .table-wrap td.cell-end {
  text-align: right;
}

/* 첨부 업로드 그룹 라벨 (A-4) */
.content-card .upload-group-label {
  font-size: var(--text-body-xs);
  font-weight: 700;
  color: var(--muted);
  margin: var(--space-6) 0 var(--space-1);
}

.content-card .upload-group-label:first-of-type {
  margin-top: 0;
}

.content-card .upload-group-label b {
  color: var(--ink);
}

/* 카운트 뱃지 (P-2) */
.count-pill {
  display: inline-flex;
  align-items: center;
  min-width: 22px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-5);
  color: var(--color-primary-80);
  font-size: var(--text-body-xs);
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

/* steps 모바일 폭 대응 (P-4) */
@media (max-width: 480px) {
  .steps {
    gap: 6px;
  }

  .steps li {
    font-size: var(--text-body-xs);
    padding: 7px 12px;
  }

  .steps li::before {
    width: 24px;
    height: 24px;
  }
}

/* ── 공모일정 가로 타임라인 (.sched) — 연결선 + 노드 ──
   각 단계 = 단계명(위) + 노드(가운데, 연결선 위) + 날짜(아래). 확정=채운 노드,
   미정(.is-tbd)=빈 노드. 연결선/노드는 회색 계열(장식이므로 Clinical Sage 금지).
   한국어 자간 금지: .sched-label/.sched-date 등에 letter-spacing 추가하지 말 것. */
.sched {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: var(--space-6) 0 0;
  padding: 0;
}

.sched-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-2);
}

.sched-label {
  font-size: var(--text-body-xs);
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--muted);
  margin-bottom: var(--space-2);
}

/* 노드를 담는 고정 높이 밴드 — 연결선(top:50%)이 노드 중심과 정확히 일치 */
.sched-rail {
  position: relative;
  width: 100%;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 연결선: 좌/우 반쪽으로 그려 양끝 노드 밖으로 삐져나오지 않게 처리.
   step 좌우 패딩(space-2)만큼 연장해 이웃 단계 연결선과 맞닿게(노드 끊김 방지). */
.sched-rail::before,
.sched-rail::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% + var(--space-2));
  height: 2px;
  background: var(--line);
}

.sched-rail::before {
  left: calc(-1 * var(--space-2));
}

.sched-rail::after {
  right: calc(-1 * var(--space-2));
}

.sched-step:first-child .sched-rail::before {
  display: none;
}

.sched-step:last-child .sched-rail::after {
  display: none;
}

/* 노드: 솔리드 배경이 연결선을 가림(흰 헤일로 불필요). 확정=채움, 미정=빈 노드 */
.sched-node {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gray-60);
}

.sched-step.is-tbd .sched-node {
  background: var(--white);
  border: 2px solid var(--color-gray-30);
}

.sched-date {
  margin-top: var(--space-3);
  font-size: var(--text-body-lg);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--dark);
}

.sched-step.is-tbd .sched-date {
  font-weight: 600;
  color: var(--muted);
}

/* 모바일: 가로 타임라인 → 세로 일정표(단계명 좌 · 날짜 우, 행 사이 1px 룰).
   노드/연결선은 숨기고 행 구분선이 구조를 대신한다. */
@media (max-width: 767px) {
  .sched {
    grid-template-columns: 1fr;
    margin-top: var(--space-3);
  }

  .sched-step {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-4);
    text-align: left;
    padding: var(--space-4) var(--space-1);
    border-bottom: 1px solid var(--line);
  }

  .sched-step:last-child {
    border-bottom: 0;
  }

  .sched-rail {
    display: none;
  }

  .sched-label {
    margin-bottom: 0;
    font-size: var(--text-body-sm);
  }

  .sched-date {
    margin-top: 0;
    text-align: right;
    font-size: var(--text-body-md);
  }
}

/* ── 콘텐츠 카드 섹션 헤더 (.doc-head) — 서브페이지 카드 내 섹션 시작 표시 ──
   하단 1px 헤어라인 + numeral/아이콘. 배경·보더 없음(중첩 카드 금지).
   장식·구조 요소이므로 Clinical Sage 사용 금지(회색/muted 계열).
   ★ 클래스명 주의: 랜딩 전용 .section-head(style.css:474, justify-content:space-between)와
     충돌하므로 .doc-head 로 분리. .section-head 재사용 금지. */
.doc-head {
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
  margin: var(--space-16) 0 var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}

.doc-head:first-of-type {
  margin-top: 0;
}

.doc-head--icon {
  align-items: center;
}

/* 첫 섹션 헤더는 콘텐츠 카드 최상단 — margin-top 제거 */
.content-card>.doc-head:first-child {
  margin-top: 0;
}

/* sub-panel(내부 탭) 안 첫 섹션 헤더는 탭 바 바로 아래이므로 큰 상단 margin 축소 */
.sub-panel>.doc-head:first-child {
  margin-top: var(--space-2);
}

/* content-card h2:not([class]) (0,2,1) 의 margin을 리셋하려면 더 높은 특이성 필요 */
.content-card .doc-head h2:not([class]) {
  margin: 0;
}

.doc-head-num {
  font-family: var(--font-display);
  font-size: var(--text-heading-sm);
  font-weight: 500;
  line-height: 1;
  color: var(--color-gray-30);
}

.doc-head-ic {
  flex: none;
  color: var(--muted);
}

/* ── 시상 부문명 (.award-name) — 부문 블록 제목 ──
   라벨(16px)과 단계 차이를 위해 22px로 키우고, 보조 표기 (가칭)은 약화해
   실제 명칭이 앵커가 되게 한다. h2(24px+numeral+헤어라인)와는 처리로 구분됨. */
.content-card h3.award-name {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--dark);
  margin: var(--space-8) 0 var(--space-3);
}

.award-name .award-tag {
  font-size: var(--text-body-xs);
  font-weight: 500;
  color: var(--muted);
  margin-right: 2px;
}

.content-card .doc-note {
  display: flex;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  letter-spacing: -0.16px;
  color: var(--muted);
}

.doc-note+.doc-note {
  margin-top: var(--space-1);
}

.content-card .doc-note::before {
  content: "※";
  flex: none;
  color: var(--color-primary-60);
  font-weight: 700;
}

/* ── 주석(.doc-note) 바로 아래 목록 — 주석이 가리키는 단서/종속 항목 ──
   상위 award별 목록(primary 도트·body-md·gray-95)과 달리, 주석에 종속된 그룹임을
   들여쓰기 + 회색 톤다운(body-sm·gray-80) + 옅은 도트(gray-40)로 구분.
   인접 선택자라 doc-note 바로 뒤 doc-list에만 적용(뒤가 form-actions면 무영향). */
.content-card .doc-note+ul.doc-list {
  margin-top: var(--space-3);
  margin-left: var(--space-5);
}

.content-card .doc-note+ul.doc-list li {
  font-size: var(--text-body-sm);
  color: var(--color-gray-80);
}

.content-card .doc-note+ul.doc-list li::before {
  background: var(--color-gray-40);
}

/* ── 공고문 헤드라인 (.notice-headline) — 공모 안내 랜드마크 제목 ──
   격식 있는 공고 제목이므로 esamanru 디스플레이 스케일로 올린다(Font Fence: 디스플레이급만 esamanru).
   한국어 디스플레이의 음수 자간(-0.06em)은 허용(양수 자간만 금지). */
.content-card h2.notice-headline {
  font-family: var(--font-display);
  font-size: var(--text-display-xxsm);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -0.06em;
  color: var(--dark);
  margin: 0 0 var(--space-5);
  text-align: center;
}

/* ── 공모 인사말 박스 (.notice-greeting) — 공고문(헤드라인+본문+서명)을 톤 패널로 구분 ──
   보더 없는 톤 배경(contest-hero 어법)이라 content-card 내 중첩 카드 규칙 회피, flat(그림자 없음). */
.notice-greeting {
  background: var(--color-primary-5);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-12);
  border: 1px solid var(--color-primary-10);
}

.notice-greeting> :last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .notice-greeting {
    padding: var(--space-6) var(--space-5);
  }
}

/* ── 공고문 다운로드 박스 (공모안내 탭) / 공지 상세 첨부파일 (.notice-doc-download, .post-attach) ── */
.notice-doc-download,
.post-attach {
  margin: var(--space-8) 0;
  padding: var(--space-6) var(--space-8);
  background: var(--color-primary-5);
  border: 1px solid var(--color-primary-10);
  border-radius: var(--radius-lg);
}

.notice-doc-title,
.post-attach-title {
  margin: 0 0 var(--space-3);
  font-size: var(--text-heading-sm);
  font-weight: 700;
  color: var(--color-primary-80);
}

/* 첨부/공고문 다운로드 버튼 묶음 — 가로 배치, 넘치면 줄바꿈 */
.attach-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 767px) {
  .attach-btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .attach-btn-row .doc-form-btn {
    justify-content: center;
    white-space: normal;
    word-break: break-all;
  }
}

/* ── 일정 섹션 제목 (.sched-title) — 기본 h3보다 크게 + 위 여백 확대 ── */
.content-card h3.sched-title {
  font-size: var(--text-heading-sm);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-gray-95);
  margin: var(--space-16) 0 var(--space-4);
}

/* ── 조직도 세로 트리 (.orgchart) — 대표 → 3개 부서 분기 ──
   대표 노드(상단 중앙)에서 세로 연결선이 내려와 가로 분배선으로 갈라지고,
   각 부서 노드 위로 짧은 세로 커넥터가 떨어지는 전형적 조직도 구조.
   연결선은 모두 var(--line) 회색(장식 요소이므로 Clinical Sage 금지).
   중첩 카드 금지: 노드는 톤 배경만(부서=primary-5 / 대표=teal-tint), 보더 없음.
   한국어 자간 금지: orgchart-node 류에 letter-spacing 추가하지 말 것.
   Flat-by-Default: 그림자 없음. */
.orgchart {
  margin: var(--space-6) 0 0;
}

.orgchart-top {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: var(--space-7);
}

/* 대표 노드 아래로 내려오는 세로 연결선 */
.orgchart-top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: var(--space-7);
  background: var(--line);
  transform: translateX(-50%);
}

/* 부서 행: 3개 노드 가로 배치 + 위쪽 가로 분배선 */
.orgchart-row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  padding-top: var(--space-7);
}

/* 가로 분배선: 첫 노드 중심 ~ 마지막 노드 중심을 잇는다.
   3노드 균등 배치이므로 양끝 노드 중심은 각각 1/6, 5/6 지점 → 가운데 2/3 폭 */
.orgchart-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16.6667%;
  right: 16.6667%;
  height: 2px;
  background: var(--line);
}

/* 각 부서 노드 위로 떨어지는 짧은 세로 커넥터 */
.orgchart-node {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: var(--color-primary-5);
  color: var(--ink);
  font-size: var(--text-body-md);
  font-weight: 600;
  line-height: var(--leading-tight);
  text-align: center;
  white-space: nowrap;
}

.orgchart-row .orgchart-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(-1 * var(--space-7));
  width: 2px;
  height: var(--space-7);
  background: var(--line);
  transform: translateX(-50%);
}

/* 대표 노드: teal-tint 절제 강조(풀 채움 금지), 보더 없음, dark/굵게 */
.orgchart-node--head {
  background: var(--teal-tint);
  color: var(--dark);
  font-weight: 700;
  padding: 12px 28px;
}

/* 모바일: 가로 3분기 → 세로 스택. 가로 분배선/커넥터는 숨기고
   각 노드를 위에서 아래로 잇는 단순 세로 연결선으로 재구성. */
@media (max-width: 767px) {
  .orgchart-top {
    padding-bottom: var(--space-5);
  }

  .orgchart-top::after {
    height: var(--space-5);
  }

  .orgchart-row {
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
    padding-top: 0;
  }

  .orgchart-row::before {
    display: none;
  }

  .orgchart-row .orgchart-node {
    width: 100%;
    max-width: 280px;
  }

  /* 세로 흐름 커넥터: 각 노드 위로 짧은 세로선(첫 노드는 대표 연결선이 대신) */
  .orgchart-row .orgchart-node::before {
    top: calc(-1 * var(--space-5));
    height: var(--space-5);
  }

  .orgchart-row .orgchart-node:first-child::before {
    display: none;
  }

  .content-card h2.notice-headline {
    font-size: var(--text-heading-xs);
  }
}