@charset "utf-8";
/* ============================================================
   NEXCO — 공통 디자인 시스템 (screen-ui.css)
   ------------------------------------------------------------
   ▸ 1rem = 10px (html 62.5%)
   ▸ 폰트: Noto Sans (국문/영문)
   ▸ 폰트 크기 4단계 고정
       메인 타이틀 3.6rem / 서브 타이틀 2.4rem / 본문 1.8rem / 부가 1.5rem
   ▸ 컨테이너 1200px, 좌우 패딩 없음 (모바일에서만 안전 여백)
   ▸ 색상: NEXCO 블루 계열
   ▸ 반응형: PC ~ 모바일(480px) 미디어쿼리
   ============================================================ */

/* ── 토큰 ─────────────────────────────────────────────────── */
:root {
  --nx-primary:      #12579f;  /* 메인 블루 */
  --nx-primary-dark: #0e457c;  /* 딥 블루 */
  --nx-primary-2:    #2f7fd6;  /* 밝은 블루 */
  --nx-tint:         #eef4fb;  /* 연블루 배경 */
  --nx-tint-2:       #dbe8f6;
  --nx-accent:       #e23b2e;  /* 포인트 레드 (강조 최소사용) */

  --nx-ink:    #17181a;  /* 강한 제목 */
  --nx-body:   #3d4148;  /* 본문 */
  --nx-muted:  #6b7078;  /* 보조 텍스트 */
  --nx-line:   #e2e6ec;  /* 구분선 */
  --nx-soft:   #f5f7fa;  /* 소프트 배경 */

  --fs-main:  3.6rem;
  --fs-sub:   2.4rem;
  --fs-body:  1.8rem;
  --fs-small: 1.5rem;

  --container: 1200px;
  --radius: 10px;
  --shadow: 0 6px 22px rgba(18,54,90,.08), 0 2px 6px rgba(18,54,90,.05);
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ── 리셋 ─────────────────────────────────────────────────── */
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Noto Sans KR','Noto Sans',sans-serif;
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--nx-body);
  background: #fff;
  word-break: keep-all;
}
img { max-width: 100%; height: auto; vertical-align: middle; border: 0; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,p,ul,ol,li,figure,table { margin: 0; padding: 0; }
ul,ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ============================================================
   레이아웃 골격
   ============================================================ */
.nx-container { width: var(--container); max-width: 100%; margin: 0 auto; }
.site-content { padding-bottom: 90px; }
.nx-section { margin: 0 0 64px; }
.nx-section:last-child { margin-bottom: 0; }

/* ============================================================
   공통 타이포 / 헤딩
   ============================================================ */
.nx-head {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--fs-sub); font-weight: 700; line-height: 1.35;
  color: var(--nx-ink); margin: 0 0 24px;
}
.nx-head::before {
  content: ""; width: 14px; height: 14px; flex-shrink: 0; border-radius: 3px;
  background: linear-gradient(135deg, var(--nx-primary), var(--nx-primary-2));
  transform: rotate(45deg);
}
.nx-head--plain::before { display: none; }

.nx-subhead {
  font-size: var(--fs-body); font-weight: 700; color: var(--nx-primary);
  margin: 0 0 12px; padding-left: 14px; position: relative;
}
.nx-subhead::before {
  content: ""; position: absolute; left: 0; top: .95em;
  width: 7px; height: 2px; background: var(--nx-primary);
}

.nx-lead { font-size: var(--fs-body); line-height: 2; color: var(--nx-body); margin: 0 0 40px; }
.nx-lead strong { color: var(--nx-primary); font-weight: 700; }

.nx-note { font-size: var(--fs-small); color: var(--nx-muted); line-height: 1.9; }
.nx-em { color: var(--nx-primary); font-weight: 700; }
.nx-em--red { color: var(--nx-accent); font-weight: 700; }
.nx-coldword { font-size: var(--fs-main); font-weight: 800; color: var(--nx-primary); line-height: 1; margin-left: 8px; }

.nx-list > li {
  position: relative; padding-left: 15px; text-align: left;
  font-size: var(--fs-body); line-height: 1.9; color: var(--nx-body);
}
.nx-list > li::before {
  content: ""; position: absolute; left: 0; top: .85em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--nx-primary-2);
}
.nx-list--sm > li { font-size: var(--fs-small); line-height: 1.85; padding-left: 13px; }
.nx-list--sm > li::before { width: 4px; height: 4px; top: .8em; background: var(--nx-muted); }

/* ============================================================
   카드 / 그리드
   ============================================================ */
.nx-grid { display: grid; gap: 20px; }
.nx-grid--2 { grid-template-columns: repeat(2,1fr); }
.nx-grid--3 { grid-template-columns: repeat(3,1fr); }
.nx-grid--4 { grid-template-columns: repeat(4,1fr); }

.nx-card { background: #fff; border: 1px solid var(--nx-line); border-radius: var(--radius); padding: 28px 26px; }
.nx-card--tint { background: var(--nx-tint); border-color: var(--nx-tint-2); }
.nx-card__title { font-size: var(--fs-body); font-weight: 700; color: var(--nx-primary-dark); margin: 0 0 12px; }
.nx-card__titimg { display: block; width: 100%; height: 160px; object-fit: contain; margin: 0 auto 14px; }

/* 힐링센터 다이어그램 이미지 (center01) */
.nx-heal-fig { text-align: center; margin: 0 0 30px; }
.nx-heal-fig img { width: 100%; max-width: 380px; height: auto; }
.nx-qfig { text-align: center; margin-bottom: 14px; }
.nx-qfig img { width: 100%; max-width: 330px; height: auto; }
/* 퀀텀에너지 소개 파란 제목바 */
.nx-qbar { background: var(--nx-primary); color: #fff; font-size: var(--fs-body); font-weight: 800; padding: 12px 20px; border-radius: 6px; margin: 0 0 18px; line-height: 1.3; }

/* 힐링체험 요령 — 번호 + 사진 + 설명 5단계 */
.nx-heal-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: start; }
.nx-heal-step { text-align: center; }
.nx-heal-step__no {
  width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--nx-primary); color: #fff; font-size: var(--fs-small); font-weight: 800;
}
.nx-heal-step__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; border: 1px solid var(--nx-line); margin-bottom: 12px; }
.nx-heal-step__txt { font-size: var(--fs-small); line-height: 1.55; color: var(--nx-body); }
@media (max-width: 820px) { .nx-heal-steps { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; } }
@media (max-width: 480px) { .nx-heal-steps { grid-template-columns: 1fr; } }

/* 힐링체험 요령 — 녹색 안내박스 */
.nx-heal-tip { background: #e6efc7; border-radius: 10px; padding: 28px 30px; margin-top: 22px; }
.nx-heal-tip__leaf { font-size: 2.4rem; line-height: 1; margin-bottom: 12px; }
.nx-heal-tip p { font-size: var(--fs-small); line-height: 1.8; color: #5c6a3c; margin: 0 0 14px; }
.nx-heal-tip p:last-child { margin-bottom: 0; }
.nx-heal-tip b { color: #6f9e2b; font-weight: 700; }

/* 냉증 증상 흐름 — 원형 + 화살표 (심각도 색상) */
.nx-symptoms { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 4px; }
.nx-symptom {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center; text-align: center;
  width: 106px; height: 106px; border-radius: 50%; padding: 8px;
  font-size: var(--fs-small); font-weight: 700; line-height: 1.3; color: #fff;
}
.nx-symptom--1 { background: #e8df6a; color: #746d22; }
.nx-symptom--2 { background: #e6d63f; color: #6c6418; }
.nx-symptom--3 { background: #f2ba3c; }
.nx-symptom--4 { background: #ec8a33; }
.nx-symptom--5 { background: #df5a23; }
.nx-symptom--6 { background: #cc1f1f; width: 140px; height: 140px; }
.nx-symptom__sep { flex: 0 0 auto; color: #c4c8cd; font-size: 2rem; font-weight: 700; }
@media (max-width: 680px) {
  .nx-symptom { width: 92px; height: 92px; }
  .nx-symptom--6 { width: 150px; height: 150px; line-height: 1.25; }
  .nx-symptom__sep { transform: rotate(90deg); width: 100%; text-align: center; }
}

/* SCOPE — 중앙 로고 박스 (연한 안쪽 테두리 + 진한 바깥 테두리) */
.nx-scope-logo { margin: 6px auto 36px; padding: 8px; background: #fff; border: 2px solid var(--nx-primary); border-radius: 18px; }
.nx-scope-logo__inner {
  display: flex; align-items: center; justify-content: center;
  padding: 36px 20px; border: 1px solid var(--nx-tint-2); border-radius: 12px;
  box-shadow: inset 0 0 24px rgba(47,127,214,.14);
}
.nx-scope-logo__inner img { width: 190px; max-width: 72%; height: auto; }

/* SCOPE — 이미지(위) + 텍스트(아래) 5개 영역 나란히 (테두리 카드형) */
.nx-scope { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: stretch; }
.nx-scope__item {
  text-align: center; background: #fff;
  border: 1px solid var(--nx-line); border-top: 3px solid var(--nx-primary);
  border-radius: var(--radius); padding: 22px 18px;
}
.nx-scope__item .nx-list { text-align: left; margin-top: 8px; }
@media (max-width: 1100px) { .nx-scope { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .nx-scope { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .nx-scope { grid-template-columns: 1fr; } }

/* 제품 소개 그리드 */
.nx-prodgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nx-prod { display: block; border: 1px solid var(--nx-line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; }
.nx-prod:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--nx-tint-2); }
.nx-prod__img { width: 100%; aspect-ratio: 228 / 150; object-fit: cover; display: block; background: var(--nx-soft); }
.nx-prod__name { display: block; padding: 14px 16px; text-align: left; font-size: var(--fs-small); font-weight: 700; color: var(--nx-primary-dark); line-height: 1.4; }
@media (max-width: 900px) { .nx-prodgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .nx-prodgrid { grid-template-columns: repeat(2, 1fr); } }

/* 제품 이미지 라이트박스(모달) */
.nx-lightbox { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; padding: 30px; }
.nx-lightbox.is-open { display: flex; }
.nx-lightbox__dim { position: absolute; inset: 0; background: rgba(0,0,0,.82); }
.nx-lightbox__img { position: relative; max-width: 92%; max-height: 88vh; border-radius: 6px; box-shadow: 0 12px 44px rgba(0,0,0,.5); background: #fff; }
.nx-lightbox__close { position: absolute; top: 18px; right: 22px; z-index: 2; width: 46px; height: 46px; border: none; background: rgba(255,255,255,.16); color: #fff; font-size: 3rem; line-height: 1; border-radius: 50%; cursor: pointer; }
.nx-lightbox__close:hover { background: rgba(255,255,255,.28); }

.nx-numcard {
  background: #fff; border: 1px solid var(--nx-line); border-top: 3px solid var(--nx-primary);
  border-radius: var(--radius); padding: 30px 24px; text-align: center;
}
.nx-numcard__no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 16px; border-radius: 50%;
  background: var(--nx-tint); color: var(--nx-primary); font-size: var(--fs-body); font-weight: 800;
}
.nx-numcard__title { font-size: var(--fs-body); font-weight: 700; color: var(--nx-ink); line-height: 1.4; }

/* ============================================================
   허브 & 스포크 다이어그램
   ============================================================ */
.nx-hub {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr 1fr; gap: 22px 16px;
  grid-template-areas: "a hc b" "c center d" "e hf f";
  align-items: center; margin: 0 auto 44px;
}
.nx-hub__cell--a { grid-area: a; }
.nx-hub__cell--b { grid-area: b; }
.nx-hub__cell--c { grid-area: c; }
.nx-hub__cell--d { grid-area: d; }
.nx-hub__cell--e { grid-area: e; }
.nx-hub__cell--f { grid-area: f; }
.nx-hub__center {
  grid-area: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  aspect-ratio: 1/1; margin: 0 auto; width: 78%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #fff 55%, var(--nx-tint) 100%);
  border: 2px solid var(--nx-tint-2); color: var(--nx-primary);
  font-size: var(--fs-sub); font-weight: 800; letter-spacing: .04em;
}
.nx-bubble {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  aspect-ratio: 1/1; width: 84%; margin: 0 auto; padding: 10px; text-align: center;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--nx-tint) 0%, var(--nx-tint-2) 100%);
  color: var(--nx-primary-dark); font-size: var(--fs-body); font-weight: 700; line-height: 1.35;
  border: 1px solid #cfe0f2;
}
.nx-bubble--sm { font-size: var(--fs-small); width: 62%; }

/* 다이어그램 (사업분야 등) — SVG/이미지 공용 */
.nx-diagram { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.nx-diagram svg, .nx-diagram img { width: 100%; height: auto; display: block; margin: 0 auto; }

/* ── 4차산업 포럼: 목적(리스트 » 결과박스) ── */
.nx-forum-goal { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px 20px; }
.nx-forum-goal__chev { justify-self: center; color: var(--nx-primary-2); font-size: 4rem; font-weight: 800; line-height: 1; }
.nx-forum-goal__box {
  background: var(--nx-primary); color: #fff; border-radius: 10px;
  padding: 26px 34px; text-align: center; font-size: var(--fs-sub); font-weight: 800; line-height: 1.45; white-space: nowrap;
}
/* 이업종 융합 플로우 */
.nx-forum-fuse { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 6px; max-width: 1000px; margin: 28px auto 0; background: var(--nx-soft); border-radius: 12px; padding: 26px 28px; }
.nx-forum-fuse__left { display: grid; gap: 12px; }
.nx-forum-fuse__pill { background: #fff; border: 1px solid var(--nx-primary-2); color: var(--nx-primary); border-radius: 8px; padding: 12px 22px; text-align: center; font-weight: 700; font-size: var(--fs-body); line-height: 1.3; }
.nx-forum-fuse__arrow { background: #9aa3ad; color: #fff; text-align: center; padding: 16px 46px 16px 26px; clip-path: polygon(0 0, 84% 0, 100% 50%, 84% 100%, 0 100%); }
.nx-forum-fuse__arrow strong { display: block; font-size: var(--fs-sub); font-weight: 800; margin: 2px 0; }
.nx-forum-fuse__cap { font-size: var(--fs-small); }
.nx-forum-fuse__result { background: #7b83c4; color: #fff; border-radius: 10px; padding: 24px 32px; text-align: center; font-size: var(--fs-sub); font-weight: 800; line-height: 1.3; white-space: nowrap; }
/* PC 화면에서만 화살표 폭 70% + 가운데 정렬 (모바일은 유지) */
@media (min-width: 721px) {
  .nx-forum-fuse__arrow { width: 70%; justify-self: center; }
}
@media (max-width: 720px) {
  .nx-forum-goal { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .nx-forum-goal__chev { transform: rotate(90deg); }
  .nx-forum-fuse { grid-template-columns: 1fr; gap: 14px; }
  .nx-forum-fuse__arrow { clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%); border-radius: 0; padding: 16px 16px 36px; }
}

/* ── 4차산업 포럼: 과정의 구성(도넛 + 아이콘 리스트) ── */
.nx-forum-comp { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: center; }
.nx-forum-comp__chart img { width: 100%; max-width: 300px; display: block; margin: 0 auto; }
.nx-forum-comp__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 30px; }
.nx-forum-comp__item { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.nx-forum-comp__ic { width: 30px; height: auto; margin-top: 3px; }
.nx-forum-comp__t { font-size: var(--fs-body); font-weight: 800; color: var(--nx-primary-dark); margin: 0 0 6px; }
.nx-forum-comp__t .nx-note { font-weight: 600; }
@media (max-width: 720px) { .nx-forum-comp { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 480px) { .nx-forum-comp__list { grid-template-columns: 1fr; } }

/* ============================================================
   스텝 / 플로우
   ============================================================ */
.nx-flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 10px; }
.nx-flow__item {
  flex: 1 1 0; min-width: 120px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 18px 14px; border: 1px solid var(--nx-tint-2); border-radius: 8px; background: #fff;
  font-size: var(--fs-small); font-weight: 600; color: var(--nx-primary-dark); line-height: 1.4;
}
.nx-flow__arrow { align-self: center; flex: 0 0 auto; color: var(--nx-primary-2); font-size: var(--fs-body); }
.nx-flow--filled .nx-flow__item { background: var(--nx-tint); }

.nx-steps { display: grid; gap: 16px; }
.nx-step {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px;
  background: var(--nx-soft); border: 1px solid var(--nx-line); border-radius: var(--radius);
}
.nx-step__no {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--nx-primary); color: #fff; font-size: var(--fs-small); font-weight: 800;
}
.nx-step__body { font-size: var(--fs-body); line-height: 1.7; }

/* ============================================================
   정의 목록 (라벨 : 값)
   ============================================================ */
.nx-defs { display: grid; gap: 0; border-top: 2px solid var(--nx-primary); }
.nx-def { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--nx-line); }
.nx-def__k { padding: 16px 22px; background: var(--nx-soft); font-size: var(--fs-body); font-weight: 700; color: var(--nx-primary-dark); }
.nx-def__v { padding: 16px 22px; font-size: var(--fs-body); line-height: 1.7; }
.nx-def__v .nx-note { font-size: var(--fs-small); }

/* 파트너 태그형 — 둥근 배지 + 연결선 + 둥근 테두리 설명박스 (분리형) */
.nx-partner { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px 40px; }
.nx-partner__item { display: flex; align-items: center; }
.nx-partner__badge {
  flex: 0 0 128px; display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 66px; padding: 10px 12px; background: var(--nx-primary); color: #fff;
  font-size: var(--fs-small); font-weight: 700; line-height: 1.3; border-radius: 10px;
}
.nx-partner__badge--soft { background: #a7b4d2; }
.nx-partner__desc {
  position: relative; flex: 1 1 auto; display: flex; align-items: center;
  min-height: 66px; margin-left: 20px; padding: 12px 18px;
  border: 1px solid var(--nx-tint-2); border-radius: 10px;
  font-size: var(--fs-small); line-height: 1.45; color: var(--nx-body);
}
.nx-partner__desc::before {
  content: ''; position: absolute; left: -20px; top: 50%;
  width: 20px; height: 2px; background: var(--nx-tint-2);
}
.nx-heal-fig { justify-self: center;}
/* ============================================================
   실적 목록 (기관 : 내용)
   ============================================================ */
/* 하위 항목 들여쓰기 */
.nx-indent { margin-left: 48px; }
@media (max-width: 640px) { .nx-indent { margin-left: 18px; } }

.nx-records { display: grid; gap: 10px; }
.nx-record {
  display: grid; grid-template-columns: 210px 1fr; gap: 8px 16px;
  padding: 12px 0; border-bottom: 1px dashed var(--nx-line); align-items: baseline;
}
.nx-record__org { font-size: var(--fs-body); font-weight: 700; color: var(--nx-primary-dark); }
.nx-record__txt { font-size: var(--fs-small); color: var(--nx-body); line-height: 1.6; }

/* ============================================================
   내부 탭 (서브탭)
   ============================================================ */
.nx-tabs__nav { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 2px solid var(--nx-line); margin-bottom: 34px; }
.nx-tabs__btn {
  padding: 12px 26px; font-size: var(--fs-body); font-weight: 700;
  color: var(--nx-muted); background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer;
  transition: color .15s;
}
.nx-tabs__btn:hover { color: var(--nx-primary-2); }
.nx-tabs__btn.is-active { color: var(--nx-primary); border-bottom-color: var(--nx-primary); }
.nx-tabs__panel { display: none; }
.nx-tabs__panel.is-active { display: block; animation: nxFade .25s var(--ease); }
@keyframes nxFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* 주요이력 + 연혁 2단 나란히 */
.nx-cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .nx-cols2 { grid-template-columns: 1fr; gap: 44px; } }

/* 이력 그룹 (라벨 + 날짜/내용) */
.nx-cv { display: grid; gap: 28px; }
.nx-cv__group { display: grid; grid-template-columns: 120px 1fr; gap: 10px 20px; }
.nx-cv__label {
  font-size: var(--fs-body); font-weight: 800; color: var(--nx-primary);
  padding-top: 8px; border-top: 2px solid var(--nx-primary); height: fit-content;
}
.nx-cv__list { display: grid; gap: 10px; }
.nx-cv__row { display: grid; grid-template-columns: 150px 1fr; gap: 8px 16px; align-items: baseline; }
.nx-cv__date { font-size: var(--fs-small); font-weight: 700; color: var(--nx-primary-dark); }
.nx-cv__desc { font-size: var(--fs-small); color: var(--nx-body); line-height: 1.6; }

/* 연혁 타임라인 */
.nx-timeline { position: relative; }
.nx-tl { display: grid; grid-template-columns: 100px 1fr; gap: 6px 24px; padding: 0 0 26px; }
.nx-tl__year { font-size: var(--fs-sub); font-weight: 800; color: var(--nx-primary); border-top: 2px solid var(--nx-primary); padding-top: 8px; }
.nx-tl__events { display: grid; gap: 10px; padding-top: 8px; }
.nx-tl__event { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: baseline; font-size: var(--fs-small); line-height: 1.6; }
.nx-tl__mon { font-weight: 800; color: var(--nx-primary-2); }

/* 조직도 — 카드 + 커넥터 선 */
.nx-org { --oline: #1f5aa6; text-align: center; }
.nx-org__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; text-align: center; }
.nx-org__chart { display: inline-block; width: 100%; min-width: 900px; padding: 4px 0 8px; }

.nx-org__node {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 150px; padding: 12px 24px; border-radius: 8px;
  color: #fff; font-weight: 700; font-size: var(--fs-body); line-height: 1.3;
}
.nx-org__node--dark { background: var(--nx-primary-dark); }
.nx-org__node--blue { background: var(--nx-primary-2); }
.nx-org__node small { font-weight: 500; font-size: var(--fs-small); margin-left: 8px; opacity: .95; }

/* 세로 연결선 */
.nx-org__v { width: 0; height: 26px; border-left: 2px solid var(--oline); margin: 0 auto; }

/* 감사 / 자문위원 (staff) — 두 노드를 가로선으로 연결, 중앙 스파인 상하 관통 */
.nx-org__staff { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); align-items: center; }
.nx-org__staff > .nx-org__node { white-space: nowrap; }
.nx-org__staff > .nx-org__node:first-child { justify-self: end; }
.nx-org__staff > .nx-org__node:last-child  { justify-self: start; }
.nx-org__staff-mid { position: relative; width: 160px; align-self: stretch; }
.nx-org__staff-mid::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; border-top: 2px solid var(--oline); }
.nx-org__staff-mid::after  { content: ''; position: absolute; left: 50%; margin-left: -1px; top: 0; bottom: 0; border-left: 2px solid var(--oline); }

/* 본부 분기 — 가로 버스 + 각 본부로 내려가는 세로선 (중첩목록 커넥터, 갭 무관) */
.nx-orgtree > ul { position: relative; padding-top: 26px; text-align: center; font-size: 0; margin: 0; list-style: none; }
.nx-orgtree > ul::before { content: ''; position: absolute; top: 0; left: 50%; margin-left: -1px; height: 26px; border-left: 2px solid var(--oline); }
.nx-orgtree > ul > li {
  display: inline-block; vertical-align: top; white-space: normal; text-align: center;
  list-style: none; position: relative; padding: 26px 8px 0; width: 25%; box-sizing: border-box;
}
.nx-orgtree > ul > li::before, .nx-orgtree > ul > li::after {
  content: ''; position: absolute; top: 0; right: 50%; width: 50%; height: 26px; border-top: 2px solid var(--oline);
}
.nx-orgtree > ul > li::after { right: auto; left: 50%; margin-left: -1px; border-left: 2px solid var(--oline); }
.nx-orgtree > ul > li:first-child::before, .nx-orgtree > ul > li:last-child::after { border: 0 none; }
.nx-orgtree > ul > li:last-child::before { border-right: 2px solid var(--oline); }

/* 본부 카드 */
.nx-org__dept { border: 1px solid var(--nx-tint-2); border-top: 3px solid var(--nx-primary); border-radius: 8px; overflow: hidden; background: #fff; text-align: center; }
.nx-org__dept h4 { background: var(--nx-tint); color: var(--nx-primary-dark); font-size: var(--fs-body); font-weight: 700; padding: 12px 10px; margin: 0; }
.nx-org__sub { display: grid; gap: 8px; padding: 12px; list-style: none; margin: 0; }
.nx-org__sub li { background: var(--nx-soft); border: 1px solid var(--nx-line); border-radius: 6px; padding: 10px 8px; font-size: var(--fs-small); color: var(--nx-body); line-height: 1.4; }

/* ============================================================
   표 (반응형 스크롤)
   ============================================================ */
.nx-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.nx-table { min-width: 560px; border-top: 2px solid var(--nx-primary); }
/* 모바일 가로 스크롤 힌트 */
.nx-table-wrap::-webkit-scrollbar { height: 6px; }
.nx-table-wrap::-webkit-scrollbar-thumb { background: var(--nx-tint-2); border-radius: 3px; }
@media (max-width: 640px) {
  .nx-table-wrap {
    border: 1px solid var(--nx-line); border-radius: var(--radius);
    background:
      linear-gradient(90deg, #fff 30%, rgba(255,255,255,0)) 0 0 / 30px 100% no-repeat,
      linear-gradient(90deg, rgba(255,255,255,0), #fff 70%) 100% 0 / 30px 100% no-repeat,
      radial-gradient(farthest-side at 0 50%, rgba(18,54,90,.12), transparent) 0 0 / 12px 100% no-repeat,
      radial-gradient(farthest-side at 100% 50%, rgba(18,54,90,.12), transparent) 100% 0 / 12px 100% no-repeat;
    background-attachment: local, local, scroll, scroll;
  }
}
.nx-table th, .nx-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--nx-line);
  font-size: var(--fs-small); line-height: 1.6; text-align: left; vertical-align: top;
}
.nx-table thead th { background: var(--nx-soft); color: var(--nx-primary-dark); font-weight: 700; }
.nx-table tbody th { background: #fbfcfe; font-weight: 700; color: var(--nx-ink); white-space: nowrap; }

/* ============================================================
   사진 갤러리
   ============================================================ */
.nx-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.nx-gallery--2 { grid-template-columns: repeat(2,1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
.nx-figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--nx-line); background: var(--nx-soft); }
.nx-figure img { display: block; width: 100%; object-fit: cover; }
.nx-figure figcaption { padding: 12px 14px; font-size: var(--fs-small); color: var(--nx-muted); text-align: center; }
.nx-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.nx-photo img { display: block; width: 100%; }

/* 지도 임베드 (반응형) */
.nx-map {
  position: relative; width: 100%; aspect-ratio: 16 / 7;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--nx-line);
}
.nx-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.nx-map__link { font-size: var(--fs-small); font-weight: 700; color: var(--nx-primary); }
@media (max-width: 640px) { .nx-map { aspect-ratio: 4 / 3; } }

.nx-empty {
  text-align: center; padding: 80px 20px; border: 1px dashed var(--nx-line);
  border-radius: var(--radius); background: var(--nx-soft); color: var(--nx-muted); font-size: var(--fs-body);
}

/* ============================================================
   히어로/인트로
   ============================================================ */
.nx-introimg { position: relative; overflow: hidden; border-radius: var(--radius); margin-bottom: 36px; box-shadow: var(--shadow); }
.nx-introimg img { display: block; width: 100%; height: auto; }

/* 아카데미 히어로 — 상단 사진 + 하단 흰 영역에 문구 오버레이 */
.nx-achero { position: relative; }
.nx-achero__img { display: block; width: 100%; height: auto; }
.nx-achero__cap {
  position: absolute; left: 0; right: 0; top: 40%; bottom: 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 2.5% 6% 0;
}
/* 모바일: 이미지 숨기고 문구부터 (오버레이 해제) */
.nx-hide-sp { display: block; }
@media (max-width: 768px) {
  .nx-hide-sp { display: none !important; }
  .nx-achero__cap { position: static; padding: 0; }
}
.nx-intro-title { font-size: var(--fs-sub); font-weight: 800; color: var(--nx-primary-dark); line-height: 1.5; margin: 0 0 16px; }
.nx-intro-title small { display:block; font-size: var(--fs-body); font-weight:600; color: var(--nx-muted); margin-bottom: 6px; }

.nx-quote { border-left: 4px solid var(--nx-primary); padding: 6px 0 6px 20px; margin: 0 0 28px; font-size: var(--fs-sub); font-weight: 700; color: var(--nx-ink); line-height: 1.5; }
.nx-quote small { display:block; font-size: var(--fs-small); font-weight:500; color: var(--nx-muted); margin-top: 8px; }

.nx-contact { display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: var(--fs-body); }
.nx-contact b { color: var(--nx-primary-dark); }

/* 인사말 본문 + CEO 사진 2단 */
.nx-greet { display: flex; gap: 44px; align-items: flex-start; }
.nx-greet__body { flex: 1 1 auto; min-width: 0; }
.nx-greet__photo { flex: 0 0 300px; max-width: 40%; }
.nx-greet__photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
@media (max-width: 768px) {
  .nx-greet { flex-direction: column; align-items: center; }
  .nx-greet__photo { flex-basis: auto; max-width: 260px; margin: 4px auto 0; }
}

/* 인사말 서명 */
.nx-sign { margin-top: 30px; text-align: right; }
.nx-sign__line { font-size: var(--fs-body); color: var(--nx-ink); line-height: 2.2; }
.nx-sign__img { height: 4.6rem; width: auto; vertical-align: middle; margin-left: 4px; }

.nx-chips { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.nx-chip { padding: 10px 18px; border-radius: 30px; background: var(--nx-tint); color: var(--nx-primary-dark); font-size: var(--fs-small); font-weight: 700; }
.nx-chip--warn { background: #fdeceb; color: var(--nx-accent); }

.nx-benefit { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.nx-benefit__item { border: 2px solid var(--nx-primary); border-radius: var(--radius); padding: 20px 16px; text-align: center; }
.nx-benefit__ko { font-size: var(--fs-body); font-weight: 800; color: var(--nx-ink); }
.nx-benefit__en { font-size: var(--fs-small); color: var(--nx-muted); margin-top: 4px; }

/* ============================================================
   메인 페이지 (index)
   ============================================================ */
.nx-main { width: 100%; }

/* 히어로 슬라이더 (자체 구현) — 배너 원본 비율(1200:520) 그대로, 높이 제한 없음 */
.nx-hero {
  position: relative; width: 100%;
  aspect-ratio: 1200 / 460;
  overflow: hidden; background: #0b1e33;
}
.nx-hero__track { position: absolute; inset: 0; }
.nx-hero__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .8s var(--ease);
}
.nx-hero__slide.is-active { opacity: 1; visibility: visible; }
.nx-hero__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 좌우 화살표 — 반투명 원형 버튼 + CSS 화살표 */
.nx-hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 4.8rem; height: 4.8rem; border: none; border-radius: 50%;
  background: rgba(9,28,52,.35); cursor: pointer; opacity: .9;
  transition: background .2s, opacity .2s;
}
.nx-hero__arrow::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 1.2rem; height: 1.2rem;
  border-top: 2px solid #fff; border-right: 2px solid #fff;
}
.nx-hero__arrow--prev { left: 2%; }
.nx-hero__arrow--next { right: 2%; }
.nx-hero__arrow--prev::before { transform: translate(-30%, -50%) rotate(-135deg); }
.nx-hero__arrow--next::before { transform: translate(-70%, -50%) rotate(45deg); }
.nx-hero__arrow:hover { background: var(--nx-primary); opacity: 1; }

/* 인디케이터(dot) — 비활성 반투명 원 → 활성 시 블루 알약형 */
.nx-hero__dots {
  position: absolute; left: 0; right: 0; bottom: 1.4rem; z-index: 3;
  display: flex; justify-content: center; gap: 1rem;
}
.nx-hero__dot {
  width: 1.2rem; height: 1.2rem; padding: 0; border: none; cursor: pointer;
  border-radius: 50%; background: rgba(255,255,255,.55);
  transition: width .25s var(--ease), background .25s, border-radius .25s;
}
.nx-hero__dot.is-active { width: 3.2rem; border-radius: 1rem; background: var(--nx-primary-2); }

/* 사업영역 카드 */
.nx-biz { padding: 80px 0; }
.nx-biz__head { text-align: center; margin-bottom: 48px; }
.nx-biz__eyebrow { font-size: var(--fs-small); font-weight: 700; letter-spacing: .2em; color: var(--nx-primary-2); }
.nx-biz__title { font-size: var(--fs-main); font-weight: 800; color: var(--nx-ink); margin: 8px 0 12px; }
.nx-biz__lead { font-size: var(--fs-body); color: var(--nx-muted); }

.nx-bizcard {
  display: block; height: 100%;
  border: 1px solid var(--nx-line); border-radius: var(--radius);
  padding: 32px 28px; background: #fff; transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.nx-bizcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--nx-tint-2); }
.nx-bizcard__no { font-size: var(--fs-small); font-weight: 800; color: var(--nx-primary-2); letter-spacing: .1em; }
.nx-bizcard__title { font-size: var(--fs-sub); font-weight: 800; color: var(--nx-ink); margin: 10px 0 12px; }
.nx-bizcard__desc { font-size: var(--fs-small); color: var(--nx-muted); line-height: 1.7; }
.nx-bizcard__more { display: inline-block; margin-top: 18px; font-size: var(--fs-small); font-weight: 700; color: var(--nx-primary); }

/* 메인 — 교육(HEALTHCARE CEO ACADEMY) 섹션 */
.nx-academy { display: grid; grid-template-columns: 1.25fr 1fr; border: 1px solid var(--nx-line); border-radius: var(--radius); overflow: hidden; }
.nx-academy__hero {
  padding: 54px 44px; color: #fff; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, #0c366a 0%, #12579f 100%);
}
.nx-academy__label { font-size: var(--fs-small); font-weight: 700; letter-spacing: .2em; color: rgba(255,255,255,.75); }
.nx-academy__title { font-size: var(--fs-main); font-weight: 800; line-height: 1.15; margin: 10px 0 14px; }
.nx-academy__tag { font-size: var(--fs-body); color: rgba(255,255,255,.9); margin-bottom: 26px; }
.nx-academy__btn { align-self: flex-start; background: #fff; color: var(--nx-primary); font-weight: 800; font-size: var(--fs-small); padding: 12px 26px; border-radius: 30px; }
.nx-academy__list { display: grid; }
.nx-academy__item { display: block; padding: 24px 28px; border-bottom: 1px solid var(--nx-line); transition: background .15s; }
.nx-academy__item:last-child { border-bottom: none; }
.nx-academy__item:hover { background: var(--nx-soft); }
.nx-academy__item h4 { font-size: var(--fs-body); font-weight: 800; color: var(--nx-primary); margin-bottom: 8px; }
.nx-academy__item p { font-size: var(--fs-small); color: var(--nx-muted); line-height: 1.6; }
@media (max-width: 820px) { .nx-academy { grid-template-columns: 1fr; } .nx-academy__hero { padding: 40px 28px; } }

/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 1240px) {
  .nx-container { width: 100%; padding: 0 20px; }
}
@media (max-width: 960px) {
  .nx-section { margin-bottom: 48px; }
  .nx-biz { padding: 56px 0; }
  .nx-grid--4 { grid-template-columns: repeat(2,1fr); }
  .nx-hub { grid-template-columns: 1fr 1fr; grid-template-areas: none; }
  .nx-hub__cell--a,.nx-hub__cell--b,.nx-hub__cell--c,.nx-hub__cell--d,
  .nx-hub__cell--e,.nx-hub__cell--f,.nx-hub__center { grid-area: auto; }
  .nx-hub__center { order: -1; grid-column: 1 / -1; width: 46%; }
  .nx-def { grid-template-columns: 150px 1fr; }
  .nx-record { grid-template-columns: 160px 1fr; }
  .nx-partner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nx-grid { width: 100% !important;  }
  .site-content { padding-bottom: 60px; }
  :root { --fs-main: 2.8rem; }
  .nx-biz { padding: 44px 0; }
  .nx-grid--2, .nx-grid--3, .nx-grid--4 { grid-template-columns: 1fr; }
  .nx-hub { grid-template-columns: 1fr; }
  .nx-benefit { grid-template-columns: 1fr; }
  .nx-gallery, .nx-gallery--2 { grid-template-columns: repeat(2,1fr); }
  .nx-flow { flex-direction: column; }
  .nx-flow__arrow { transform: rotate(90deg); }
  /* 정의 목록 — 라벨을 작은 캡션으로, 값은 아래로 (회색 박스 제거) */
  .nx-def { grid-template-columns: 1fr; padding: 12px 4px; gap: 3px; }
  .nx-def__k {
    background: transparent; padding: 0;
    font-size: var(--fs-small); color: var(--nx-primary-2);
  }
  .nx-def__v { padding: 0; }
  /* 실적 목록 — 기관명 캡션 + 내용 */
  .nx-record { grid-template-columns: 1fr; gap: 3px; padding: 12px 4px; }
  .nx-record__org { font-size: var(--fs-small); }
  .nx-partner__badge { flex-basis: 100px; }
  /* 이력/연혁/조직도 모바일 */
  .nx-cv__group { grid-template-columns: 1fr; gap: 8px; }
  .nx-cv__label { border-top: none; padding-top: 0; }
  .nx-cv__row { grid-template-columns: 110px 1fr; }
  .nx-tl { grid-template-columns: 70px 1fr; gap: 4px 14px; }
  .nx-tl__year { font-size: var(--fs-body); }
  .nx-tabs__btn { padding: 10px 14px; }
}
@media (max-width: 480px) {
  .nx-container { padding: 0 16px; }
  .nx-gallery, .nx-gallery--2 { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   유통 > Products (pages/distribution/products.php) — 2026-07-27
   ============================================================ */
/* 취급 분야 체크 리스트 */
.pd-scope { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 0 0 26px; padding: 20px 24px; list-style: none;
  background: var(--nx-tint); border: 1px solid var(--nx-tint-2); border-radius: var(--radius); }
.pd-scope li { display: inline-flex; align-items: center; gap: 9px; font-size: var(--fs-body); font-weight: 700; color: var(--nx-primary-dark, #0d3f74); }
.pd-scope svg { width: 20px; height: 20px; flex: 0 0 auto; padding: 2px; border-radius: 5px; background: var(--nx-primary); color: #fff; }
.pd-contact strong { color: var(--nx-primary); font-weight: 700; }

/* 타이틀·탭메뉴·본문 가운데 정렬 (섹션에 .pd-center 부여, 2026-07-28) */
.pd-center .nx-head { justify-content: center; text-align: center; }
.pd-center .nx-lead,
.pd-center .nx-note { text-align: center; }
.pd-center .pd-scope { justify-content: center; }
.pd-center .pd-tabs { justify-content: center; }

/* 카테고리 탭 */
.pd-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.pd-tab { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 26px;
  border: 1px solid var(--nx-line); border-radius: 40px; background: #fff;
  font-size: var(--fs-small); font-weight: 700; color: var(--nx-muted); text-decoration: none;
  transition: color .18s, background .18s, border-color .18s; }
.pd-tab:hover { color: var(--nx-primary); border-color: var(--nx-primary); }
.pd-tab.is-active { background: var(--nx-primary); border-color: var(--nx-primary); color: #fff; }

/* 제품 카드 — 이미지가 박스를 꽉 채움(cover) */
.pd-card__thumb { display: block; position: relative; height: 210px; background: var(--nx-soft); overflow: hidden; }
.pd-card__thumb img { display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s var(--ease); }
.pd-card:hover .pd-card__thumb img { transform: scale(1.05); }
.pd-card__noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.pd-card__noimg, .pd-view__noimg { font-size: var(--fs-small); color: var(--nx-muted); }
.pd-card .nx-prod__name { min-height: 62px; display: flex; align-items: center; }

/* 상세 화면 */
.pd-crumb { margin: 0 0 18px; font-size: var(--fs-small); color: var(--nx-muted); }
.pd-crumb a { color: var(--nx-primary); font-weight: 700; text-decoration: none; }
.pd-crumb a:hover { text-decoration: underline; }
.pd-crumb span { margin: 0 8px; }
.pd-crumb b { color: var(--text-strong, #161616); }
.pd-view { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pd-view__img { display: flex; align-items: center; justify-content: center; min-height: 380px; padding: 28px;
  background: var(--nx-soft); border: 1px solid var(--nx-line); border-radius: var(--radius); }
.pd-view__img img { max-width: 100%; max-height: 520px; width: auto; height: auto; }
/* 상세 이미지 확대 버튼 (호버 시 확대보기 오버레이) */
.pd-view__img--zoom { position: relative; width: 100%; border: 1px solid var(--nx-line); font: inherit; cursor: zoom-in; overflow: hidden; }
.pd-view__img--zoom img { transition: transform .4s var(--ease); }
.pd-view__img--zoom:hover img { transform: scale(1.06); }
.pd-view__zoom { position: absolute; left: 50%; bottom: 20px; transform: translate(-50%, 10px);
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 40px;
  background: rgba(18, 24, 34, .84); color: #fff; font-size: var(--fs-small); font-weight: 700; white-space: nowrap;
  opacity: 0; transition: opacity .25s var(--ease), transform .25s var(--ease); pointer-events: none; }
.pd-view__zoom svg { width: 17px; height: 17px; }
.pd-view__img--zoom:hover .pd-view__zoom, .pd-view__img--zoom:focus-visible .pd-view__zoom { opacity: 1; transform: translate(-50%, 0); }

/* 제품 이미지 확대 모달 — 원본 1200px 폭, 긴 이미지는 세로 스크롤 */
.pd-modal { position: fixed; inset: 0; z-index: 1300; display: flex; }
.pd-modal[hidden] { display: none; }
.pd-modal__dim { position: absolute; inset: 0; background: rgba(0, 0, 0, .82); }
.pd-modal__scroll { position: relative; z-index: 1; margin: auto; width: min(900px, 100%);
  max-height: 100vh; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch;
  padding: 40px 0; text-align: center; }
.pd-modal__scroll img { display: block; width: 900px; max-width: 100%; height: auto; margin: 0 auto;
  border-radius: 6px; box-shadow: 0 12px 44px rgba(0, 0, 0, .5); background: #fff; }
.pd-modal__close { position: fixed; top: 18px; right: 22px; z-index: 2; width: 48px; height: 48px;
  border: none; border-radius: 50%; background: rgba(255, 255, 255, .16); color: #fff; font-size: 3rem; line-height: 1;
  cursor: pointer; transition: background .18s; }
.pd-modal__close:hover { background: rgba(255, 255, 255, .3); }
@media (max-width: 640px) {
  .pd-modal__scroll { padding: 20px 12px; }
  .pd-modal__close { top: 10px; right: 12px; width: 42px; height: 42px; font-size: 2.6rem; }
}
.pd-view__cat { display: inline-block; margin-bottom: 14px; padding: 6px 14px; border-radius: 40px;
  background: var(--nx-tint); color: var(--nx-primary); font-size: var(--fs-small); font-weight: 700; }
.pd-view__tit { margin: 0 0 20px; font-size: 2.8rem; font-weight: 800; line-height: 1.35; color: var(--text-strong, #161616); word-break: keep-all; }
.pd-view__desc { padding: 22px 0 26px; border-top: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line);
  font-size: var(--fs-body); line-height: 1.95; color: var(--nx-body); word-break: keep-all; }
.pd-view__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pd-btn { display: inline-flex; align-items: center; justify-content: center; height: 50px; padding: 0 30px;
  border: 1px solid var(--nx-primary); border-radius: 40px; background: var(--nx-primary); color: #fff;
  font-size: var(--fs-small); font-weight: 700; text-decoration: none; transition: opacity .18s, background .18s, color .18s; }
.pd-btn:hover { opacity: .88; }
.pd-btn--line { background: #fff; color: var(--nx-primary); }
.pd-btn--line:hover { background: var(--nx-tint); opacity: 1; }

@media (max-width: 900px) {
  .pd-view { grid-template-columns: 1fr; gap: 26px; }
  .pd-view__img { min-height: 300px; }
  .pd-view__tit { font-size: 2.4rem; }
}
@media (max-width: 640px) {
  .pd-scope { gap: 10px 18px; padding: 16px 18px; }
  .pd-tab { height: 42px; padding: 0 18px; }
  .pd-card__thumb { height: 160px; padding: 12px; }
  .pd-card .nx-prod__name { min-height: 0; }
}

/* ============================================================
   라파보드 (헬스 & 웰라이프 > 라파보드) — 2026-07-27
   ============================================================ */

/* ── ◆ 말머리 소제목 ─────────────────────────────────────── */
.rapa-dothead {
  display: flex; align-items: baseline; gap: 10px;
  font-size: var(--fs-sub); font-weight: 700; color: var(--nx-primary);
  line-height: 1.4; margin: 0 0 18px;
}
.rapa-dothead::before {
  content: ''; flex: 0 0 auto; width: 10px; height: 10px;
  background: var(--nx-primary-2); transform: rotate(45deg); translate: 0 -2px;
}
.rapa-dothead b { color: var(--nx-primary); font-weight: 700; }
.rapa-dothead em { font-style: normal; color: var(--nx-ink); font-weight: 700; }

/* ── 제조공정 (원석 › 파쇄 › 가공 › 제품) ────────────────── */
.rapa-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; max-width: 700px; margin: 0 auto; } /* 원본 사진 152px — 확대 방지 */
.rapa-process__item { text-align: center; }
.rapa-process__img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  border: 1px solid var(--nx-line); border-radius: 6px; background: var(--nx-soft);
}
.rapa-process__cap {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px; font-size: var(--fs-body); font-weight: 700; color: var(--nx-ink);
}
.rapa-process__cap::after { content: '〉'; color: var(--nx-muted); font-weight: 400; }

/* ── 라파보드 특징 (허브 & 캡슐) ─────────────────────────── */
.rapa-feature {
  display: grid; grid-template-columns: 1fr 260px 1fr; align-items: center;
  gap: 0 10px; max-width: 1080px; margin: 0 auto;
}
.rapa-feature__side { display: grid; gap: 26px; }
.rapa-feature__core {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 200px; aspect-ratio: 1 / 1; margin: 0 auto; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 18px rgba(18, 54, 90, .12);
  font-size: var(--fs-sub); font-weight: 700; color: var(--nx-ink); line-height: 1.35; text-align: center;
}
.rapa-feature__core::before {
  content: ''; position: absolute; inset: -28px; border-radius: 50%;
  border: 3px dotted #c9ced6;
}
.rapa-feature__dots { display: flex; gap: 5px; margin-top: 8px; }
.rapa-feature__dots i { width: 5px; height: 5px; border-radius: 50%; background: #d8a531; }
.rapa-feature__dots i:nth-child(2) { background: #e5197f; }
.rapa-feature__dots i:nth-child(3) { background: #7b2b8e; }
.rapa-feature__dots i:nth-child(4) { background: #1f5faa; }
.rapa-feature__dots i:nth-child(5) { background: #2a9aa5; }

/* 캡슐 1개 */
.rapa-cap {
  --cap: var(--nx-primary);
  position: relative; display: flex; align-items: center; gap: 14px;
  min-height: 92px; padding: 12px 14px; border-radius: 60px;
  background: var(--cap); color: #fff;
}
.rapa-cap__desc { flex: 1 1 auto; font-size: var(--fs-small); font-weight: 500; line-height: 1.45; text-align: center; }
.rapa-cap__label {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; border-radius: 50%; background: #fff;
  color: var(--cap); font-size: var(--fs-body); font-weight: 800; letter-spacing: -.02em;
}
/* 중심을 향한 점 연결선 */
.rapa-cap::after {
  content: ''; position: absolute; top: 50%; width: 11px; height: 11px;
  margin-top: -5.5px; border-radius: 50%; background: var(--cap);
  box-shadow: 0 0 0 3px #fff;
}
.rapa-feature__side--left  .rapa-cap::after { right: -22px; }
.rapa-feature__side--right .rapa-cap::after { left: -22px; }
.rapa-feature__side--right .rapa-cap { flex-direction: row-reverse; }

.rapa-cap--absorb  { --cap: #efb52a; }
.rapa-cap--sound   { --cap: #f0762a; }
.rapa-cap--flame   { --cap: #e5197f; }
.rapa-cap--light   { --cap: #7b2b8e; }
.rapa-cap--nontox  { --cap: #1f5faa; }
.rapa-cap--insul   { --cap: #2a9aa5; }

/* ── 사용분야 4분면 ──────────────────────────────────────── */
.rapa-field { position: relative; max-width: 940px; margin: 0 auto; }
.rapa-field__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--nx-primary-2); border-radius: 12px; overflow: hidden;
}
.rapa-field__cell { padding: 42px 30px; text-align: center; }
.rapa-field__cell:nth-child(2n)   { border-left: 1px solid var(--nx-primary-2); }
.rapa-field__cell:nth-child(n+3)  { border-top: 1px solid var(--nx-primary-2); }
.rapa-field__t { font-size: var(--fs-sub); font-weight: 700; color: var(--nx-ink); margin-bottom: 10px; }
.rapa-field__d { font-size: var(--fs-body); color: var(--nx-body); line-height: 1.6; }
.rapa-field__core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
  padding: 12px 42px; border-radius: 40px; background: var(--nx-primary);
  color: #fff; font-size: var(--fs-body); font-weight: 700; white-space: nowrap;
  box-shadow: 0 0 0 8px #fff;
}

/* ── 시공사례 사진 ───────────────────────────────────────── */
/* 사진 원본 비율 유지 (요양병원=세로형 / 공항=가로형 혼재) */
.rapa-case { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; justify-items: center; margin: 0 auto; }
.rapa-case--portrait  { max-width: 580px; }
.rapa-case--landscape { max-width: 730px; }
.rapa-case__img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--nx-line); border-radius: 6px; background: var(--nx-soft);
  box-shadow: 0 4px 14px rgba(18, 54, 90, .08);
}

/* ── 반응형 ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .rapa-feature { grid-template-columns: 1fr; gap: 26px; }
  .rapa-feature__core { order: -1; }
  .rapa-feature__core::before { inset: -18px; }
  .rapa-feature__side--right .rapa-cap { flex-direction: row; }
  .rapa-cap::after { display: none; }
}
@media (max-width: 640px) {
  .rapa-process { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .rapa-field__grid { grid-template-columns: 1fr; }
  .rapa-field__cell { padding: 30px 20px; }
  .rapa-field__cell:nth-child(2n)  { border-left: none; }
  .rapa-field__cell:nth-child(n+2) { border-top: 1px solid var(--nx-primary-2); }
  /* 모바일에서는 4분면 중앙 배지가 겹치므로 숨김 (상단 소제목이 동일 역할) */
  .rapa-field__core { display: none; }
  .rapa-case { grid-template-columns: 1fr; gap: 20px; }
  .rapa-dothead { font-size: 2rem; }
}

/* ============================================================
   자사 폐쇄몰 운영 (유통 > 사자존) — 2026-07-27
   ============================================================ */

/* ── 현황 지표 4종 ───────────────────────────────────────── */
.sz-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sz-stat {
  text-align: center; padding: 40px 20px 34px;
  background: #fff; border: 1px solid var(--nx-line); border-radius: var(--radius);
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.sz-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--nx-tint-2); }
.sz-stat__ic {
  display: flex; align-items: center; justify-content: center;
  width: 116px; height: 116px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--nx-tint); color: var(--nx-primary);
}
.sz-stat__ic svg { width: 62px; height: 62px; }
.sz-stat__t { font-size: var(--fs-body); font-weight: 700; color: var(--nx-ink); line-height: 1.4; }
.sz-stat__v { margin-top: 4px; font-size: var(--fs-sub); font-weight: 800; color: var(--nx-primary); line-height: 1.4; }

/* ── 문의 + 바로가기 ─────────────────────────────────────── */
.sz-cta {
  display: grid; grid-template-columns: 1fr auto; gap: 30px 40px; align-items: center;
  padding: 44px 48px; border-radius: var(--radius);
  background: var(--nx-tint); border: 1px solid var(--nx-tint-2);
}
.sz-cta__lead { font-size: var(--fs-body); font-weight: 700; color: var(--nx-ink); line-height: 1.7; }
.sz-contact { display: flex; flex-wrap: wrap; gap: 10px 34px; margin-top: 18px; }
.sz-contact li { display: flex; align-items: center; gap: 9px; font-size: var(--fs-body); color: var(--nx-body); }
.sz-contact svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--nx-primary-2); }
.sz-contact a { font-weight: 700; color: var(--nx-primary); }
.sz-contact a:hover { text-decoration: underline; }
.sz-cta__btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  height: 62px; padding: 0 38px; border-radius: 40px;
  background: var(--nx-primary); color: #fff; font-size: var(--fs-body); font-weight: 700;
  transition: background .18s, transform .18s var(--ease);
}
.sz-cta__btn:hover { background: var(--nx-primary-dark); transform: translateY(-2px); }
.sz-cta__btn svg { width: 20px; height: 20px; }

/* ── 반응형 ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .sz-stats { grid-template-columns: repeat(2, 1fr); }
  .sz-cta { grid-template-columns: 1fr; justify-items: start; padding: 34px 28px; }
}
@media (max-width: 560px) {
  .sz-stats { grid-template-columns: 1fr; gap: 16px; }
  .sz-stat { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 0 20px; text-align: left; padding: 22px 24px; }
  .sz-stat__ic { grid-row: span 2; width: 92px; height: 92px; margin: 0; }
  .sz-stat__ic svg { width: 50px; height: 50px; }
  .sz-stat__t { align-self: end; }
  .sz-stat__v { align-self: start; }
  .sz-br { display: none; }
  .sz-cta__btn { width: 100%; justify-content: center; padding: 0 20px; }
}

/* ============================================================
   글로벌 수출입 (유통 > 수출/수입) — 2026-07-27
   ============================================================ */
.gx-block {
  display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start;
  padding: 40px 44px; background: #fff;
  border: 1px solid var(--nx-line); border-radius: var(--radius);
}
.gx-block:hover { border-color: var(--nx-tint-2); box-shadow: var(--shadow); }

/* 아이콘 클러스터 (수출=4종 2×2 / 수입=1종) */
.gx-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gx-icons--single { grid-template-columns: 1fr; }
.gx-icons__i {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1; border-radius: var(--radius);
  background: var(--nx-tint); color: var(--nx-primary);
}
.gx-icons__i svg { width: 54%; height: 54%; }
.gx-icons--single .gx-icons__i svg { width: 64%; height: 64%; }

/* 본문 */
.gx-title {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px;
  font-size: var(--fs-sub); font-weight: 800; color: var(--nx-primary-dark);
  letter-spacing: -.01em; line-height: 1.3; margin: 0 0 14px;
}
.gx-title span { font-size: var(--fs-body); font-weight: 700; color: var(--nx-muted); }
.gx-sub {
  display: inline-block; margin: 0 0 20px; padding-bottom: 8px;
  border-bottom: 2px solid var(--nx-primary-2);
  font-size: var(--fs-body); font-weight: 700; color: var(--nx-ink); line-height: 1.5;
}
.gx-body .nx-list > li { margin-bottom: 6px; }
.gx-body .nx-list > li:last-child { margin-bottom: 0; }

/* ── 반응형 ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .gx-block { grid-template-columns: 1fr; gap: 28px; padding: 32px 26px; }
  .gx-icons { grid-template-columns: repeat(4, 1fr); max-width: 380px; }
  .gx-icons--single { grid-template-columns: 1fr; max-width: 150px; }
}
@media (max-width: 480px) {
  .gx-icons { grid-template-columns: repeat(2, 1fr); max-width: 220px; }
  .gx-title { font-size: 2rem; gap: 6px; }
  .gx-title span { font-size: var(--fs-small); }
}
