:root {
  --primary: #006CB7;
  --primary-dark: #005a9a;
  --primary-light: #e6f2fa;
  --accent: #f5a623;
  --accent-dark: #d98c0a;
  --text: #222;
  --text-sub: #666;
  --line: #e2e6ea;
  --bg-soft: #f5f8fb;
  --radius: 14px;
  font-size: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section--soft,
.board-section {
  background: var(--bg-soft);
}

.section-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: "";
  width: 10px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.section-desc {
  color: var(--text-sub);
  margin-bottom: 36px;
}

/* ===== 상단 유틸바 ===== */
.utilbar {
  background: #fff;
  color: var(--text-sub);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.utilbar .container {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
}

.utilbar ul {
  display: flex;
  gap: 18px;
}

.utilbar a:hover {
  color: var(--primary);
}

/* ===== 헤더 ===== */
#site-header {
  position: relative;
  z-index: 200;
}

header {
  position: sticky;
  top: 0;
  z-index: 200;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

/* blur는 가상요소에만 — fixed 사이드메뉴 containing block 문제 방지 */
header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 12px;
  overflow: visible;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 32px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  overflow: visible;
}

.mobile-nav-head,
.mobile-nav-foot,
.snb-toggle,
.menu-toggle {
  display: none;
}

.gnb {
  display: flex;
  gap: 2px;
}

.gnb>li {
  position: relative;
}

.gnb-item {
  display: contents;
}

.gnb>li>a,
.gnb-item>a {
  display: block;
  padding: 10px 11px;
  font-weight: 700;
  font-size: 1.00rem;
  border-radius: 8px;
  transition: 0.2s;
  white-space: nowrap;
}

.gnb>li:hover>a,
.gnb>li:hover .gnb-item>a {
  background: var(--primary-light);
  color: var(--primary);
}

.snb {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(0, 108, 183, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 210;
}

.gnb>li:hover .snb {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.snb a {
  display: block;
  padding: 9px 14px;
  font-size: 0.97rem;
  font-weight: 500;
  border-radius: 8px;
  color: var(--text);
  transition: 0.15s;
  white-space: nowrap;
}

.snb a:hover {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-portal {
  padding: 9px 18px;
  border-radius: 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn-portal:hover {
  background: var(--primary-dark);
}

.nav-overlay {
  display: none;
}

/* ===== 히어로 ===== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(0, 108, 183, 0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(0, 108, 183, 0.08), transparent 60%),
    #fff;
  color: var(--text);
  transition: background 0.9s ease, color 0.9s ease;
  height: min(680px, 85vh);
  min-height: 560px;
}

/* 풀블리드 배경 슬라이드 레이어 */
.hero-fulls {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide--full {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-slide--full.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide--full.exit {
  opacity: 0;
  transform: translateX(-48px);
}

.hero-slide--full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide--full.hero-slide--hero001 img,
.hero-slide--full.hero-slide--hero002 img {
  object-position: center;
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(0, 36, 68, 0.72) 0%,
      rgba(0, 48, 90, 0.55) 38%,
      rgba(0, 70, 120, 0.22) 68%,
      rgba(0, 70, 120, 0.08) 100%);
  transition: opacity 0.9s ease;
}

.hero.is-full .hero-full-overlay {
  opacity: 1;
}

.hero.is-full.is-no-overlay .hero-full-overlay {
  opacity: 0;
}

.hero.is-full.is-no-overlay h1 {
  color: var(--text);
}

.hero.is-full.is-no-overlay h1 em {
  color: var(--brand, #006cb7);
}

.hero.is-full.is-no-overlay p.lead {
  color: var(--muted, #5a6a7a);
}

.hero.is-full.is-no-overlay .hero-badge {
  background: rgba(0, 108, 183, 0.08);
  border-color: rgba(0, 108, 183, 0.25);
  color: var(--brand, #006cb7);
}

.hero.is-full.is-no-overlay .hero-badge::before {
  background: var(--brand, #006cb7);
}

.hero.is-full.is-no-overlay .hero-arrow {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.08);
}

.hero.is-full.is-no-overlay .hero-dot {
  background: rgba(0, 0, 0, 0.2);
}

.hero.is-full.is-no-overlay .hero-dot[aria-current="true"] {
  background: var(--brand, #006cb7);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  padding: 72px 0 96px;
  transition: grid-template-columns 0.9s ease, gap 0.9s ease;
}

.hero.is-full .hero-inner {
  grid-template-columns: minmax(0, 1fr) 0fr;
  gap: 0;
}

.hero.is-full .hero-copy {
  max-width: 36em;
}

.hero.is-full .hero-visual {
  opacity: 0;
  visibility: hidden;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero.is-full h1 {
  color: #fff;
}

.hero.is-full h1 em {
  color: #9fd4ff;
}

.hero.is-full p.lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero.is-full .hero-badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero.is-full .hero-badge::before {
  background: #9fd4ff;
}

.hero.is-full .hero-stats strong {
  color: #fff;
}

.hero.is-full .hero-stats span {
  color: rgba(255, 255, 255, 0.78);
}

.hero.is-full .btn-hero.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.hero.is-full .btn-hero.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid #b3d4ea;
  color: var(--primary-dark);
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 1.rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #1a2838;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1 .nowrap {
  white-space: nowrap;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p.lead {
  font-size: 1.00rem;
  color: var(--text-sub);
  margin-bottom: 36px;
  max-width: 32em;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 32px;
  font-weight: 800;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}

.btn-hero.primary {
  background: var(--primary);
  color: #fff;
}

.btn-hero.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-hero.ghost {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-hero.ghost:hover {
  background: var(--primary-light);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stats>div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
}

.hero-stats strong {
  display: inline;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* 텍스트가 이미지 위로 오도록 쌓임 순서 지정 */
.hero-copy {
  position: relative;
  z-index: 2;
  transition: color 0.9s ease;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

/* 컷아웃 슬라이드를 같은 칸에 겹쳐 쌓고 10초마다 스와이프 전환 */
.hero-photo {
  display: grid;
  align-items: end;
}

.hero-slide--cutout {
  grid-area: 1 / 1;
  width: 120%;
  max-width: none;
  height: auto;
  max-height: min(480px, 62vh);
  object-fit: contain;
  object-position: bottom;
  margin-left: -18%;
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-slide--cutout.hero-slide--threegen {
  width: 112%;
  max-height: 460px;
  margin-left: -10%;
}

.hero-slide--cutout.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide--cutout.exit {
  opacity: 0;
  transform: translateX(-70px);
}

/* 히어로 캐러셀 컨트롤 */
.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 72px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
}

.hero-controls>* {
  pointer-events: auto;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 108, 183, 0.28);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(0, 48, 90, 0.1);
  backdrop-filter: blur(6px);
}

.hero-arrow:hover {
  background: #fff;
  border-color: var(--primary);
  transform: scale(1.05);
}

.hero-arrow:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 108, 183, 0.16);
  backdrop-filter: blur(6px);
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 108, 183, 0.28);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}

.hero-dot:hover {
  background: rgba(0, 108, 183, 0.55);
}

.hero-dot[aria-current="true"] {
  width: 22px;
  border-radius: 999px;
  background: var(--primary);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.hero.is-full .hero-arrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.hero.is-full .hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
}

.hero.is-full .hero-arrow:focus-visible {
  outline-color: #fff;
}

.hero.is-full .hero-dots {
  background: rgba(0, 24, 48, 0.35);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero.is-full .hero-dot {
  background: rgba(255, 255, 255, 0.4);
}

.hero.is-full .hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero.is-full .hero-dot[aria-current="true"] {
  background: #fff;
}

.hero.is-full .hero-dot:focus-visible {
  outline-color: #fff;
}

/* ===== 비전 카드 ===== */
.portals {
  margin-top: -56px;
  position: relative;
  z-index: 5;
  padding: 28px 0 36px;
  background: transparent;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--portal-color, var(--primary));
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: 0.25s;
}

.portal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  filter: saturate(1.08);
}

/* 로고 4색 원색: 주황 / 파랑 / 초록 / 핑크 */
.portal-card:nth-child(1) {
  --portal-color: #F5A642;
}

.portal-card:nth-child(2) {
  --portal-color: #56B6DC;
}

.portal-card:nth-child(3) {
  --portal-color: #74B75C;
}

.portal-card:nth-child(4) {
  --portal-color: #F18AA0;
}

.portal-body {
  min-width: 0;
  width: 100%;
}

.portal-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.35;
  text-align: center;
}

.portal-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  text-align: center;
}

/* ===== 소개 ===== */
.about-wrap {
  display: grid;
  grid-template-columns: 0.78fr 1.32fr;
  gap: 40px;
  align-items: center;
}

.about-visual {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  place-items: center;
  gap: 24px;
  text-align: center;
}

.about-visual img {
  width: 150px;
}

.about-visual strong {
  font-size: 1.15rem;
  color: var(--primary-dark);
  word-break: keep-all;
  overflow-wrap: normal;
  line-height: 1.55;
}

.about-visual strong .nowrap {
  white-space: nowrap;
}

.about-body h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  line-height: 1.45;
}

.about-body h3 em {
  font-style: normal;
  color: var(--primary);
}

.about-body p {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.goal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.goal-list li {
  background: var(--primary-light);
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.goal-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
}

/* ===== 조직도 ===== */
.org-section {
  background: var(--bg-soft);
}

.org-chart {
  --org-line: #a3cce6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 32px 0 40px;
  overflow-x: auto;
}

.org-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  background: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: center;
  color: var(--primary-dark);
  white-space: nowrap;
}

.org-ceo {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-size: 1.05rem;
  padding: 12px 42px;
}

.org-vline {
  width: 2px;
  height: 22px;
  background: var(--org-line);
  flex-shrink: 0;
}

.org-vline--from-rail {
  height: 48px;
}

.org-tree {
  --org-fr-sum: 3.35;
  --org-fr-childcare: 1.55;
  --org-fr-senior: 0.8;
  --org-fr-sarang: 1;
  --org-branch-gap: 10px;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-left: 88px;
  padding-right: 96px;
  box-sizing: border-box;
}

.org-branches {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: var(--org-branch-gap);
  width: 100%;
  position: relative;
  z-index: 1;
}

/* 3개 부문 중앙을 잇는 가로 연결선 — 우측은 운영위원회까지 연장 */
.org-branches::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(
    (100% - 2 * var(--org-branch-gap)) * var(--org-fr-childcare) / var(--org-fr-sum) / 2
  );
  right: calc(
    (100% - 2 * var(--org-branch-gap)) * var(--org-fr-sarang) / var(--org-fr-sum) / 2 - 72px
  );
  height: 2px;
  background: var(--org-line);
  z-index: 0;
}

.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  overflow: visible;
}

.org-branch:has(.org-subteams) {
  z-index: 2;
}

/* 팀장 아래 4팀+아이돌봄사 — 열 안에서 가운데 정렬 */
.org-subteams {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* 가로선(레일) 높이의 연결점 — 흐름 높이 0 */
.org-junction {
  position: relative;
  width: 100%;
  height: 0;
  z-index: 2;
}

.org-side {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  transform: translateY(-8%);
  pointer-events: none;
}

.org-side .org-committee {
  align-self: flex-start;
}

.org-side .org-node {
  pointer-events: auto;
}

/* 왼쪽 운영위원회: 세로선·가로 레일에 맞닿게 연결 */
.org-side--left {
  right: 50%;
}

.org-side--left::after {
  content: "";
  width: 20px;
  height: 2px;
  margin: 0 -1px;
  background: var(--org-line);
  flex-shrink: 0;
}

/* 자문위원회 — 운영위원회 (레일 한 줄로만 연결) */
.org-pair {
  position: absolute;
  left: 50%;
  top: 0;
  display: flex;
  align-items: center;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: none;
  gap: 0;
}

.org-pair-gap {
  width: 48px;
  height: 0;
  flex-shrink: 0;
}

.org-committee {
  background: #fff;
  border: 1px dashed #9bbfd9;
  border-radius: 10px;
  color: var(--text-sub);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 10px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.org-dept {
  white-space: normal;
  max-width: 100%;
  padding: 10px 10px;
  border-radius: 14px;
  font-size: 0.84rem;
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
  line-height: 1.35;
}

.org-role {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary-dark);
  min-width: 96px;
}

.org-staff {
  min-width: 96px;
  font-size: 0.86rem;
  background: #fff;
  border-color: #9bbfd9;
  color: var(--text);
}

.org-staff--wide {
  min-width: 140px;
}

.org-split {
  --org-g: 12px;
  --org-cols: 2;
  --org-fork: 16px;
  --org-line-w: 2px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--org-cols), minmax(0, 1fr));
  gap: var(--org-g);
  width: 100%;
  max-width: 320px;
  padding-top: var(--org-fork);
  padding-bottom: var(--org-fork);
}

/* 첫·끝 칸 중앙을 잇는 ∩ / ∪ 연결선 (left·right로 안정 계산) */
.org-split::before,
.org-split::after {
  content: "";
  position: absolute;
  left: calc((100% - (var(--org-cols) - 1) * var(--org-g)) / (var(--org-cols) * 2));
  right: calc((100% - (var(--org-cols) - 1) * var(--org-g)) / (var(--org-cols) * 2));
  height: var(--org-fork);
  width: auto;
  box-sizing: border-box;
  border-style: solid;
  border-color: var(--org-line);
  pointer-events: none;
}

.org-split::before {
  top: 0;
  border-width: var(--org-line-w) var(--org-line-w) 0;
}

.org-split::after {
  bottom: 0;
  border-width: 0 var(--org-line-w) var(--org-line-w);
}

.org-split--4 {
  --org-cols: 4;
  --org-g: 6px;
  --org-fork: 18px;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: 0;
}

.org-split .org-node {
  position: relative;
  width: 100%;
  white-space: nowrap;
  min-width: 0;
  padding: 10px 12px;
  font-size: 0.8rem;
  z-index: 1;
}

.org-split--4 .org-node {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  padding: 8px 4px;
  font-size: 0.72rem;
  letter-spacing: -0.03em;
  box-sizing: border-box;
}

.org-split .org-node::before,
.org-split .org-node::after {
  display: none;
}

.org-merge {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  padding-top: 16px;
}

.org-merge--from-split {
  max-width: none;
  width: 100%;
}

.org-merge::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
  background: var(--org-line);
  pointer-events: none;
}

.org-merge::after {
  display: none;
}

.org-merge .org-node {
  position: relative;
  z-index: 1;
}

.org-staff--link {
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.org-staff--link:hover,
.org-staff--link:focus-visible {
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(0, 120, 193, 0.15);
  outline: none;
}

.org-staff--link.is-active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.org-personnel {
  margin-top: 8px;
}

.org-personnel-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}

.org-personnel-hint {
  margin: 0 0 20px;
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 600;
}

.org-personnel-hint::before {
  content: "– ";
}

.org-personnel-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 0;
}

.org-personnel-tab {
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-sub);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  font-family: inherit;
}

.org-personnel-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.org-personnel-panel {
  padding-top: 20px;
}

.org-personnel-table {
  min-width: 520px;
}

.org-personnel-table thead th.sr-only {
  padding: 0;
  border: 0;
  height: 0;
  overflow: hidden;
}

.org-personnel-table tbody th[scope="rowgroup"],
.org-personnel-table tbody th[scope="row"] {
  width: 14%;
  background: var(--bg-soft);
  font-weight: 800;
  line-height: 1.45;
}

.org-personnel-table .col-task {
  text-align: left;
  padding-left: 18px;
  padding-right: 18px;
  width: 46%;
}

.org-personnel-table tbody td a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.org-personnel-table tbody td a:hover {
  text-decoration: underline;
}

/* ===== 사업 카드 ===== */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.biz-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: 0.25s;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.biz-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 108, 183, 0.12);
}

.biz-card:hover::after {
  transform: scaleX(1);
}

.biz-icon {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.biz-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.biz-card>p {
  font-size: 0.86rem;
  color: var(--text-sub);
}

.biz-card .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 12px;
}

/* 노인일자리 랜딩 카드 — 상단 배경 이미지 */
#senior .biz-card--senior {
  padding: 0;
  display: flex;
  flex-direction: column;
}

#senior .biz-card-visual {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius) var(--radius) 0 0;
}

#senior .biz-card-body {
  padding: 22px 24px 28px;
  flex: 1;
}

#senior .biz-card-body>p {
  font-size: 0.86rem;
  color: var(--text-sub);
}

/* 사랑드림노인복지센터 — 포털 카드 스타일 */
#sarang .biz-grid {
  grid-template-columns: repeat(4, 1fr);
}

#sarang .biz-card {
  background: var(--portal-color, var(--primary));
  border: none;
  text-align: center;
  padding: 28px 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

#sarang .biz-card::after {
  display: none;
}

#sarang .biz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  filter: saturate(1.08);
}

#sarang .biz-card:nth-child(1) {
  --portal-color: #F5A642;
}

#sarang .biz-card:nth-child(2) {
  --portal-color: #56B6DC;
}

#sarang .biz-card:nth-child(3) {
  --portal-color: #74B75C;
}

#sarang .biz-card:nth-child(4) {
  --portal-color: #F18AA0;
}

#sarang .biz-card h3 {
  color: #fff;
  text-align: center;
}

#sarang .biz-card>p {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

/* ===== 사업 카드 캐러셀 ===== */
.biz-carousel {
  position: relative;
}

.biz-carousel-viewport {
  overflow: hidden;
}

.biz-carousel-track {
  display: flex !important;
  grid-template-columns: unset !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}

.biz-carousel-track.is-dragging {
  cursor: grabbing;
  user-select: none;
  scroll-behavior: auto;
}

.biz-carousel-track.is-dragging .biz-card {
  pointer-events: none;
}

.biz-carousel-track::-webkit-scrollbar {
  display: none;
}

.biz-carousel-track>.biz-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}

.biz-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.biz-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}

.biz-carousel-arrow:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.biz-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.biz-carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.biz-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
}

.biz-carousel-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: #c5d3df;
  cursor: pointer;
  padding: 0;
  transition: 0.2s;
}

.biz-carousel-dot:hover {
  background: #9bbfd9;
}

.biz-carousel-dot[aria-current="true"] {
  width: 22px;
  border-radius: 999px;
  background: var(--primary);
}

/* ===== 사업개요 표 ===== */
.overview-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  padding: 40px 44px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}

.home .overview-box {
  background: var(--primary);
  border-color: var(--primary);
}

.home .overview-box dt {
  color: #bfe0f5;
}

.home .overview-box dd {
  color: #fff;
}

.overview-box .full {
  grid-column: 1 / -1;
}

.overview-box dt {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.overview-box dd {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

/* ===== 이용 절차 ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.step {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.83rem;
  color: var(--text-sub);
}

/* ===== 아이돌봄 이용 절차 (플로우) ===== */
.idolbom-flow {
  margin-top: 48px;
  padding: 32px 20px;
  background: var(--bg-soft);
  border-radius: calc(var(--radius) + 6px);
}

.idolbom-flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px 6px;
}

.idolbom-flow-step {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.idolbom-flow-visual {
  position: relative;
  margin: 0 auto 10px;
  max-width: 120px;
}

.idolbom-flow-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.idolbom-flow-num {
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 108, 183, 0.25);
}

.idolbom-flow-label {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.02em;
}

.idolbom-flow-arrow {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  margin-top: -22px;
  padding: 0 1px;
}

/* ===== 게시판 ===== */
.board-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: stretch;
  min-width: 0;
}

.board-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px 30px;
}

.board-box .board-list,
.board-box .home-gallery-grid {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.board-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 16px;
}

.board-tab {
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-sub);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.board-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.board-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 4px;
  border-bottom: 1px solid #f0f2f4;
  font-size: 0.93rem;
}

.board-list li:last-child {
  border-bottom: none;
}

.board-list a {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.board-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.board-list time {
  color: #999;
  font-size: 0.8rem;
}

.tag {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}

.tag.notice {
  background: var(--primary-light);
  color: var(--primary);
}

.tag.hire {
  background: #fdf1da;
  color: #b07508;
}

.tag.press {
  background: #eaf0fb;
  color: #2b5cb8;
}

.tag.data {
  background: #f0eafb;
  color: #6b3fb5;
}

.board-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--primary);
}

.board-more:hover {
  text-decoration: underline;
}

/* ===== 수상 ===== */
.award-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.award-banner {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.award-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 40, 70, 0.78) 0%,
    rgba(8, 54, 92, 0.52) 48%,
    rgba(10, 70, 118, 0.18) 100%
  );
}

.award-banner--01 {
  background-image: url("/images/awards/award-banner-01.jpg");
}

.award-banner--02 {
  background-image: url("/images/awards/award-banner-02.jpg");
}

.award-banner__body {
  position: relative;
  z-index: 1;
  padding: 28px 30px;
  text-shadow: 0 1px 10px rgba(0, 35, 60, 0.4);
}

.award-banner__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.award-banner h4 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.35;
}

.award-banner p:not(.award-banner__label) {
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.92;
}

/* ===== 오시는 길 ===== */
.visit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.visit-map {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.visit-map .kakao-map {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
}

.visit-map .kakao-map-link {
  display: block;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  border-top: 1px solid var(--line);
}

.visit-map .kakao-map-link:hover {
  background: var(--primary-light);
}

.visit-map-fallback {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 280px;
  padding: 30px;
  text-align: center;
  color: var(--text-sub);
  font-size: 0.9rem;
}

.visit-map-fallback .pin {
  font-size: 2.4rem;
}

.kakao-info {
  box-sizing: border-box;
  width: 240px;
  padding: 8px 12px;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.kakao-info strong {
  display: block;
  margin-bottom: 2px;
}

.kakao-info span {
  display: block;
  color: #555;
  font-size: 13px;
  white-space: normal;
  word-break: keep-all;
}

.visit-map .pin {
  font-size: 2.4rem;
}

.visit-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

.customer-center {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
}

.customer-center__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.customer-center__footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.customer-center__body {
  flex: 1;
  min-width: 0;
}

.customer-center__label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-sub);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.customer-center__item+.customer-center__item {
  margin-top: 16px;
}

.customer-center__footer .customer-center__item+.customer-center__item {
  margin-top: 0;
}

.customer-center__type {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.customer-center__phone {
  display: block;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.2s;
}

.customer-center__phone:hover {
  color: var(--primary);
}

.customer-center__hours,
.customer-center__address {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-sub);
  line-height: 1.45;
}

.customer-center__visual {
  position: relative;
  flex-shrink: 0;
  width: 170px;
  height: 170px;
}

.customer-center__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.customer-center__badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 108, 183, 0.35);
  border: 3px solid #fff;
}

.customer-center__badge img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.visit-info {
  display: grid;
  gap: 14px;
  align-content: start;
}

.visit-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
}

.visit-info li > div {
  flex: 1;
  min-width: 0;
}

.visit-info .visit-info-tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.visit-info .visit-info-tel + .visit-info-tel {
  margin-top: 8px;
}

.visit-info .visit-info-tel__floor {
  color: var(--text-sub);
}

.visit-info .visit-info-tel__number {
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.visit-info .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.visit-info h4 {
  font-size: 0.92rem;
}

.visit-info p {
  font-size: 0.86rem;
  color: var(--text-sub);
  line-height: 1.55;
  word-break: keep-all;
}

/* 오시는 길 서브페이지: 지도와 정보 열 너비 균형 */
.page-main .visit-wrap {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 1fr);
  gap: 24px;
}

.page-main .visit-map {
  min-height: 480px;
}

.page-main .visit-map .kakao-map {
  min-height: 430px;
}

.page-main .visit-info {
  gap: 10px;
}

.page-main .visit-info li {
  gap: 10px;
  padding: 12px 14px;
  align-items: center;
}

.page-main .visit-info .ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.page-main .visit-info h4 {
  font-size: 0.84rem;
}

.page-main .visit-info p {
  font-size: 0.82rem;
}

/* ===== 푸터 ===== */
footer {
  background: #fff;
  color: var(--text-sub);
  font-size: 0.84rem;
  border-top: 1px solid var(--line);
}

.footer-top {
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.footer-top .container {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.footer-top a:hover {
  color: var(--primary);
}

.footer-top a.privacy {
  color: var(--primary);
  font-weight: 700;
}

.footer-main .container {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0 44px;
  flex-wrap: wrap;
}

.footer-info strong {
  color: var(--text);
  font-size: 1rem;
  display: block;
  margin-bottom: 12px;
}

.footer-info p {
  margin-bottom: 4px;
}

.copyright {
  padding-top: 18px;
  font-size: 0.78rem;
  color: #8a9aaa;
}

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
  .utilbar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: 0.25s;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-actions .btn-portal {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 200;
    width: min(340px, 86vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0 0 calc(24px + env(safe-area-inset-bottom));
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -16px 0 40px rgba(0, 42, 78, 0.18);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .site-nav {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 18px 18px 14px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-head strong {
    font-size: 1.05rem;
    color: var(--primary-dark);
  }

  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: var(--bg-soft);
    cursor: pointer;
  }

  .mobile-nav-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
  }

  .mobile-nav-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .gnb {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 20px;
  }

  .gnb>li {
    position: static;
    border-bottom: 1px solid #f0f2f4;
  }

  .gnb-item {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 48px;
    cursor: pointer;
  }

  .gnb-item>a {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 14px 8px 14px 18px;
    font-size: 1rem;
    border-radius: 0;
    white-space: normal;
    pointer-events: none;
  }

  .gnb>li:hover .gnb-item>a {
    background: transparent;
    color: var(--text);
  }

  .gnb>li.is-active>.gnb-item>a,
  .gnb>li.is-open>.gnb-item>a {
    background: var(--primary-light);
    color: var(--primary);
  }

  .snb-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    align-self: stretch;
    margin-right: 10px;
    border: none;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    pointer-events: none;
  }

  .snb-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-sub);
    border-bottom: 2px solid var(--text-sub);
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform 0.2s;
  }

  .gnb>li.is-open .snb-toggle::before {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .snb {
    position: static;
    transform: none;
    left: auto;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 6px 12px 10px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--bg-soft);
    opacity: 1;
    visibility: visible;
    display: none;
    list-style: none;
  }

  .gnb>li:hover .snb {
    transform: none;
  }

  .gnb>li.is-open .snb {
    display: block;
  }

  .snb a {
    display: block;
    padding: 10px 12px 10px 16px;
    white-space: normal;
    font-size: 0.92rem;
    border-radius: 6px;
  }

  .snb a.is-active {
    background: rgba(0, 108, 183, 0.12);
    color: var(--primary);
    font-weight: 700;
  }

  .mobile-nav-foot {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding: 16px 18px 0;
  }

  .mobile-nav-foot .btn-portal {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .mobile-nav-tel {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    font-weight: 700;
    color: var(--primary);
    background: #fff;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    /* #site-header(z-index:200) stacking context 아래 — wing menu 클릭 가능 */
    z-index: 90;
    background: rgba(10, 30, 50, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0 88px;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-slide--cutout {
    width: 100%;
    margin-left: 0;
  }

  .hero-slide--cutout.hero-slide--threegen {
    width: 100%;
    max-height: 360px;
    margin-left: 0;
  }

  .hero.is-full .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-full-overlay {
    background:
      linear-gradient(180deg,
        rgba(0, 42, 78, 0.78) 0%,
        rgba(0, 58, 105, 0.62) 55%,
        rgba(0, 80, 140, 0.35) 100%);
  }

  .hero-controls {
    bottom: 64px;
    gap: 10px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .portal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #sarang .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #senior .biz-card-visual {
    height: 200px;
  }

  .biz-carousel-track>.biz-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .idolbom-flow {
    padding: 24px 16px;
  }

  .idolbom-flow-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 8px 10px;
    /* Room for .idolbom-flow-num (top/left: -6px) — overflow-x:auto clips overflow-y */
    padding: 8px 8px 4px;
  }

  .idolbom-flow-row::-webkit-scrollbar {
    display: none;
  }

  .idolbom-flow-step {
    flex: 0 0 132px;
    scroll-snap-align: start;
  }

  .idolbom-flow-visual {
    max-width: 108px;
  }

  .idolbom-flow-arrow {
    font-size: 1.05rem;
    margin-top: -18px;
    scroll-snap-align: none;
  }

  .about-wrap,
  .board-grid,
  .award-grid,
  .visit-wrap,
  .page-main .visit-wrap,
  .steps {
    grid-template-columns: 1fr;
  }

  .org-chart {
    padding: 32px 12px 40px;
    align-items: stretch;
  }

  .org-chart>.org-vline,
  .org-vline--from-rail,
  .org-junction+.org-vline {
    display: none !important;
  }

  .org-tree {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .org-branches::before {
    display: none;
  }

  .org-junction {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .org-side {
    position: static;
    transform: none;
  }

  .org-side--left::after,
  .org-pair-gap {
    display: none;
  }

  .org-pair {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: auto;
  }

  .org-branches {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .org-branch {
    padding: 16px 12px;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
  }

  .org-split--4 {
    max-width: 100%;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --org-cols: 2;
    --org-g: 8px;
  }

  .org-subteams {
    width: 100%;
  }

  .org-split--4::before,
  .org-split--4::after {
    display: none;
  }

  .org-split--4 .org-node {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 8px 6px;
  }

  .overview-box {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .visit-map {
    min-height: 260px;
  }

  .visit-map .kakao-map {
    min-height: 220px;
  }

  .customer-center {
    height: auto;
    flex: none;
    padding: 22px 24px;
    gap: 16px;
  }

  .customer-center__row {
    gap: 18px;
  }

  .customer-center__footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
  }

  .customer-center__footer .customer-center__item+.customer-center__item {
    margin-top: 12px;
  }

  .customer-center__visual {
    display: none;
  }
}

@media (max-width: 560px) {

  .biz-grid,
  .goal-list,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .portal-grid,
  #sarang .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #sarang .biz-card {
    padding: 22px 14px;
  }

  #sarang .biz-card h3 {
    font-size: 0.95rem;
  }

  #sarang .biz-card>p {
    font-size: 0.78rem;
  }

  #senior .biz-card-visual {
    height: 180px;
  }

  .biz-carousel-track>.biz-card {
    flex-basis: 88%;
  }

  .idolbom-flow {
    padding: 20px 12px;
  }

  .idolbom-flow-step {
    flex-basis: 118px;
  }

  .idolbom-flow-visual {
    max-width: 96px;
  }

  .idolbom-flow-label {
    font-size: 0.78rem;
  }

  .idolbom-flow-arrow {
    font-size: 0.95rem;
    margin-top: -16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-controls {
    bottom: 58px;
    gap: 8px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-arrow svg {
    width: 16px;
    height: 16px;
  }

  .hero-dots {
    padding: 6px 10px;
    gap: 6px;
  }
}


/* ===== 서브페이지 (내부) ===== */
.page-banner {
  background:
    linear-gradient(95deg, rgba(6, 40, 70, 0.55) 0%, rgba(8, 54, 92, 0.35) 48%, rgba(10, 70, 118, 0.08) 100%),
    url("/images/sub01.jpg") center 62% / cover no-repeat;
  color: #fff;
  padding: 52px 0 48px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-shadow: 0 1px 10px rgba(0, 35, 60, 0.4);
}

/* 노인일자리·사랑드림 섹션 배너 이미지 */
body[data-nav="senior"] .page-banner,
body[data-nav="environment"] .page-banner,
body[data-nav="recruit"] .page-banner,
body[data-nav="sarang"] .page-banner,
body[data-nav="visit-care"] .page-banner,
body[data-nav="physical"] .page-banner,
body[data-nav="cognitive"] .page-banner,
body[data-nav="emotional"] .page-banner,
body[data-nav="housework"] .page-banner {
  background:
    linear-gradient(95deg, rgba(6, 40, 70, 0.55) 0%, rgba(8, 54, 92, 0.35) 48%, rgba(10, 70, 118, 0.08) 100%),
    url("/images/sub03.jpg") center 58% / cover no-repeat;
}

.page-banner h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  opacity: 0.92;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  opacity: 0.55;
}

.page-content {
  position: relative;
  z-index: 1;
  padding: 56px 0 72px;
  background: #fff;
}

.page-content .prose {
  max-width: 760px;
}

.page-content .prose p {
  color: var(--text-sub);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.page-content .prose p.lead-text {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
}

.page-cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-cta-center {
  justify-content: center;
  margin-top: 96px;
  margin-bottom: 98px;
}

.btn-idolbom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 25px 39px;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: 0.2s;
}

.btn-idolbom img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-idolbom-text {
  line-height: 1.3;
}

.btn-idolbom-go {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 3px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn-idolbom:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-idolbom:hover .btn-idolbom-go {
  background: var(--primary-dark);
}

.btn-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  font-weight: 700;
  transition: 0.2s;
  border: none;
}

.btn-page.primary {
  background: var(--primary);
  color: #fff;
}

.btn-page.primary:hover {
  background: var(--primary-dark);
}

.btn-page.ghost {
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
}

.btn-page.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* 활성 메뉴 */
.gnb>li.is-active>a,
.gnb>li.is-active>.gnb-item>a {
  background: var(--primary-light);
  color: var(--primary);
}

.snb a.is-active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

/* ===== 서브페이지 레이아웃 ===== */
.page-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.page-sidenav {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  box-shadow: 0 8px 24px rgba(0, 108, 183, 0.06);
}

.page-sidenav-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  padding: 4px 10px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-sidenav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: 0.15s;
}

.page-sidenav a:hover,
.page-sidenav a.is-active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

.page-main {
  min-width: 0;
}

.page-content-head {
  margin-bottom: 32px;
}

.page-content-head--childcare {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.page-content-head--childcare .page-content-title {
  flex: 0 1 auto;
  min-width: 0;
}

.page-content-head--childcare .page-content-head-actions {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  border-bottom: none;
}

.page-content-head--childcare .btn-idolbom {
  border: none;
  box-shadow: none;
  padding: 12px 20px;
  gap: 10px;
}

.page-content-head--childcare .btn-idolbom:hover {
  border: none;
  box-shadow: none;
}

.page-content-title {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  background: none;
}

.page-main .prose {
  max-width: none;
}

.greeting-page {
  max-width: 40em;
  margin: 0 auto;
}

.greeting-page .goals-vision {
  margin-top: 0;
  margin-bottom: 100px;
  padding-top: 32px;
  padding-bottom: 0;
}

.greeting-page .goals-vision p {
  white-space: normal;
}

.greeting-page .goals-vision::after {
  content: none;
}

.greeting-body {
  margin-bottom: 32px;
}

.greeting-sign {
  margin: 0;
  text-align: right;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

.greeting-sign strong {
  display: block;
  margin-top: 4px;
  font-size: 1.12rem;
  font-weight: 800;
}

.policy-doc h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.policy-doc ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1.1rem;
  color: var(--text-sub);
}

.policy-doc ul li {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

.policy-doc .overview-box {
  margin: 12px 0 1.1rem;
}

.page-h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 36px 0 16px;
  letter-spacing: -0.02em;
}

.page-goal-list {
  margin-top: 8px;
}

/* ===== 경영목표 허브–위성 레이아웃 (5개) ===== */
.goals-hub {
  --goals-teal: #3d8a8a;
  --goals-blue: #3d6fa0;
  --goals-slate: #5a738a;
  --goals-burgundy: #8a4a52;
  --goals-olive: #7a8c52;
  --goals-hub-bg: #eef2f5;
  --goals-orbit: #b8c4ce;
}

.goals-vision {
  margin: 80px auto 40px;
  padding: 0 8px 18px;
  max-width: 36em;
  width: fit-content;
  text-align: center;
  border: none;
  position: relative;
}

.goals-vision p {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.03em;
  color: var(--text);
  word-break: keep-all;
  overflow-wrap: normal;
}

/* 경영목표 슬로건만 한 줄 유지 */
body[data-nav="goals"] .goals-vision {
  max-width: 100%;
}

body[data-nav="goals"] .goals-vision p {
  white-space: nowrap;
}

.goals-vision p::before,
.goals-vision p::after {
  font-weight: 700;
  color: var(--primary);
  opacity: 0.55;
}

.goals-vision p::before {
  content: "“";
  margin-right: 0.12em;
}

.goals-vision p::after {
  content: "”";
  margin-left: 0.12em;
}

.goals-vision::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 94%;
  height: 5px;
  border-top: 2px solid var(--text);
  opacity: 0.55;
}

.goals-intro {
  margin: 0 auto 28px;
  max-width: 40em;
  text-align: center;
  color: var(--text-sub);
  font-size: 0.98rem;
  line-height: 1.75;
}

.policy-orbit {
  --orbit-r: 34%;
  position: relative;
  width: min(100%, 700px);
  aspect-ratio: 1;
  margin: 52px auto 64px;
  isolation: isolate;
}

.policy-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(0, 108, 183, 0.06), transparent 70%),
    radial-gradient(circle at 18% 30%, rgba(61, 138, 138, 0.05), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(122, 140, 82, 0.05), transparent 42%);
  pointer-events: none;
}

.policy-orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--orbit-r) * 2);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px dotted var(--goals-orbit);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.policy-orbit__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(168px, 28%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 38% 32%, #fff 0%, var(--goals-hub-bg) 58%, #dfe6ec 100%);
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 8px rgba(0, 108, 183, 0.12),
    0 10px 28px rgba(34, 54, 72, 0.08);
}

.policy-orbit__hub span {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text);
}

.policy-sat {
  --sat-size: clamp(104px, 15vw, 128px);
  position: absolute;
  z-index: 2;
  width: var(--sat-size);
  height: var(--sat-size);
  text-align: center;
  transform: translate(-50%, -50%);
}

/* 오각형 궤도: 12시부터 시계방향 */
.policy-sat--1 {
  left: calc(50% + cos(-90deg) * var(--orbit-r));
  top: calc(50% + sin(-90deg) * var(--orbit-r));
}

.policy-sat--2 {
  left: calc(50% + cos(-18deg) * var(--orbit-r));
  top: calc(50% + sin(-18deg) * var(--orbit-r));
}

.policy-sat--3 {
  left: calc(50% + cos(54deg) * var(--orbit-r));
  top: calc(50% + sin(54deg) * var(--orbit-r));
}

.policy-sat--4 {
  left: calc(50% + cos(126deg) * var(--orbit-r));
  top: calc(50% + sin(126deg) * var(--orbit-r));
}

.policy-sat--5 {
  left: calc(50% + cos(198deg) * var(--orbit-r));
  top: calc(50% + sin(198deg) * var(--orbit-r));
}

.policy-sat__circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--sat-color, var(--primary));
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.28),
    0 0 0 3px color-mix(in srgb, var(--sat-color, var(--primary)) 72%, #1a2a3a),
    0 8px 20px rgba(34, 54, 72, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.policy-sat__circle strong {
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.policy-sat:hover .policy-sat__circle {
  transform: scale(1.04);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.32),
    0 0 0 3px color-mix(in srgb, var(--sat-color, var(--primary)) 72%, #1a2a3a),
    0 14px 28px rgba(34, 54, 72, 0.16);
}

.policy-sat__caption {
  position: absolute;
  left: 50%;
  width: 172px;
  margin: 0;
  transform: translateX(-50%);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-sub);
  font-weight: 500;
}

.policy-sat--cap-above .policy-sat__caption {
  bottom: calc(100% + 10px);
}

.policy-sat--cap-below .policy-sat__caption {
  top: calc(100% + 10px);
}

.policy-sat--cap-above .policy-sat__circle::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 7px solid var(--sat-color, var(--primary));
}

.policy-sat--cap-below .policy-sat__circle::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--sat-color, var(--primary));
}

.policy-sat--teal {
  --sat-color: var(--goals-teal);
}

.policy-sat--blue {
  --sat-color: var(--goals-blue);
}

.policy-sat--slate {
  --sat-color: var(--goals-slate);
}

.policy-sat--burgundy {
  --sat-color: var(--goals-burgundy);
}

.policy-sat--olive {
  --sat-color: var(--goals-olive);
}

@media (max-width: 860px) {
  .policy-orbit {
    --orbit-r: 37%;
    width: min(100%, 560px);
  }

  .policy-sat__caption {
    width: 148px;
    font-size: 0.88rem;
  }
}

@media (max-width: 720px) {
  .policy-orbit {
    --orbit-r: unset;
    aspect-ratio: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 14px;
    padding: 4px 0 8px;
  }

  .policy-orbit::before,
  .policy-orbit__ring {
    display: none;
  }

  .policy-orbit__hub {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-column: 1 / -1;
    justify-self: center;
    width: min(148px, 44vw);
    margin-bottom: 4px;
  }

  .policy-sat {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .policy-sat__circle {
    width: clamp(104px, 28vw, 120px);
    height: auto;
    aspect-ratio: 1;
  }

  .policy-sat__circle::after {
    display: none;
  }

  .policy-sat__caption {
    position: static;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: auto;
    max-width: 14em;
    font-size: 0.82rem;
  }

  .policy-sat--5 {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .goals-vision {
    margin-bottom: 20px;
    padding-bottom: 14px;
  }

  body[data-nav="goals"] .goals-vision p {
    white-space: normal;
  }

  .goals-intro {
    margin-bottom: 24px;
    text-align: left;
  }

  .policy-orbit {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .policy-sat,
  .policy-sat--5 {
    flex-direction: row;
    text-align: left;
    gap: 14px;
    align-items: center;
    max-width: none;
    justify-self: stretch;
  }

  .policy-sat__circle {
    flex: 0 0 auto;
    width: 92px;
  }

  .policy-sat__circle strong {
    font-size: 0.8rem;
  }

  .policy-sat__caption {
    max-width: none;
    flex: 1;
  }
}

.page-note {
  margin-top: 20px;
  color: var(--text-sub);
  font-size: 0.92rem;
}

/* 센터 활동 사진 2열 갤러리 */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.photo-grid.ratio-4x3 img {
  aspect-ratio: 4 / 3;
}

.inline-icon {
  margin-right: 6px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.info-cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.info-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.info-cards h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
}

.info-cards p {
  color: var(--text-sub);
  font-size: 0.95rem;
}

/* ===== 연혁 세로 타임라인 ===== */
.history-list {
  --tl-year-w: 92px;
  --tl-marker-w: 46px;
  --tl-line-x: calc(var(--tl-year-w) + var(--tl-marker-w) / 2);
  --tl-text-size: 1.08rem;
  --tl-text-lh: 1.4;
  --tl-year-size: 1.35rem;
  --tl-node-size: 16px;
  --tl-node-border: 5px;
  --tl-text-line-h: calc(var(--tl-text-size) * var(--tl-text-lh));
  --tl-row1-h: max(var(--tl-year-size), var(--tl-text-line-h), var(--tl-node-size));
  list-style: none;
  position: relative;
  margin: 24px 0 8px;
  padding: 4px 0 44px;
}

.history-list>li {
  position: relative;
  display: grid;
  grid-template-columns: var(--tl-year-w) var(--tl-marker-w) 1fr;
  align-items: center;
  padding-bottom: 40px;
}

.history-list>li:last-child {
  padding-bottom: 0;
}

/* 노드 사이 세로선 */
.history-list>li::after {
  content: "";
  position: absolute;
  left: calc(var(--tl-line-x) - 1.5px);
  top: calc((var(--tl-row1-h) + var(--tl-node-size)) / 2);
  bottom: -4px;
  width: 3px;
  border-radius: 2px;
  background: var(--primary);
  z-index: 0;
}

/* 맨 위(최신) 항목은 골드로 크게 강조 */
.history-list>li:first-child {
  --tl-year-size: 1.7rem;
  --tl-node-size: 20px;
  --tl-row1-h: max(var(--tl-year-size), var(--tl-text-line-h), var(--tl-node-size));
}

.history-list>li:first-child::after {
  background: linear-gradient(180deg, var(--accent), var(--primary) 80%);
}

.history-list>li:first-child time {
  color: var(--accent-dark);
}

.history-list>li:first-child .history-marker {
  border-color: var(--accent);
}

/* 맨 아래(창립) 항목은 회색 시작점으로 */
.history-list>li:last-child time {
  color: #7d8894;
}

.history-list>li:last-child .history-marker {
  border-color: #9aa4ae;
}

/* 창립 항목 아래 회색 꼬리 + 물방울 마무리 */
.history-list>li:last-child::after {
  bottom: -36px;
  background: linear-gradient(180deg, var(--primary), #9aa4ae);
}

.history-list::after {
  content: "";
  position: absolute;
  left: calc(var(--tl-line-x) - 8px);
  bottom: -4px;
  width: 16px;
  height: 16px;
  background: #9aa4ae;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.history-list time {
  grid-column: 1;
  grid-row: 1;
  font-weight: 900;
  color: var(--primary);
  font-size: var(--tl-year-size);
  line-height: 1;
  text-align: right;
  letter-spacing: -0.5px;
  justify-self: end;
  align-self: center;
}

.history-marker {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: var(--tl-node-size);
  height: var(--tl-node-size);
  border-radius: 50%;
  background: #fff;
  border: var(--tl-node-border) solid var(--primary);
  box-shadow: 0 0 0 4px #fff;
  z-index: 1;
}

.history-list h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.history-list p {
  color: var(--text-sub);
  font-size: 0.95rem;
  max-width: 62ch;
}

.history-details {
  display: contents;
}

.history-details>li {
  grid-column: 3;
  color: var(--text-sub);
  font-size: var(--tl-text-size);
  line-height: var(--tl-text-lh);
  margin-bottom: 6px;
  max-width: 62ch;
  align-self: center;
}

.history-details>li:first-child {
  grid-row: 1;
  font-weight: 800;
  color: var(--text);
}

.history-list > .history-msg {
  display: block;
  padding: 28px 8px;
  text-align: center;
  color: var(--text-sub);
  list-style: none;
}

.history-list > .history-msg::after {
  content: none;
  display: none;
}

.history-list:has(> .history-msg:only-child) {
  padding-bottom: 8px;
}

.history-list:has(> .history-msg:only-child)::after {
  content: none;
  display: none;
}

.history-list > .history-msg.is-error {
  color: #c0392b;
}

.history-details>li:last-child {
  margin-bottom: 0;
}

.page-board {
  margin-top: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.board-search {
  display: flex;
  gap: 10px;
  margin: 8px 0 16px;
}

.board-search input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
}

.board-search .btn-page {
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px;
}

.board-list .board-msg {
  display: block;
  padding: 28px 8px;
  text-align: center;
  color: var(--text-sub);
  border-bottom: none;
}

.board-list .board-msg.is-error,
.board-msg.is-error {
  color: #c0392b;
}

.board-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 8px;
}

.board-page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text-sub);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.board-page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.board-page-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.board-page-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.board-view-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.board-view-title {
  margin: 12px 0 16px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
}

.board-view-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--text-sub);
  font-size: 0.88rem;
}

.board-view-meta>div {
  display: flex;
  gap: 6px;
}

.board-view-meta dt {
  font-weight: 700;
  color: var(--primary);
}

.board-view-meta dt::after {
  content: ":";
}

.board-view-body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
  word-break: break-word;
  min-height: 120px;
}

.board-view-body img {
  max-width: 100%;
  height: auto;
}

.board-images {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.board-files {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.board-files h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.board-files ul {
  display: grid;
  gap: 8px;
}

.board-files li {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 0.9rem;
}

.board-files a {
  color: var(--primary);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-files a:hover {
  text-decoration: underline;
}

.board-files span {
  flex-shrink: 0;
  color: #999;
  font-size: 0.8rem;
}

.board-view-actions {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 20px;
}

.gallery-grid:has(.board-msg) {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
}

.gallery-grid .board-msg {
  margin: 0;
  text-align: center;
  color: var(--text-sub);
}

.gallery-grid .board-msg.is-error {
  color: #c0392b;
}

.gallery-card {
  display: block;
  color: inherit;
  height: 100%;
}

.gallery-card:hover figcaption strong {
  color: var(--primary);
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 42, 78, 0.72);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.gallery-grid figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.gallery-card:hover figure {
  border-color: #c5dde9;
  box-shadow: 0 10px 24px rgba(0, 108, 183, 0.12);
}

.gallery-ph {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  background: linear-gradient(160deg, var(--primary-light), #fff);
}

.gallery-grid figcaption {
  padding: 12px 14px 14px;
  display: grid;
  gap: 4px;
}

.gallery-grid figcaption strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gallery-grid figcaption time {
  font-size: 0.8rem;
  color: #999;
}

.board-photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.board-photo {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: left;
}

.board-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  pointer-events: none;
}

.board-photo:hover {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

.board-photo:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

body.lightbox-open {
  overflow: hidden;
}

.board-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.board-lightbox[hidden] {
  display: none !important;
}

.board-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 32, 0.82);
  cursor: pointer;
}

.board-lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.board-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: #111;
}

.board-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.board-lightbox-close:hover {
  background: var(--primary);
  color: #fff;
}

.board-lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .board-lightbox {
    padding: 16px;
  }

  .board-lightbox-close {
    position: fixed;
    top: 12px;
    right: 12px;
  }
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.home-gallery-grid .gallery-card,
.home-gallery-grid .gallery-card figure,
.home-gallery-grid .gallery-thumb {
  min-width: 0;
  max-width: 100%;
}

.home-gallery-grid .gallery-card img {
  width: 100%;
  max-width: 100%;
}

.home-gallery-grid .gallery-card figure {
  border-radius: 12px;
}

.home-gallery-grid .gallery-grid figcaption,
.home-gallery-grid figcaption {
  padding: 10px 12px 12px;
}

.home-gallery-grid figcaption strong {
  font-size: 0.85rem;
  -webkit-line-clamp: 1;
}

.home-gallery-grid .gallery-thumb,
.home-gallery-grid .gallery-ph {
  aspect-ratio: 16 / 10;
}

.header-actions .btn-portal {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .header-actions .btn-portal {
    display: none;
  }
}

@media (max-width: 960px) {
  .page-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-sidenav {
    display: none;
  }

  .page-content-head {
    display: none;
  }

  .page-content-head--childcare {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
  }

  .page-content-head--childcare .page-content-title {
    display: none;
  }

  .page-content-head--childcare .page-content-head-actions {
    display: flex;
    justify-content: flex-end;
  }

  .greeting-page {
    max-width: none;
  }

  .greeting-page .goals-vision {
    margin-top: 0;
    margin-bottom: 36px;
    padding-bottom: 0;
  }

  .greeting-sign {
    text-align: center;
  }

  .info-cards,
  .info-cards.two,
  .gallery-grid,
  .board-photo-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .info-cards,
  .info-cards.two,
  .gallery-grid,
  .home-gallery-grid {
    grid-template-columns: 1fr;
  }

  .board-photo-gallery {
    grid-template-columns: 1fr;
  }

  /* 연혁 타임라인: 선을 왼쪽에 붙이고 연도를 본문 위로 */
  .history-list {
    --tl-line-x: 8px;
    --tl-year-w: 0;
    --tl-marker-w: 0;
    --tl-year-size: 1.2rem;
    --tl-row1-h: max(var(--tl-year-size), var(--tl-text-line-h), var(--tl-node-size));
    padding-bottom: 40px;
  }

  .history-list>li {
    grid-template-columns: 1fr;
    padding-left: 34px;
    padding-bottom: 32px;
  }

  .history-list>li:first-child {
    --tl-year-size: 1.45rem;
    --tl-row1-h: max(var(--tl-year-size), var(--tl-text-line-h), var(--tl-node-size));
  }

  .history-list time {
    grid-column: 1;
    text-align: left;
    justify-self: start;
    margin-bottom: 4px;
  }

  .history-marker {
    position: absolute;
    left: calc(var(--tl-line-x) - var(--tl-node-size) / 2);
    top: calc(var(--tl-year-size) + 10px + (var(--tl-text-line-h) - var(--tl-node-size)) / 2);
    grid-column: auto;
    grid-row: auto;
  }

  .history-details>li {
    grid-column: 1;
  }

  .history-details>li:first-child {
    grid-row: auto;
    padding-top: 2px;
  }

  .history-list>li::after {
    top: calc(var(--tl-year-size) + 10px + (var(--tl-row1-h) + var(--tl-node-size)) / 2);
  }
}

/* ===== 아이돌봄 안내 콘텐츠 ===== */
.idolbom-intro {
  text-align: center;
  margin-bottom: 36px;
  padding: 8px 0 8px;
}

.idolbom-intro-title {
  margin-top: 0;
}

.idolbom-intro .lead-text {
  max-width: 42rem;
  margin: 0 auto 24px;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.75;
}

.idolbom-intro .lead-text em {
  color: var(--primary);
  font-style: normal;
  font-weight: 800;
}

.idolbom-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
}

.idolbom-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #1a8ad4 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  display: grid;
  place-items: center;
  min-height: 100px;
}

.idolbom-highlight strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.95rem;
}

.data-table thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  text-align: center;
}

.data-table tbody th {
  width: 18%;
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 700;
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  line-height: 1.45;
}

.data-table tbody td {
  padding: 16px 18px;
  color: var(--text-sub);
  vertical-align: top;
  border-top: 1px solid var(--line);
  line-height: 1.65;
}

.data-table tbody ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.data-table tbody ul>li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.55rem;
}

.data-table tbody ul>li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.data-table .note {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: #888;
}

.data-table .nested-ol {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  counter-reset: nest;
}

.data-table .nested-ol>li {
  counter-increment: nest;
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.data-table .nested-ol>li::before {
  content: counter(nest) ".";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}

.special-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.special-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.special-card p {
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.65;
}

.page-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 서비스 상세: 소개 헤더 */
.svc-hero {
  display: flex;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin-bottom: 32px;
}

.svc-hero .svc-icon {
  font-size: 3rem;
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.svc-hero h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.svc-hero h2 em {
  color: var(--primary);
  font-style: normal;
}

.svc-hero p {
  color: var(--text-sub);
  line-height: 1.7;
}

/* 요금표 (숫자 중앙정렬) */
.data-table.center thead th {
  padding: 10px 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.88rem;
}

.data-table.center tbody th,
.data-table.center tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 12px 8px;
  font-size: 0.9rem;
  border-left: 1px solid var(--line);
}

.data-table.center tbody th:first-child,
.data-table.center tbody td:first-child,
.data-table.center thead th:first-child {
  border-left: 0;
}

.data-table.center .pct {
  display: block;
  font-size: 0.8rem;
  color: #999;
}

.data-table.center .subhead td {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

.table-caption {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 26px 0 10px;
  color: var(--text);
}

.table-caption::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: 2px;
}

/* 취소수수료 면제 등 번호 리스트 */
.num-cards {
  display: grid;
  gap: 10px;
  counter-reset: numcard;
  margin: 8px 0;
}

.num-cards>li {
  counter-increment: numcard;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px 16px 56px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

.num-cards>li::before {
  content: counter(numcard);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.num-cards .sub {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-sub);
}

@media (max-width: 640px) {
  .svc-hero {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .idolbom-highlights,
  .special-grid {
    grid-template-columns: 1fr;
  }

  .data-table tbody th {
    width: 28%;
  }
}

/* ===== 전화 문의 안내 (PC 팝업) ===== */
.phone-inquiry-dialog {
  border: none;
  padding: 0;
  margin: 0;
  width: min(420px, calc(100vw - 32px));
  max-width: none;
  background: transparent;
  color: var(--text);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
}

.phone-inquiry-dialog::backdrop {
  background: rgba(15, 23, 42, 0.45);
}

.phone-inquiry-dialog__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 50px rgba(0, 108, 183, 0.14);
  text-align: center;
}

.phone-inquiry-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-sub);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.phone-inquiry-dialog__eyebrow {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.phone-inquiry-dialog__title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.phone-inquiry-dialog__number {
  margin: 0 0 20px;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.phone-inquiry-dialog__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-inquiry-dialog__actions .btn-page {
  flex: 1 1 120px;
}

/* ===== 메인페이지 좌측 섹션 네비 ===== */
.section-side-nav {
  position: fixed;
  left: max(20px, calc(50% - 720px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  pointer-events: none;
}

.section-side-nav__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.section-side-nav__list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #d5d5d5;
}

.section-side-nav__link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #b0b0b0;
  white-space: nowrap;
  pointer-events: auto;
  transition: color 0.2s ease;
}

.section-side-nav__link:hover {
  color: var(--accent-dark);
}

.section-side-nav__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #c8c8c8;
  background: #fff;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s ease, border-width 0.2s ease;
}

.section-side-nav__link.is-active {
  color: var(--accent);
  font-weight: 600;
}

.section-side-nav__link.is-active .section-side-nav__dot {
  border-width: 2.5px;
  border-color: var(--accent);
}

@media (max-width: 1320px) {
  .section-side-nav {
    display: none;
  }
}

.home #main,
.home #about,
.home #childcare,
.home #senior,
.home #sarang,
.home #awards,
.home #board,
.home #visit {
  scroll-margin-top: 88px;
}