/* ══════════════════════════════════════════
   sub.css — 서브페이지 공통 스타일
   (main.css의 변수/폰트 의존)
   ══════════════════════════════════════════ */

/* ── 서브 히어로 ── */
.sub-hero-main {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0 0 150px 0;
  display: flex;
  align-items: flex-end;
}
.sh-bg {
  position: absolute;
  inset: -40% 0 -40% 0;
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
}
.sh-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15,18,23,.75) 0%, rgba(15,18,23,.42) 55%, rgba(15,18,23,.12) 100%),
    linear-gradient(to top,   rgba(15,18,23,.92) 0%, rgba(15,18,23,.45) 28%, transparent 62%);
  z-index: 2;
}
.sh-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 52px;
  width: 100%;
}
.sh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(240,236,230,.52);
  margin-bottom: 22px;
}
.sh-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: rgba(240,236,230,.38);
  border-radius: 1px;
}
.sh-title {
  font-family: 'Pretendard', system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: #f0ece6;
  letter-spacing: -.02em;
  word-break: keep-all;
  margin-bottom: 14px;
}
.sh-desc {
  font-size: clamp(.88rem, 1.3vw, 1rem);
  color: rgba(240,236,230,.60);
  line-height: 1.85;
  word-break: keep-all;
  max-width: 480px;
}

/* ── 서브 GNB ── */
.sub-gnb {
  background: #fff;
  border-bottom: 1px solid rgba(12,31,53,.1);
  box-shadow: 0 2px 12px rgba(12,31,53,.05);
  z-index: 40;
}
.sub-gnb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 52px;
  display: flex;
  align-items: stretch;
}
.sub-gnb-home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  color: #1a4a73;
  text-decoration: none;
  border-right: 1px solid rgba(12,31,53,.1);
  transition: color .2s, background .2s;
}
.sub-gnb-home:hover { color: #0c1e35; background: #f0f6fb; }

.gnb-sel-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  border-right: 1px solid rgba(12,31,53,.1);
}
.gnb-sel-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  min-width: 140px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Pretendard', system-ui, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: #111418;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.gnb-sel-btn:hover { background: #f0f6fb; color: #0c1e35; }
.gnb-sel-btn.is-main { font-weight: 600; color: #1a4a73; }
.gnb-sel-btn.is-page { font-weight: 700; color: var(--orange, #e8702a); }

.gnb-sel-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: rgba(12,31,53,.35);
  transition: transform .22s cubic-bezier(0.16,1,0.3,1);
}
.gnb-sel-wrap.open .gnb-sel-arrow { transform: rotate(180deg); }

.gnb-panel {
  position: absolute;
  top: 100%;
  left: -1px;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(12,31,53,.12);
  border-top: 2px solid #1a4a73;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 28px rgba(12,31,53,.1);
  display: none;
  z-index: 100;
  overflow: hidden;
}
.gnb-sel-wrap.open .gnb-panel { display: block; }
.gnb-panel-link {
  display: block;
  padding: 11px 18px;
  font-size: .84rem;
  font-weight: 500;
  color: #4a5568;
  text-decoration: none;
  border-bottom: 1px solid rgba(12,31,53,.06);
  transition: color .15s, background .15s, padding-left .15s;
  word-break: keep-all;
}
.gnb-panel-link:last-child { border-bottom: none; }
.gnb-panel-link:hover { color: #1a4a73; background: #f0f6fb; padding-left: 22px; }
.gnb-panel-link.current { font-weight: 700; color: var(--orange, #e8702a); background: rgba(232,112,42,.04); }

.gnb-spacer { flex: 1; }

/* 모바일 — 서브 GNB (리디자인) */
.sub-gnb-mobile {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
}
.gnb-native-sel {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 32px 0 12px;
  font-family: 'Pretendard', system-ui, sans-serif;
  font-size: .84rem;
  font-weight: 600;
  color: var(--n800);
  background-color: #f4f7fb;
  border: 1.5px solid rgba(12,53,93,.12);
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232563a0' d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 18px;
  transition: border-color .2s, box-shadow .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gnb-native-sel:focus {
  border-color: var(--n600);
  box-shadow: 0 0 0 3px rgba(37,99,160,.1);
}
/* 대메뉴 — 살짝 좁게 */
.gnb-native-sel:first-of-type {
  flex: 0 0 38%;
  font-size: .8rem;
  color: var(--n600);
  background-color: rgba(37,99,160,.06);
  border-color: rgba(37,99,160,.18);
}
/* 소메뉴 — 넓게 */
.gnb-native-sel:last-of-type {
  flex: 1;
  box-shadow: 0 1px 6px rgba(12,53,93,.08);
}

/* ── 콘텐츠 영역 ── */
.sub-body-wrap {
  background: #fff;
}
.sub-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 40px 88px;
  font-size: 13px;
}

/* 페이지 제목 */
.sub-page-heading {
  text-align: center;
  margin-bottom: 52px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(12,31,53,.1);
}
.sub-page-heading-title {
  font-family: 'Pretendard', system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #111418;
  letter-spacing: -.03em;
  line-height: 1.3;
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
  word-break: keep-all;
}
.sub-page-heading-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--orange, #e8702a);
  border-radius: 2px;
}

/* 플레이스홀더 */
.content-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 80px 20px;
  background: #fff;
  border-radius: 20px;
}
.content-ph strong { font-size: 1rem; color: var(--l-txt); }
.content-ph p { font-size: .88rem; color: var(--l-txt2); line-height: 1.7; }
.ph-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--n50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

/* html-content — API에서 받은 HTML 렌더링 */
.html-content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--l-txt);
  background: #fff;
  border-radius: 20px;
  padding: 44px 52px;
}
.html-content h1,
.html-content h2 { font-weight: 700; margin: 1.5em 0 .7em; color: var(--n900); letter-spacing: -.02em; }
.html-content h3,
.html-content h4 { font-weight: 600; margin: 1.25em 0 .5em; color: var(--n800); }
.html-content p { margin-bottom: 1em; word-break: keep-all; }
.html-content ul,
.html-content ol { padding-left: 1.6em; margin-bottom: 1em; }
.html-content li { margin-bottom: .4em; }
.html-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 14px 22px;
  margin: 1.5em 0;
  background: var(--n50);
  border-radius: 0 12px 12px 0;
  color: var(--l-txt2);
  font-style: italic;
}
.html-content a { color: var(--n700); text-decoration: underline; }
.html-content a:hover { color: var(--n900); }
.html-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 8px 0; display: block; }
.html-content iframe { max-width: 100%; border-radius: 10px; display: block; }
.html-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .92rem; }
.html-content th,
.html-content td { padding: 11px 16px; border: 1px solid var(--l-bdr); text-align: left; }
.html-content th { background: var(--n50); font-weight: 700; color: var(--n800); }
.html-content hr { border: none; border-top: 1px solid var(--l-bdr); margin: 2em 0; }

/* ── 공지사항 목록 (라인 게시판) ── */
.notice-list-wrap {
  background: #fff;
  border-top: 2px solid var(--n800);
  border-bottom: 1px solid var(--l-bdr);
  overflow: hidden;
}
.notice-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 20px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--l-bdr2);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.notice-list-item:last-child { border-bottom: none; }
.notice-list-item:hover { background: var(--n25); }
.notice-item-title { font-size: .95rem; font-weight: 500; color: var(--l-txt); word-break: keep-all; }
.notice-item-date { font-size: 13px; color: var(--l-txt3); white-space: nowrap; align-self: center; }
.notice-item-new {
  display: inline-block; margin-left: 6px;
  font-size: .65rem; font-weight: 700; letter-spacing: .04em;
  background: var(--orange); color: #fff;
  border-radius: 4px; padding: 1px 5px; vertical-align: middle;
}
/* 상단 고정 (📌 공지) — 옅은 네이비 배경 + 제목 굵게 */
.notice-list-item.is-pinned { background: var(--n50); }
.notice-list-item.is-pinned:hover { background: var(--n100); }
.notice-list-item.is-pinned .notice-item-title { font-weight: 700; color: var(--n900); }
.notice-pin-badge {
  display: inline-flex; align-items: center; gap: 3px;
  margin-right: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .02em;
  background: var(--n800); color: #fff;
  border-radius: 4px; padding: 2px 7px;
  vertical-align: middle;
}
.notice-pagination {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  margin-top: 32px;
}
.notice-page-btn {
  min-width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--l-bdr);
  background: #fff; cursor: pointer;
  font-size: .86rem; color: var(--l-txt2);
  text-decoration: none;
  transition: all .2s;
}
.notice-page-btn:hover { background: var(--n50); color: var(--n800); border-color: transparent; }
.notice-page-btn.active { background: var(--n800); color: #fff; border-color: transparent; }

/* 공지 상세 */
.notice-detail-head {
  background: #fff; border-radius: 20px 20px 0 0;
  padding: 32px 52px 28px;
  border-bottom: 1px solid var(--l-bdr);
}
.notice-detail-body {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 36px 52px;
}

/* ── 운영시간 테이블형 ── */
.hours-table {
  width: 100%; background: #fff;
  border-radius: 20px;
  overflow: hidden; margin-bottom: 20px;
}
.hours-table th,
.hours-table td { padding: 14px 20px; border-bottom: 1px solid var(--l-bdr2); }
.hours-table th { background: var(--n50); font-weight: 700; color: var(--n800); font-size: .88rem; text-align: left; width: 36%; }
.hours-table td { font-size: .92rem; color: var(--l-txt); }
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: none; }

/* ── 자가진단 ── */
.diag-question-wrap {
  background: #fff; border-radius: 20px;
  padding: 40px 48px;
}
.diag-q-item {
  display: flex; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--l-bdr2);
  align-items: flex-start;
}
.diag-q-item:last-child { border-bottom: none; }
.diag-q-num {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; background: var(--n100);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--n700);
  margin-top: 2px;
}
.diag-q-text { flex: 1; font-size: .95rem; line-height: 1.7; color: var(--l-txt); word-break: keep-all; }
.diag-q-options { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.diag-q-options label {
  display: flex; align-items: center; gap: 6px;
  font-size: .88rem; cursor: pointer; color: var(--l-txt2);
  transition: color .15s;
}
.diag-q-options label:hover { color: var(--n800); }
.diag-q-options input[type=radio] { accent-color: var(--n700); width: 16px; height: 16px; cursor: pointer; }
.diag-result-box {
  margin-top: 32px; padding: 28px; border-radius: 16px;
  background: var(--n50); border: 1px solid var(--n100);
  display: none;
}
.diag-result-box.visible { display: block; }
.diag-submit-btn {
  display: flex; align-items: center; gap: 8px;
  margin-top: 28px; margin-left: auto; margin-right: auto; padding: 14px 32px;
  width: fit-content;
  background: var(--n800); color: #fff;
  border: none; border-radius: 100px; cursor: pointer;
  font-family: 'Pretendard', system-ui, sans-serif;
  font-size: .92rem; font-weight: 600;
  transition: all .4s var(--spring);
}
.diag-submit-btn:hover { background: var(--n900); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(12,53,93,.25); }

/* ── 갤러리 그리드 (서브 갤러리) ── */
.sub-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sub-gi {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 14px; cursor: pointer; position: relative;
  background: var(--n100);
  transition: transform .35s var(--spring), box-shadow .35s;
}
.sub-gi:hover { transform: scale(1.02); box-shadow: 0 12px 36px rgba(12,53,93,.14); }
.sub-gi > img,
.sub-gi .gi-img { width: 100%; height: 100%; object-fit: cover; transition: filter .35s; display: block; }
.sub-gi:hover > img,
.sub-gi:hover .gi-img { filter: brightness(.78); }

/* 캡션 — 메인 페이지와 동일 패턴 (제목 항상 표시 / hover 시 설명 노출) */
.sub-gi .gi-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,29,55,.88) 0%, rgba(12,29,55,.5) 60%, transparent 100%);
  padding: 28px 14px 14px;
  color: #fff;
  pointer-events: none;
}
.sub-gi .gi-cat {
  display: block;
  font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 4px;
}
.sub-gi .gi-title {
  font-size: .9rem; font-weight: 600; color: #fff;
  line-height: 1.35; margin: 0;
  word-break: keep-all;
  transition: margin-bottom .35s var(--spring);
}
.sub-gi:hover .gi-title { margin-bottom: 7px; }
.sub-gi .gi-desc {
  font-size: .76rem; color: rgba(255,255,255,.82);
  line-height: 1.55; margin: 0;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s var(--spring), opacity .35s;
  word-break: keep-all;
}
.sub-gi:hover .gi-desc { max-height: 90px; opacity: 1; }
.sub-gi .gi-yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); pointer-events: none;
}

/* ── 회복자 이야기 — 검색·분류 툴바 ──
   기본: 한 줄 — 좌측 탭(가로 스크롤) + 우측 검색(240px 고정)
   ≤600px: 세로 스택 — 탭 위, 검색 아래(풀폭)                       */
.story-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.story-cat-tabs {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;          /* tabs가 좁아질 때 검색을 밀지 않도록 */
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  scrollbar-width: thin;
  scrollbar-color: var(--l-bdr) transparent;
  /* 우측 끝 페이드(추가 탭이 있다는 힌트) */
  -webkit-mask-image: linear-gradient(to right, black 0%, black 94%, transparent 100%);
          mask-image: linear-gradient(to right, black 0%, black 94%, transparent 100%);
}
.story-cat-tabs::-webkit-scrollbar { height: 4px; }
.story-cat-tabs::-webkit-scrollbar-thumb { background: var(--l-bdr); border-radius: 4px; }
.story-cat-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  border: 1px solid var(--l-bdr);
  border-radius: 100px;
  background: #fff;
  font-size: .85rem; font-weight: 500;
  color: var(--l-txt2);
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
  white-space: nowrap;
}
.story-cat-tab:hover { border-color: var(--n400); color: var(--n700); }
.story-cat-tab.active {
  background: var(--n800);
  color: #fff;
  border-color: var(--n800);
}
.story-search {
  position: relative;
  display: flex; align-items: center;
  flex: 0 0 auto;
}
.story-search-input {
  height: 40px;
  padding: 0 40px 0 16px;
  border: 1px solid var(--l-bdr);
  border-radius: 100px;
  font-size: .88rem;
  font-family: inherit;
  background: #fff;
  width: 240px;
  outline: none;
  color: var(--l-txt);
  transition: border-color .18s, box-shadow .18s;
}
.story-search-input:focus {
  border-color: var(--n600);
  box-shadow: 0 0 0 3px rgba(12,53,93,.08);
}
.story-search-icon {
  position: absolute; right: 14px;
  color: var(--l-txt3); pointer-events: none;
  display: flex; align-items: center;
}

/* ── 회복자 이야기 게시판 (텍스트 위주 목록) ── */
.story-board-wrap {
  background: #fff;
  border-top: 2px solid var(--n800);
  border-bottom: 1px solid var(--l-bdr);
  overflow: hidden;
}
.story-board-empty {
  padding: 60px 28px; text-align: center;
  color: var(--l-txt3);
  border-top: 2px solid var(--n800);
  border-bottom: 1px solid var(--l-bdr);
  background: #fff;
}
.story-board-item {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 24px;
  row-gap: 8px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--l-bdr2);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.story-board-item:last-child { border-bottom: none; }
.story-board-item:hover { background: var(--n25); }
.story-board-title {
  font-size: 1.08rem; font-weight: 600; color: var(--l-txt);
  line-height: 1.45; word-break: keep-all;
  grid-column: 1;
}
.story-board-meta {
  grid-column: 1;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: .84rem; color: var(--l-txt2);
}
.story-board-author-name { color: var(--n700); font-weight: 600; }
.story-board-author-sub  { color: var(--l-txt3); }
.story-board-author-badge {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  background: var(--orange); color: #fff;
  border-radius: 6px; padding: 2px 8px; line-height: 1.4;
}
.story-board-date {
  grid-row: span 2;
  font-size: .82rem; color: var(--l-txt3);
  white-space: nowrap; align-self: center;
}

/* ── 회복자 이야기 목록 (썸네일형, 레거시) ── */
.story-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-card {
  background: #fff; border-radius: 18px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all .35s var(--spring);
}
.story-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(12,53,93,.12); }
.story-card-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--n100); }
.story-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: filter .35s; }
.story-card:hover .story-card-thumb img { filter: brightness(.9); }
.story-card-body { padding: 22px 24px; }
.story-card-cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.story-card-title { font-size: .95rem; font-weight: 600; color: var(--l-txt); line-height: 1.5; word-break: keep-all; }
.story-card-date { font-size: 13px; color: var(--l-txt3); margin-top: 10px; }

/* ── 회복자 이야기 상세 ── */
.story-detail-head {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 36px 52px 28px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--l-bdr);
}
/* 헤더 다음 본문은 둥근 모서리 위쪽 제거하여 시각적으로 한 카드처럼 연결 */
.story-detail-head + .html-content {
  border-radius: 0 0 20px 20px !important;
  margin-top: 0;
}

/* 이전/다음 네비게이션 */
.story-nav {
  margin-top: 32px;
  background: #fff;
  border-top: 2px solid var(--n800);
  border-bottom: 1px solid var(--l-bdr);
}
.story-nav-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--l-bdr2);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.story-nav-item:last-child { border-bottom: none; }
.story-nav-item:hover { background: var(--n25); }
.story-nav-item.is-disabled {
  pointer-events: none;
  opacity: .55;
}
.story-nav-label {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .78rem; font-weight: 700;
  color: var(--n700);
  letter-spacing: .02em;
}
.story-nav-title {
  font-size: .98rem; font-weight: 500;
  color: var(--l-txt);
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.story-nav-icon {
  color: var(--l-txt3);
  display: inline-flex; align-items: center;
}

/* 목록으로 버튼 (중앙 정렬) */
.story-detail-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.story-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--n800);
  border-radius: 100px;
  background: var(--n800);
  color: #fff;
  font-family: Pretendard, sans-serif;
  font-size: .9rem; font-weight: 600;
  cursor: pointer;
  transition: all .18s;
}
.story-back-btn:hover {
  background: var(--n900);
  border-color: var(--n900);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(12,53,93,.18);
}

/* ── 모임 목록 ── */
.meeting-card {
  background: #fff; border-radius: 18px;
  padding: 28px;
  margin-bottom: 16px;
  transition: box-shadow .3s;
}
.meeting-card:hover { box-shadow: 0 8px 28px rgba(12,53,93,.08); }
.meeting-card-title { font-size: 1.05rem; font-weight: 700; color: var(--n800); margin-bottom: 10px; word-break: keep-all; }
.meeting-card-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: var(--l-txt2); }
.meeting-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  border-radius: 6px; padding: 3px 9px;
  background: var(--n100); color: var(--n700);
}

/* ── 운영시간 반응형 ── */
.hours-row {
  display: flex; align-items: center; gap: 0;
  padding: 24px 4px; border-bottom: 1px solid #dce8f4;
}
.hours-label {
  flex-shrink: 0; width: 68px;
  font-size: .72rem; font-weight: 700; color: #2563a0;
  letter-spacing: .05em; padding-right: 20px;
  border-right: 1px solid #d0dce8; margin-right: 24px; line-height: 1.4;
}
.hours-period { flex-shrink: 0; width: 154px; font-size: 13px; color: #6b7280; }
.hours-time { flex: 1; font-size: 1.7rem; font-weight: 800; color: #0c355d; letter-spacing: -.03em; line-height: 1; }
.hours-day { flex-shrink: 0; font-size: 13px; color: #6b7280; }

@media (max-width: 560px) {
  .hours-row { flex-wrap: wrap; row-gap: 8px; padding: 16px 4px; }
  .hours-label { width: auto; border-right: none; padding-right: 0; margin-right: 10px; }
  .hours-period { width: auto; flex: 1; }
  .hours-time { width: 100%; font-size: 1.35rem; }
  .hours-day { font-size: 12px; margin-left: auto; }
}

/* ── info-box (강조 박스) ── */
.info-box {
  background: var(--n50); border-left: 3px solid var(--n600);
  border-radius: 0 12px 12px 0; padding: 18px 22px;
  font-size: .92rem; color: var(--l-txt2); line-height: 1.7;
  margin: 24px 0; word-break: keep-all;
}
.info-box strong { color: var(--n800); }

/* ── 반응형 ── */
@media(max-width:1024px) {
  .sub-gnb-inner { padding: 0 24px; }
  .sh-content { padding: 0 24px 52px; }
  .sub-body { padding: 40px 24px 64px; }
  .html-content { padding: 32px 36px; }
  .notice-detail-head,
  .notice-detail-body { padding-left: 36px; padding-right: 36px; }
  .story-detail-head { padding: 28px 36px; }
  .story-list-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .story-board-item { padding: 18px 22px; }
}
@media(max-width:768px) {
  .sub-hero-main { height: 280px; border-radius: 0 0 80px 0; }
  .sh-content { padding: 0 20px 36px; }
  .sh-eyebrow { margin-bottom: 14px; }
  .sub-gnb-inner { display: flex; padding: 0 10px; height: 48px; }
  .sub-gnb-mobile { display: none; }
  .sub-gnb-home { width: 38px; }
  .gnb-sel-btn { padding: 0 10px; min-width: 0; font-size: .82rem; gap: 5px; }
  .gnb-sel-btn.is-page { font-size: .84rem; }
  .gnb-panel { min-width: 150px; }
  .gnb-panel-link { padding: 11px 14px; font-size: .83rem; }
  .gnb-panel-link:hover { padding-left: 18px; }
  .sub-body { padding: 40px 24px 64px; }
  .sub-page-heading { margin-bottom: 36px; }
  .html-content { padding: 24px 20px; border-radius: 14px; font-size: .95rem; }
  .notice-detail-head { padding: 20px; }
  .notice-detail-body { padding: 20px; border-radius: 0 0 14px 14px; }
  .diag-question-wrap { padding: 24px 20px; }
  .story-list-grid { grid-template-columns: 1fr; }
  .story-detail-head { padding: 20px; }
  .story-nav-item { grid-template-columns: 70px 1fr; padding: 14px 20px; }
  .story-nav-icon { display: none; }
  .story-nav-title { font-size: .9rem; }
  .sub-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .notice-list-item { padding: 16px 20px; }
  .story-board-item { padding: 16px 20px; }
  .story-board-title { font-size: 1rem; }
  .story-cat-tab { padding: 7px 13px; font-size: .82rem; }
}
@media(max-width:600px) {
  .story-toolbar { flex-direction: column; align-items: stretch; gap: 10px; }
  .story-search { width: 100%; }
  .story-search-input { width: 100%; }
}
@media(max-width:480px) {
  .sub-hero-main { height: 220px; border-radius: 0 0 60px 0; }
  .sh-desc { display: none; }
  .html-content { padding: 20px 16px; }
  .sub-gallery-grid { grid-template-columns: 1fr; }
  .diag-q-options { flex-direction: column; gap: 8px; }
}

/* ══════════════════════════════════════════
   센터장 인사말 — 모던 레이아웃
   ══════════════════════════════════════════ */

/* ── 인사 섹션 (사진 + 본문) ── */
.greeting-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  margin-bottom: 80px;
  align-items: start;
}
.greeting-portrait-wrap {
  position: sticky; top: 130px;
}
.greeting-portrait {
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--n100) 0%, var(--n200) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.greeting-portrait .placeholder {
  font-size: 80px;
  color: rgba(12,53,93,.35);
}
.greeting-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 35% center;
  display: block;
}
.greeting-portrait::after {
  content: '';
  position: absolute;
  right: -16px; bottom: -16px;
  width: 64px; height: 64px;
  background: var(--orange);
  border-radius: 50%;
  z-index: -1;
}
.greeting-portrait-meta {
  margin-top: 18px;
  text-align: center;
}
.greeting-portrait-name {
  font-size: 1.05rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  margin: 0;
}
.greeting-portrait-role {
  margin-top: 4px;
  font-size: .8rem; color: var(--l-txt2);
  letter-spacing: .02em;
}
.greeting-body {
  font-size: 1rem; line-height: 1.85;
  color: var(--l-txt2);
  word-break: keep-all;
}
.greeting-body .lead {
  font-size: 1.4rem; font-weight: 600;
  line-height: 1.5;
  color: var(--n900);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.greeting-body p { margin: 0 0 18px; }
.greeting-body p:last-child { margin-bottom: 0; }
.greeting-body strong, .greeting-body b { color: var(--n800); font-weight: 700; }
.greeting-body em.term {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(232,112,42,.22) 60%);
  padding: 0 2px;
  font-weight: 600;
  color: var(--n900);
}

/* ── 3-pillar 섹션 ── */
.greeting-pillars-wrap {
  margin-bottom: 80px;
}
.greeting-pillars-head {
  text-align: center;
  margin-bottom: 44px;
}
.greeting-pillars-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.greeting-pillars-title {
  font-size: 1.7rem; font-weight: 700;
  color: var(--n900); letter-spacing: -.02em;
  line-height: 1.4;
  word-break: keep-all;
  margin: 0;
}
.greeting-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.greeting-pillar {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px 32px;
  border: 1px solid var(--l-bdr2);
  transition: transform .35s var(--spring), box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.greeting-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(12,53,93,.12);
  border-color: transparent;
}
.greeting-pillar::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--n800), var(--orange));
  opacity: 0;
  transition: opacity .35s;
}
.greeting-pillar:hover::before { opacity: 1; }
.greeting-pillar-num {
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--n100);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.greeting-pillar:hover .greeting-pillar-num { color: var(--orange); }
.greeting-pillar-title {
  font-size: 1.15rem; font-weight: 700;
  color: var(--n900); letter-spacing: -.01em;
  margin: 0 0 12px;
  word-break: keep-all;
}
.greeting-pillar-title .arrow {
  display: inline-block;
  margin: 0 6px;
  color: var(--orange);
  font-weight: 800;
}
.greeting-pillar-desc {
  font-size: .9rem; line-height: 1.7;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0;
}

/* ── 마무리 — 핵심 인용구 + 맺음말 + 서명 ── */
.greeting-outro {
  background: var(--l-bg2);
  border-radius: 24px;
  padding: 56px 56px 48px;
  position: relative;
}
.greeting-outro-eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.greeting-outro-quote {
  position: relative;
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 1.45rem; font-weight: 600;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--n900);
  word-break: keep-all;
  margin: 0 0 32px;
  padding: 0 0 28px 28px;
  border-bottom: 1px solid var(--l-bdr);
}
.greeting-outro-quote::before {
  content: '\201C';
  position: absolute;
  top: -22px; left: -4px;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 400;
  opacity: .55;
}
.greeting-outro p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0 0 18px;
}
.greeting-outro p:last-of-type { margin-bottom: 32px; }
.greeting-sign {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid var(--l-bdr);
  box-shadow: 0 6px 20px rgba(12,53,93,.06);
}
.greeting-sign-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--n800), var(--n600));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.greeting-sign-name {
  font-size: 1rem; font-weight: 700;
  color: var(--n900); letter-spacing: -.01em;
}
.greeting-sign-role {
  font-size: .76rem; color: var(--l-txt2);
  margin-top: 1px;
}

/* 반응형 */
@media(max-width:1024px) {
  .greeting-intro { grid-template-columns: 220px 1fr; gap: 40px; }
  .greeting-pillars-title { font-size: 1.4rem; }
  .greeting-outro { padding: 44px 36px 40px; }
  .greeting-outro-quote { font-size: 1.3rem; }
}
@media(max-width:768px) {
  .greeting-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .greeting-portrait-wrap { position: static; max-width: 220px; margin: 0 auto; }
  .greeting-body .lead { font-size: 1.2rem; }
  .greeting-pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .greeting-pillars-wrap { margin-bottom: 56px; }
  .greeting-outro { padding: 32px 24px; border-radius: 20px; }
  .greeting-outro p { font-size: 1rem; }
  .greeting-outro-quote { font-size: 1.15rem; padding-left: 22px; }
  .greeting-outro-quote::before { font-size: 3rem; top: -16px; }
}

/* ══════════════════════════════════════════
   미션 및 비전 — 모던 레이아웃
   ══════════════════════════════════════════ */
.mission-vision {
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid var(--l-bdr2);
  border-radius: 24px;
  padding: 56px 48px 52px;
  margin-bottom: 64px;
  overflow: hidden;
}
.mission-vision::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--orange) 28%,
    var(--orange-light) 60%,
    transparent 100%);
}
.mission-vision::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,112,42,.06) 0%, transparent 70%);
  pointer-events: none;
}
.mission-vision > * { position: relative; z-index: 1; }
.mission-vision-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.mission-vision-title {
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 2.1rem; font-weight: 700;
  color: var(--n900);
  line-height: 1.45;
  letter-spacing: -.02em;
  word-break: keep-all;
  margin: 0 0 24px;
}
.mission-vision-desc {
  font-size: 1.02rem; line-height: 1.85;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0 auto;
  max-width: 680px;
}

/* ── Mission 섹션 ── */
.mission-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.mission-section-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.mission-section-title {
  font-size: 1.85rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.02em;
  line-height: 1.4;
  word-break: keep-all;
  margin: 0;
}

/* Mission timeline list (5 steps) */
.mission-timeline {
  background: #fff;
  border-top: 2px solid var(--n800);
  border-bottom: 1px solid var(--l-bdr);
  border-radius: 0;
}
.mission-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  padding: 36px 32px;
  border-bottom: 1px solid var(--l-bdr2);
  align-items: start;
  transition: background .2s;
}
.mission-step:last-child { border-bottom: none; }
.mission-step:hover { background: var(--n25); }
.mission-step-num {
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 3.4rem; font-weight: 700;
  color: var(--n200);
  line-height: 1;
  letter-spacing: -.02em;
  transition: color .3s;
}
.mission-step:hover .mission-step-num { color: var(--orange); }
.mission-step-body { padding-top: 12px; }
.mission-step-keyword {
  font-size: 1.25rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  margin: 0 0 10px;
  word-break: keep-all;
}
.mission-step-desc {
  font-size: .98rem; line-height: 1.8;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0;
}
.mission-step-desc strong { color: var(--n800); font-weight: 700; }
.mission-step-desc em.term {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(232,112,42,.22) 60%);
  padding: 0 2px;
  font-weight: 600;
  color: var(--n900);
}

/* 반응형 */
@media(max-width:1024px) {
  .mission-vision { padding: 44px 32px 40px; }
  .mission-vision-title { font-size: 1.7rem; }
  .mission-section-title { font-size: 1.5rem; }
  .mission-step { grid-template-columns: 100px 1fr; gap: 24px; padding: 30px 24px; }
  .mission-step-num { font-size: 2.7rem; }
}
@media(max-width:768px) {
  .mission-vision { padding: 32px 24px 28px; border-radius: 20px; margin-bottom: 48px; }
  .mission-vision-title { font-size: 1.35rem; }
  .mission-vision-desc { font-size: .95rem; }
  .mission-section-title { font-size: 1.25rem; }
  .mission-section-head { margin-bottom: 32px; }
  .mission-step {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 24px 20px;
  }
  .mission-step-body { padding-top: 0; }
  .mission-step-num { font-size: 2rem; }
  .mission-step-keyword { font-size: 1.08rem; }
}

/* ══════════════════════════════════════════
   조직도 — 트리 다이어그램
   ══════════════════════════════════════════ */
.org-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 0 0;
  margin-bottom: 56px;
}
.org-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--l-bdr);
  border-radius: 100px;
  padding: 18px 36px;
  font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  word-break: keep-all;
  text-align: center;
  transition: transform .25s var(--spring), box-shadow .25s, border-color .25s;
  z-index: 1;
}
.org-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12,53,93,.1);
  border-color: var(--n400);
}

/* Level 1 — 센터(브랜드) */
.org-l1 {
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--n800) 0%, var(--n700) 100%);
  color: #fff;
  border-color: transparent;
  padding: 22px 48px;
  box-shadow: 0 12px 32px rgba(12,53,93,.22);
}
.org-l1:hover {
  background: linear-gradient(135deg, var(--n900) 0%, var(--n700) 100%);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(12,53,93,.28);
}
/* Level 2 — 센터장 */
.org-l2 { font-size: .98rem; padding: 16px 40px; }
.org-l2 .org-eyebrow { color: var(--orange); }

/* Level 3 — 하단 직책 */
.org-l3-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  position: relative;
}
.org-l3 { font-size: .92rem; padding: 14px 32px; min-width: 180px; }

/* eyebrow (라벨) */
.org-eyebrow {
  display: block;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 4px;
}
.org-l1 .org-eyebrow { color: rgba(255,255,255,.55); }

/* 연결선 (수직) */
.org-connector-v {
  width: 2px; height: 56px;
  background: linear-gradient(to bottom, transparent 0%, var(--l-bdr) 30%, var(--l-bdr) 70%, transparent 100%);
}
/* L2 → L3 분기 (가로 라인 + 좌우 수직) */
.org-branch {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 56px;
  margin: 0 auto;
}
.org-branch::before {
  /* 가운데 수직 (L2에서 내려옴) */
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 28px;
  background: var(--l-bdr);
  transform: translateX(-50%);
}
.org-branch::after {
  /* 가로 + 좌우 수직 */
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 28px;
  border-top: 2px solid var(--l-bdr);
  border-left: 2px solid var(--l-bdr);
  border-right: 2px solid var(--l-bdr);
  border-radius: 12px 12px 0 0;
}

/* 하단 안내 카드 */
.org-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 28px;
  background: var(--l-bg2);
  border-radius: 100px;
  margin: 8px auto 0;
  font-size: .92rem;
  color: var(--l-txt2);
  letter-spacing: -.01em;
}
.org-contact-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,112,42,.28);
}
.org-contact-tel {
  font-size: 1.05rem; font-weight: 700;
  color: var(--n800);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: color .15s;
}
.org-contact-tel:hover { color: var(--orange); }

/* 반응형 */
@media(max-width:1024px) {
  .org-l3-row { gap: 48px; }
  .org-l3 { min-width: 160px; }
  .org-branch { max-width: 320px; }
}

/* ══════════════════════════════════════════
   오시는 길 — 모던 레이아웃
   ══════════════════════════════════════════ */
/* 지도 카드 (map_embed 주입 영역) */
.location-map {
  background: #fff;
  border: 1px solid var(--l-bdr2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(12,53,93,.07);
  margin-bottom: 56px;
}
.location-map img,
.location-map iframe { width: 100%; display: block; max-width: 100%; }

/* 헤더 — 주소 + 외부 지도 링크 */
.location-head {
  text-align: center;
  margin-bottom: 48px;
}
.location-head-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.location-head-title {
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 1.85rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.02em;
  line-height: 1.45;
  word-break: keep-all;
  margin: 0 0 16px;
}
.location-head-sub {
  font-size: 1rem; color: var(--l-txt2);
  letter-spacing: -.01em;
  word-break: keep-all;
  margin: 0;
}
.location-head-sub strong {
  color: var(--n900); font-weight: 600;
}
.location-head-link {
  display: inline-flex; align-items: center; gap: 3px;
  margin-left: 10px;
  color: var(--n700); font-weight: 600; font-size: .94rem;
  text-decoration: none;
  border-bottom: 1px solid var(--n700);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.location-head-link:hover { color: var(--orange); border-color: var(--orange); }

/* 정보 카드 그리드 */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--l-bdr2);
  border-radius: 20px;
  padding: 32px 28px 28px;
  transition: transform .25s var(--spring), box-shadow .25s, border-color .25s;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12,53,93,.1);
  border-color: transparent;
}
.location-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--n800) 0%, var(--n600) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(12,53,93,.18);
}
.location-card.is-orange .location-card-icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 6px 16px rgba(232,112,42,.28);
}
.location-card-eyebrow {
  font-size: .64rem; font-weight: 700; letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.location-card-title {
  font-size: 1.08rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  margin: 0 0 12px;
  word-break: keep-all;
}
.location-card-desc {
  font-size: .92rem; line-height: 1.75;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0;
}
.location-card-desc strong { color: var(--n800); font-weight: 700; }
.location-card-tel {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--n900); font-weight: 700; font-size: 1.08rem;
  text-decoration: none;
  letter-spacing: -.01em;
  transition: color .15s;
}
.location-card-tel:hover { color: var(--orange); }
.location-card-mail {
  font-size: .86rem;
  color: var(--l-txt2);
  text-decoration: none;
  transition: color .15s;
}
.location-card-mail:hover { color: var(--orange); }

/* 반응형 */
@media(max-width:1024px) {
  .location-head-title { font-size: 1.5rem; }
  .location-card { padding: 28px 24px 24px; }
}
@media(max-width:768px) {
  .location-map { border-radius: 20px; margin-bottom: 40px; }
  .location-head { margin-bottom: 36px; }
  .location-head-title { font-size: 1.2rem; }
  .location-head-sub { font-size: .92rem; }
  .location-head-link { margin-left: 6px; font-size: .88rem; }
  .location-grid { grid-template-columns: 1fr; gap: 14px; }
  .location-card { padding: 24px 22px 22px; border-radius: 16px; }
  .location-card-icon { width: 42px; height: 42px; border-radius: 12px; }
}

/* ══════════════════════════════════════════
   프로그램 로드맵 — 5단계 흐름 + 상세
   ══════════════════════════════════════════ */
/* ── 상단: 5단계 노드 흐름 ── */
.roadmap-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
  position: relative;
}
.roadmap-step-node {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
/* 노드 사이 연결선 — 점선으로 손맛 */
.roadmap-step-node:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 65px;
  left: calc(50% + 65px);
  right: calc(-50% + 65px);
  height: 2px;
  background-image: radial-gradient(circle, var(--n400) 1.5px, transparent 1.5px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  z-index: 0;
  opacity: .6;
}
/* 비대칭 손맛 블롭 — 완벽한 원이 아닌 자연스러운 형태 */
.roadmap-circle {
  position: relative;
  z-index: 1;
  width: 130px; height: 130px;
  background: var(--l-bg2);
  color: var(--n900);
  border: 1.5px solid var(--l-bdr);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  letter-spacing: -.01em;
  box-shadow: 0 8px 22px rgba(12,29,55,.06);
}
/* 각 노드마다 다른 모양 + 살짝 다른 회전 — 너무 정렬되지 않게 */
.roadmap-step-node:nth-child(1) .roadmap-circle {
  border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%;
  transform: rotate(-3deg);
}
.roadmap-step-node:nth-child(2) .roadmap-circle {
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  transform: rotate(2deg);
}
.roadmap-step-node:nth-child(3) .roadmap-circle {
  border-radius: 55% 45% 40% 60% / 50% 50% 60% 40%;
  transform: rotate(-1.5deg);
}
.roadmap-step-node:nth-child(4) .roadmap-circle {
  border-radius: 48% 52% 50% 50% / 60% 40% 55% 45%;
  transform: rotate(3deg);
}
.roadmap-step-node:nth-child(5) .roadmap-circle {
  border-radius: 58% 42% 45% 55% / 45% 55% 50% 50%;
  transform: rotate(-2.5deg);
}
.roadmap-circle-num {
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 1.85rem; font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.roadmap-circle-label {
  font-size: .9rem; font-weight: 700;
  color: var(--n900);
  word-break: keep-all;
  text-align: center;
  padding: 0 8px;
  line-height: 1.3;
}

/* ── 하단: 5단계 상세 카드 ── */
.roadmap-details {
  display: flex; flex-direction: column; gap: 16px;
}
.roadmap-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--l-bdr2);
  border-radius: 20px;
  transition: transform .25s var(--spring), box-shadow .25s, border-color .25s;
}
.roadmap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(12,53,93,.08);
  border-color: transparent;
}
.roadmap-card-num {
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 3rem; font-weight: 700;
  color: var(--n200);
  line-height: 1;
  letter-spacing: -.02em;
  transition: color .3s;
}
.roadmap-card:hover .roadmap-card-num { color: var(--orange); }
.roadmap-card-title {
  font-size: 1.2rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  margin: 4px 0 12px;
  word-break: keep-all;
}
.roadmap-card-desc {
  font-size: 1rem; line-height: 1.8;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0;
}
.roadmap-card-desc strong { color: var(--n800); font-weight: 700; }
.roadmap-card-desc em.term {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(232,112,42,.22) 60%);
  padding: 0 2px;
  font-weight: 600;
  color: var(--n900);
}

/* 4단계 하위 항목 */
.roadmap-sub-list {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 18px;
  padding-top: 20px;
  border-top: 1px dashed var(--l-bdr);
}
.roadmap-sub {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 18px;
}
.roadmap-sub-title {
  font-size: 1rem; font-weight: 700;
  color: var(--n900);
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.roadmap-sub-desc {
  font-size: .94rem; line-height: 1.75;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0;
}
.roadmap-sub-desc strong { color: var(--n800); font-weight: 700; }

/* 반응형 */
@media(max-width:1024px) {
  .roadmap-flow { gap: 4px; margin-bottom: 48px; }
  .roadmap-circle { width: 108px; height: 108px; }
  .roadmap-step-node:not(:last-child)::before {
    top: 54px;
    left: calc(50% + 54px);
    right: calc(-50% + 54px);
  }
  .roadmap-circle-num { font-size: 1.5rem; margin-bottom: 4px; }
  .roadmap-circle-label { font-size: .82rem; }
  .roadmap-card { padding: 28px 24px; grid-template-columns: 76px 1fr; gap: 20px; }
  .roadmap-card-num { font-size: 2.4rem; }
}
@media(max-width:768px) {
  .roadmap-flow {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
    justify-items: center;
  }
  .roadmap-step-node { width: 100%; }
  .roadmap-step-node:not(:last-child)::before {
    top: auto;
    bottom: -28px;
    left: 50%;
    right: auto;
    width: 2px;
    height: 28px;
    transform: translateX(-50%);
    background-image: radial-gradient(circle, var(--n400) 1.5px, transparent 1.5px);
    background-size: 2px 8px;
    background-repeat: repeat-y;
    opacity: .6;
  }
  .roadmap-circle { width: 116px; height: 116px; }
  .roadmap-card {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 24px 22px;
    border-radius: 16px;
  }
  .roadmap-card-num { font-size: 2rem; }
  .roadmap-card-title { font-size: 1.08rem; margin-top: 0; }
  .roadmap-sub-list { margin-top: 18px; padding-top: 16px; }
}
@media(max-width:480px) {
  .roadmap-flow { gap: 28px; }
  .roadmap-circle { width: 104px; height: 104px; }
  .roadmap-circle-num { font-size: 1.45rem; }
  .roadmap-circle-label { font-size: .82rem; }
  .roadmap-step-node:not(:last-child)::before {
    bottom: -22px;
    height: 22px;
  }
  .roadmap-card { padding: 22px 18px; }
  .roadmap-card-num { font-size: 1.85rem; }
  .roadmap-card-title { font-size: 1.02rem; }
  .roadmap-card-desc, .roadmap-sub-desc { font-size: .92rem; }
}

/* ══════════════════════════════════════════
   2026 프로그램 안내 — 모던 레이아웃
   ══════════════════════════════════════════ */

/* ── ① 헤더 (Hero) ── */
.prog2026-hero {
  text-align: center;
  margin-bottom: 56px;
}
.prog2026-hero-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.prog2026-hero-title {
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 2.1rem; font-weight: 700;
  color: var(--n900);
  line-height: 1.45;
  letter-spacing: -.02em;
  word-break: keep-all;
  margin: 0 0 18px;
}
.prog2026-hero-desc {
  font-size: 1.02rem; line-height: 1.85;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0 auto;
  max-width: 640px;
}

/* ── ② 무지개 다이어그램 (canvas로 시안 형식 유지) ── */
.prog2026-fan-wrap {
  max-width: 880px;
  margin: 0 auto 64px;
  padding: 16px;
}
.prog2026-fan-canvas {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 11 / 7;
}

/* ── (구) 5개 카테고리 카드 — 부채꼴 도입으로 더 이상 사용 안 함 ── */
.prog2026-cats {
  display: flex; flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 72px;
}
.prog2026-cat {
  flex: 0 0 calc((100% - 36px) / 3);
  background: #fff;
  border: 1.5px solid var(--l-bdr2);
  padding: 28px 26px 26px;
  position: relative;
  min-height: 200px;
  display: flex; flex-direction: column;
}
/* 비대칭 손맛 — 카드마다 다른 모양 + 살짝 회전 */
.prog2026-cat:nth-child(1) {
  border-radius: 28px 22px 26px 32px;
  transform: rotate(-1.2deg);
}
.prog2026-cat:nth-child(2) {
  border-radius: 22px 30px 24px 26px;
  transform: rotate(0.8deg);
}
.prog2026-cat:nth-child(3) {
  border-radius: 32px 24px 28px 22px;
  transform: rotate(-0.5deg);
}
.prog2026-cat:nth-child(4) {
  border-radius: 24px 32px 22px 28px;
  transform: rotate(0.6deg);
}
.prog2026-cat:nth-child(5) {
  border-radius: 26px 22px 32px 24px;
  transform: rotate(-1deg);
}
.prog2026-cat-mark {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--l-bg2);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.prog2026-cat-eyebrow {
  font-size: .62rem; font-weight: 700; letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.prog2026-cat-title {
  font-size: 1.1rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  word-break: keep-all;
  margin: 0 0 10px;
}
.prog2026-cat-desc {
  font-size: .9rem; line-height: 1.7;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0;
}

/* ── ③ 프로그램 상세 (Bento Grid — 뉴스레터/이벤트 페이지 스타일) ── */
.prog2026-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}
.prog2026-card {
  border-radius: 20px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
/* 사이즈 — bento 레이아웃 */
.prog2026-card.is-hero { grid-column: span 6; padding: 36px 40px; }
.prog2026-card.is-lg   { grid-column: span 3; }
.prog2026-card.is-md   { grid-column: span 2; }

/* 톤 — 카드마다 분위기 변화 */
.prog2026-card.tone-beige { background: var(--l-bg2); }
.prog2026-card.tone-white { background: #fff; border: 1px solid var(--l-bdr); }
.prog2026-card.tone-soft-orange {
  background: linear-gradient(135deg, #fef4eb 0%, #fde9d6 100%);
}
.prog2026-card.tone-soft-navy {
  background: linear-gradient(135deg, #f0f6fb 0%, #dce8f4 100%);
}

/* 우상단 작은 영문 카테고리 태그 */
.prog2026-card-tag {
  position: absolute;
  top: 22px; right: 22px;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  color: var(--orange);
  text-transform: uppercase;
  background: rgba(255,255,255,.7);
  padding: 5px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.prog2026-card.tone-white .prog2026-card-tag { background: var(--l-bg2); }

/* 카드 헤딩 — dot + 텍스트 */
.prog2026-card-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.12rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  margin: 0 0 14px;
  word-break: keep-all;
  padding-right: 60px; /* 우상단 태그와 겹침 방지 */
}
.prog2026-card-title::before {
  content: '';
  flex: 0 0 auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.prog2026-card.is-hero .prog2026-card-title { font-size: 1.35rem; margin-bottom: 18px; }

.prog2026-card-text {
  font-size: .94rem; line-height: 1.75;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0;
}
.prog2026-card-text strong { color: var(--n800); font-weight: 700; }
.prog2026-card-text + .prog2026-card-text { margin-top: 4px; }
.prog2026-card-list {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 7px;
}
.prog2026-card-list li {
  font-size: .92rem; line-height: 1.55;
  color: var(--l-txt2);
  padding-left: 16px;
  position: relative;
  word-break: keep-all;
}
.prog2026-card-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.prog2026-card-list li strong { color: var(--n900); font-weight: 700; }
/* hero 카드 안의 sub-list는 2컬럼으로 분할 */
.prog2026-card-list-2col {
  margin: 12px 0 0; padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.prog2026-card-list-2col li {
  font-size: .92rem; line-height: 1.55;
  color: var(--l-txt2);
  padding-left: 14px;
  position: relative;
  word-break: keep-all;
}
.prog2026-card-list-2col li::before {
  content: '';
  position: absolute;
  left: 0; top: .58em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.prog2026-card-list-2col li strong { display: block; color: var(--n900); font-weight: 700; margin-bottom: 2px; }

/* (구) 2컬럼 — bento로 대체되었지만 다른 페이지 호환 위해 유지 */
.prog2026-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.prog2026-detail-col {
  display: flex; flex-direction: column;
  gap: 18px;
}
.prog2026-block {
  background: var(--l-bg2);
  border-radius: 18px;
  padding: 26px 28px;
}
.prog2026-block-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.08rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  margin: 0 0 12px;
  word-break: keep-all;
}
/* 시안의 작은 마커 — 오렌지 dot */
.prog2026-block-title::before {
  content: '';
  flex: 0 0 auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.prog2026-block-text {
  font-size: .94rem; line-height: 1.75;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0;
}
.prog2026-block-text strong { color: var(--n800); font-weight: 700; }
.prog2026-block-list {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column;
  gap: 7px;
}
.prog2026-block-list li {
  font-size: .92rem; line-height: 1.55;
  color: var(--l-txt2);
  padding-left: 16px;
  position: relative;
  word-break: keep-all;
}
.prog2026-block-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.prog2026-block-list li strong { color: var(--n900); font-weight: 700; }

/* ══════════════════════════════════════════
   프로그램 및 교육 제안
   ══════════════════════════════════════════ */
.proposal-hero {
  text-align: center;
  margin-bottom: 40px;
}
.proposal-hero-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.proposal-hero-title {
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 1.85rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.02em;
  line-height: 1.45;
  margin: 0 0 14px;
  word-break: keep-all;
}
.proposal-hero-desc {
  font-size: 1rem; line-height: 1.8;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0 auto;
  max-width: 620px;
}

/* CTA — 구글폼 링크 */
.proposal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--n900) 0%, var(--n800) 65%, var(--n700) 100%);
  color: #fff;
  border-radius: 22px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: 0 16px 40px rgba(12,29,55,.15);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.proposal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(12,29,55,.22);
}
.proposal-cta::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,112,42,.22) 0%, transparent 70%);
  pointer-events: none;
}
.proposal-cta-info { position: relative; z-index: 1; }
.proposal-cta-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  color: var(--orange-light);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.proposal-cta-title {
  font-size: 1.3rem; font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.proposal-cta-desc {
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  margin: 0;
}
.proposal-cta-arrow {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative; z-index: 1;
  box-shadow: 0 10px 24px rgba(232,112,42,.4);
  transition: transform .2s;
}
.proposal-cta:hover .proposal-cta-arrow {
  transform: translateX(4px);
}

/* 섹션 헤딩 (공통) */
.proposal-section-head {
  text-align: center;
  margin-bottom: 36px;
}
.proposal-section-eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.proposal-section-title {
  font-size: 1.55rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.02em;
  margin: 0;
  word-break: keep-all;
}

/* 제안 분야 칩 */
.proposal-fields {
  margin-bottom: 64px;
}
.proposal-fields-grid {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.proposal-field-chip {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 14px 22px;
  background: #fff;
  border: 1.5px solid var(--l-bdr);
  border-radius: 100px;
  font-size: .94rem; font-weight: 600;
  color: var(--n900);
  letter-spacing: -.01em;
  word-break: keep-all;
}
.proposal-field-chip iconify-icon {
  color: var(--orange);
}

/* 처리 프로세스 — 4단계 가로 흐름 */
.proposal-process {
  margin-bottom: 64px;
}
.proposal-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.proposal-step {
  background: var(--l-bg2);
  border-radius: 18px;
  padding: 28px 24px 26px;
  position: relative;
  text-align: center;
}
.proposal-step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Noto Serif KR', Georgia, serif;
  font-weight: 700; font-size: .98rem;
  margin: 0 auto 14px;
}
.proposal-step-title {
  font-size: 1.02rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  margin: 0 0 8px;
}
.proposal-step-desc {
  font-size: .88rem; line-height: 1.65;
  color: var(--l-txt2);
  word-break: keep-all;
  margin: 0;
}

/* 안내 박스 — 작성 가이드 + 개인정보 */
.proposal-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}
.proposal-note {
  background: #fff;
  border: 1px solid var(--l-bdr);
  border-radius: 18px;
  padding: 24px 26px;
}
.proposal-note-title {
  display: flex; align-items: center; gap: 8px;
  font-size: .98rem; font-weight: 700;
  color: var(--n900);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.proposal-note-title iconify-icon { color: var(--orange); }
.proposal-note-text {
  font-size: .9rem; line-height: 1.7;
  color: var(--l-txt2);
  margin: 0;
  word-break: keep-all;
}

/* 반응형 */
@media(max-width:1024px) {
  .proposal-process-grid { grid-template-columns: repeat(2, 1fr); }
  .proposal-hero-title { font-size: 1.55rem; }
  .proposal-section-title { font-size: 1.3rem; }
}
@media(max-width:768px) {
  .proposal-hero-title { font-size: 1.3rem; }
  .proposal-hero-desc { font-size: .94rem; }
  .proposal-cta {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px 22px;
    border-radius: 18px;
  }
  .proposal-cta-arrow { align-self: flex-end; }
  .proposal-cta-title { font-size: 1.12rem; }
  .proposal-process-grid { grid-template-columns: 1fr; gap: 12px; }
  .proposal-notes { grid-template-columns: 1fr; }
  .proposal-field-chip { font-size: .88rem; padding: 12px 18px; }
}

/* ── ④ 신청 CTA — 흰 카드 + 좌측 오렌지 띠 (차분) ── */
.prog2026-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--l-bdr);
  border-radius: 22px;
  padding: 32px 36px 32px 40px;
  position: relative;
  overflow: hidden;
}
/* 좌측 오렌지 그라디언트 띠 — 본문 카드와 구분 포인트 */
.prog2026-cta::before {
  content: '';
  position: absolute;
  left: 0; top: 24%; bottom: 24%;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange) 0%, var(--orange-light) 60%, transparent 100%);
  border-radius: 0 3px 3px 0;
}
.prog2026-cta-title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--n900);
  letter-spacing: -.01em;
  margin: 0 0 8px;
  word-break: keep-all;
}
.prog2026-cta-desc {
  font-size: .92rem; line-height: 1.7;
  color: var(--l-txt2);
  margin: 0;
  word-break: keep-all;
}
.prog2026-cta-tel {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 14px 26px;
  background: var(--l-bg2);
  border: 1px solid var(--l-bdr);
  border-radius: 14px;
  color: var(--n900);
  text-decoration: none;
  transition: border-color .18s, background .18s;
}
.prog2026-cta-tel:hover {
  border-color: var(--orange);
  background: #fff;
}
.prog2026-cta-tel-label {
  font-size: .7rem; font-weight: 600;
  color: var(--l-txt2);
  margin-bottom: 4px;
}
.prog2026-cta-tel-num {
  font-size: 1.35rem; font-weight: 800;
  color: var(--n900);
  letter-spacing: -.02em;
}

/* 반응형 */
@media(max-width:1024px) {
  .prog2026-hero-title { font-size: 1.7rem; }
  .prog2026-cat { flex: 0 0 calc((100% - 18px) / 2); }
  .prog2026-cat:nth-child(5) { flex: 0 0 calc((100% - 18px) / 2); }
}
@media(max-width:1024px) {
  .prog2026-bento { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .prog2026-card.is-hero { grid-column: span 4; }
  .prog2026-card.is-lg   { grid-column: span 2; }
  .prog2026-card.is-md   { grid-column: span 2; }
}
@media(max-width:768px) {
  .prog2026-hero-title { font-size: 1.35rem; }
  .prog2026-hero-desc { font-size: .94rem; }
  .prog2026-hero { margin-bottom: 40px; }
  .prog2026-bento { grid-template-columns: 1fr; gap: 14px; }
  .prog2026-card.is-hero,
  .prog2026-card.is-lg,
  .prog2026-card.is-md { grid-column: span 1; padding: 24px 22px; }
  .prog2026-card.is-hero { padding: 28px 24px; }
  .prog2026-card-list-2col { grid-template-columns: 1fr; }
  .prog2026-card-tag { font-size: .58rem; top: 18px; right: 18px; padding: 4px 8px; }
  .prog2026-card-title { padding-right: 70px; font-size: 1.05rem; }
  .prog2026-cats {
    gap: 14px;
    margin-bottom: 56px;
  }
  .prog2026-cat {
    flex: 0 0 100%;
    min-height: auto;
    padding: 24px 22px;
  }
  /* 모바일에서는 회전 거의 없게 */
  .prog2026-cat:nth-child(n) { transform: rotate(0deg); }
  .prog2026-cat-mark { width: 40px; height: 40px; }

  .prog2026-detail { grid-template-columns: 1fr; gap: 18px; }
  .prog2026-block { padding: 22px 22px; border-radius: 14px; }

  .prog2026-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 20px;
    text-align: center;
    border-radius: 20px;
  }
  .prog2026-cta-eyebrow { display: block; }
  .prog2026-cta-title { font-size: 1.15rem; }
  .prog2026-cta-tel { width: 100%; padding: 14px 20px; }
  .prog2026-cta-tel-num { font-size: 1.35rem; }
}
@media(max-width:768px) {
  .org-wrap { padding: 32px 0 0; }
  .org-l1 { padding: 18px 32px; font-size: 1rem; }
  .org-l2 { padding: 14px 28px; }
  .org-l3-row {
    flex-direction: column;
    gap: 0;
    align-items: center;
    width: 100%;
  }
  .org-l3 { min-width: 200px; }
  .org-l3 + .org-l3 { margin-top: 16px; position: relative; }
  .org-l3 + .org-l3::before {
    content: '';
    position: absolute;
    top: -16px; left: 50%;
    width: 2px; height: 16px;
    background: var(--l-bdr);
    transform: translateX(-50%);
  }
  /* 모바일에서는 분기선 대신 단순 수직선으로 */
  .org-branch {
    height: 32px; max-width: none;
  }
  .org-branch::before { height: 32px; }
  .org-branch::after { display: none; }
  .org-connector-v { height: 36px; }
  .org-contact {
    flex-wrap: wrap; padding: 18px 22px;
    font-size: .85rem; text-align: center;
    border-radius: 20px;
  }
}
