/* ==========================================================
   _add_about.css
   about/ 디렉터리 전용 추가 스타일
   인라인 style="" / onmouseover·onmouseout 대체 CSS
   ========================================================== */


/* ----------------------------------------------------------
   공통 — about 섹션 배경
   ---------------------------------------------------------- */
.about-section {
  background-color: #fff;
}


/* ----------------------------------------------------------
   공통 — 중앙 정렬 flex 래퍼 (관장/부장 노드 등)
   ---------------------------------------------------------- */
.org-node-center {
  display: flex;
  justify-content: center;
}

/* 조직도 차트 블록 하단 여백 */
.org-chart-block {
  margin-bottom: 1rem;
}

/* org 팀 하위 가로 바 — full width */
.org-hbar-wrap--full {
  width: 100%;
}


/* ----------------------------------------------------------
   공통 — td 열 너비 클래스
   ---------------------------------------------------------- */
.td-w-15 { width: 15%; }
.td-w-20 { width: 20%; }
.td-w-25 { width: 25%; }
.td-w-50 { width: 50%; }
.td-w-55 { width: 55%; }


/* ----------------------------------------------------------
   facility.php — 층 카드 오른쪽 정렬 변형
   ---------------------------------------------------------- */
.facility-floor-card--right {
  text-align: right;
}

.facility-floor-card--right .facility-floor-name {
  justify-content: flex-end;
}


/* ----------------------------------------------------------
   공통 — about 서브페이지 h2 (페이지 제목)
   ---------------------------------------------------------- */
.about-page-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 2rem;
}

.about-section-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 1.25rem;
}


/* ----------------------------------------------------------
   공통 — 정보 테이블 카드 (border + shadow 래퍼)
   ---------------------------------------------------------- */
.about-info-card {
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* 정보 테이블 행 그리드 (120px 라벨 + 1fr 값) */
.about-info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  background: #fff;
}
.about-info-row + .about-info-row {
  border-top: 1px solid var(--color-border);
}

/* 라벨 셀 */
.about-info-label {
  padding: 0.875rem 1.25rem;
  background-color: var(--color-light-50);
  font-weight: 600;
  font-size: var(--font-size-body);
  color: var(--color-light-700);
}

/* 값 셀 */
.about-info-value {
  padding: 0.875rem 1.25rem;
  font-size: var(--font-size-body);
  color: var(--color-light-800);
}


/* ----------------------------------------------------------
   공통 — 카드 상단 컬러 바 헤더 (연락처 패널 등)
   ---------------------------------------------------------- */
.panel-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  background-color: var(--color-primary-800);
  border-bottom: 1px solid var(--color-primary-700);
}

.panel-header-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary-300);
  flex-shrink: 0;
}

.panel-header-title {
  font-size: var(--font-size-body);
  font-weight: 700;
  color: #fff;
  margin: 0;
}


/* ----------------------------------------------------------
   공통 — td 변형 클래스
   ---------------------------------------------------------- */
/* 직책 셀 (강조 배경) */
.td-position {
  font-weight: 600;
  color: var(--color-light-800);
  background-color: var(--color-light-50);
  width: 20%;
}

/* 업무 셀 (좌측 정렬) */
.td-task {
  text-align: left;
}

/* 연락처 셀 (tabular-nums, 우측 border 없음) */
.td-phone {
  font-variant-numeric: tabular-nums;
  border-right: none;
}

/* 팀명 셀 (사회복지과) */
.td-team {
  font-weight: 700;
  color: var(--color-primary-700);
  background-color: var(--color-primary-50);
  width: 15%;
}

/* 사회복지과 조직표: 팀 그룹이 바뀌는 경계선 강조 (수영교실 표 구분선 참고) */
.about-table-inner tbody tr:has(> td.td-team):not(:first-child) > td {
  border-top: 2px solid var(--color-light-400);
}

/* 빈 팀명 셀 */
.td-team-empty {
  background-color: var(--color-light-50);
  width: 15%;
}

/* 인원 라벨 셀 */
.td-label-strong {
  font-weight: 700;
  color: var(--color-light-800);
  background-color: var(--color-light-50);
}

/* 숫자 셀 (tabular-nums) */
.td-num {
  font-variant-numeric: tabular-nums;
}

/* 숫자 셀 — 굵게 */
.td-num--bold {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

/* 숫자 셀 — 보통 */
.td-num--normal {
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}


/* ----------------------------------------------------------
   공통 — 테이블 래퍼
   ---------------------------------------------------------- */
.about-table-wrap {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.about-table-wrap--scroll {
  overflow-x: auto;
}

.about-table-inner {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 35rem;
}

.about-table-inner--wide {
  min-width: 43.75rem;
}


/* ----------------------------------------------------------
   foundation.php — 법인소개
   ---------------------------------------------------------- */

/* 섹션 A 중앙 텍스트 블록 */
.foundation-intro {
  text-align: center;
  margin-bottom: 4rem;
}

/* 로고 래퍼 */
.foundation-logo-wrap {
  margin-bottom: 1.5rem;
}

/* 로고 내부 flex */
.foundation-logo-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* 로고 이미지 */
.foundation-logo-img {
  width: 240px;
  height: auto;
}

/* 미션 텍스트 블록 */
.foundation-mission-text {
  max-width: 45rem;
  margin: 0 auto 2rem;
}

/* 미션 단락 */
.foundation-mission-para {
  font-size: var(--font-size-body);
  line-height: 1.85;
  color: var(--color-light-700);
}

/* 미션 강조 */
.foundation-mission-strong {
  color: var(--color-primary-600);
}

/* 기본현황 테이블 래퍼 */
.foundation-table-wrap {
  max-width: 45rem;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* 섹션 B 주요사업 */
.foundation-biz-section {
  margin-bottom: 4rem;
}

/* 섹션 B/C h2 */
.foundation-section-h2 {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 1.25rem;
}

/* 주요사업 카드 래퍼 */
.foundation-biz-card {
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}

/* 주요사업 2열 그리드 */
.foundation-biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* 주요사업 개별 행 */
.foundation-biz-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
}

.foundation-biz-item--border-bottom {
  border-bottom: 1px solid var(--color-border);
}

.foundation-biz-item--border-right {
  border-right: 1px solid var(--color-border);
}

/* 번호 뱃지 */
.foundation-biz-num {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--color-primary-50);
  color: var(--color-primary-600);
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 사업 텍스트 */
.foundation-biz-text {
  font-size: var(--font-size-body);
  color: var(--color-light-700);
  line-height: 1.6;
  margin: 0;
}

/* 섹션 C 조직현황 */
.foundation-org-section {
  /* margin none — last child */
}

/* 조직현황 카드 */
.foundation-org-card {
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background-color: var(--color-light-50);
  box-shadow: var(--shadow-card);
  padding: 2.5rem 1rem 2rem;
}

/* 법인 대표 원형 노드 */
.foundation-circle-node {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-primary-400), var(--color-primary-700));
  box-shadow: 0 8px 24px rgba(24, 91, 218, 0.28);
}

/* 법인 SVG 마진 */
.foundation-circle-svg {
  margin-bottom: 3px;
  opacity: 0.9;
}

/* 법인 가로 바 래퍼 */
.foundation-hbar-inner {
  height: 1px;
  background: var(--color-light-300);
  width: 65%;
  margin: 0 auto;
}

/* 법인 분사무소 pill */
.foundation-sub-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

/* 분사무소 하위 텍스트 */
.foundation-sub-note {
  color: var(--color-light-500);
  font-size: var(--font-size-body);
  font-weight: 400;
  margin-top: 2px;
}

/* 산하 운영시설 pill */
.foundation-facility-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: var(--font-size-body);
  font-weight: 700;
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-300), var(--color-primary-600));
  box-shadow: 0 8px 24px rgba(24, 91, 218, 0.28);
}

/* 산하 운영시설 하위 텍스트 */
.foundation-facility-note {
  color: var(--color-light-500);
  font-size: var(--font-size-body);
  margin-top: 0.375rem;
  line-height: normal;
  text-align: center;
}

/* 조직도 공통 */
.org-wrap { text-align: center; padding-bottom: 0.5rem; }

.org-circle-node {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--font-size-body);
  font-weight: 700;
  flex-shrink: 0;
  margin: 0 auto;
}

.org-vline { width: 1px; height: 24px; background: var(--color-light-300); margin: 0 auto; }

.org-row { display: flex; flex-direction: row; justify-content: center; align-items: flex-start; }
.org-col-item { flex: 1; display: flex; flex-direction: column; align-items: center; }

.org-pill-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-light-700);
  background: var(--color-light-100);
  padding: 0.5rem 1.375rem;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
}

.org-pill-accent {
  font-weight: 700;
  color: var(--color-primary-700);
  background: #fff;
  border-color: var(--color-primary-300);
  box-shadow: 0 2px 8px rgba(24, 91, 218, 0.12);
}

.org-hbar-wrap { /* 가로 바 컨테이너 */ }

/* 법인사무국 기준 좌우 브랜치 행 — grid로 중앙 고정 */
.org-hrow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.org-hrow-side { display: flex; align-items: center; }
.org-hrow > .org-hrow-side:first-child { justify-self: end; }
.org-hrow > .org-hrow-side:last-child  { justify-self: start; }
.org-hconn { width: 48px; height: 1px; background: var(--color-light-300); flex-shrink: 0; }

@media (max-width: 640px) {
  .foundation-biz-grid { grid-template-columns: 1fr !important; }
  .foundation-biz-item--border-right { border-right: none !important; }
  .org-hbar-wrap { display: none; }
  .org-dept-drop { display: none; }
  .org-hconn { width: 10px; }
  .org-dept-group {
    border: 1.5px solid var(--color-primary-200);
    border-radius: 12px;
    background: #fff;
    padding: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }
  .org-dept-group > .org-row { flex-direction: column; align-items: stretch; }
  .org-dept-group > .org-row > .org-col-item {
    flex: none;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
  }
  .org-dept-group > .org-row > .org-col-item:last-child { border-bottom: none; }
}


/* ----------------------------------------------------------
   org.php — 조직도 (직원현황 포함)
   ---------------------------------------------------------- */

/* 조직도 카드 */
.org-card {
  background-color: var(--color-light-50);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1rem 2rem;
}

/* 안내 텍스트 */
.org-hint-text {
  font-size: var(--font-size-body);
  color: var(--color-light-400);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* 조직도 트리 z-index */
.org-wrap--relative {
  position: relative;
  z-index: 1;
}

/* 관장 원형 (80px) */
.org-circle {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--font-size-body);
  font-weight: 700;
  flex-shrink: 0;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(24, 91, 218, 0.28);
}

/* 관장 (80px) */
.org-circle--lg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary-400), var(--color-primary-700));
}

/* SVG margin */
.org-circle-svg {
  margin-bottom: 4px;
  opacity: 0.9;
}

/* 부장 (64px) */
.org-circle--md {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary-300), var(--color-primary-600));
}

/* 가로 바 내부 선 */
.org-hbar-inner {
  height: 1px;
  background: var(--color-light-300);
  width: 78%;
  margin: 0 auto;
}

/* 팀 행 */
.org-team-row { gap: 1.5rem; }

/* 팀 하위 가로 바 */
.org-hbar-inner--team {
  height: 1px;
  background: var(--color-light-300);
  width: 85%;
  margin: 0 auto;
}

/* 팀명 pill */
.org-team-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-light-700);
  background: var(--color-light-100);
  border: 1px solid var(--color-border);
  white-space: nowrap;
}

/* 부서 pill — 기본 */
.org-dept-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.375rem;
  border-radius: 999px;
  font-size: var(--font-size-body);
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 150ms ease;
  user-select: none;
  gap: 0.25rem;
  border: 1.5px solid var(--color-primary-300);
  background: #fff;
  color: var(--color-primary-700);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* 부서 pill — 활성 */
.org-dept-pill--active {
  border: 2px solid var(--color-primary-500);
  background-color: var(--color-primary-500);
  color: #fff;
  box-shadow: 0 4px 12px rgba(24, 91, 218, 0.25);
}

/* pill 내부 화살표 span */
.org-pill-arrow {
  font-size: 9px;
  opacity: 0.7;
  margin-left: 2px;
}

/* 조직도 카드 직원현황 섹션 */
.org-staff-section {
  margin-top: 3rem;
}

/* 직원현황 h2 */
.org-staff-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 1.25rem;
}

/* 직원현황 카드 scroll */
.org-staff-card {
  overflow-x: auto;
}

@media (max-width: 640px) {
  .org-hbar-wrap { display: none; }
  .org-dept-drop { display: none; }
  .org-team-drop { display: none; }
  .org-dept-group {
    border: 1.5px solid var(--color-primary-200);
    border-radius: 12px;
    background: #fff;
    padding: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }
  .org-dept-group > .org-row { flex-direction: column; align-items: stretch; gap: 0; }
  .org-dept-group > .org-row > .org-col-item {
    flex: none;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
  }
  .org-dept-group > .org-row > .org-col-item:last-child { border-bottom: none; }
  .org-team-row { flex-direction: row !important; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .org-team-row > .org-col-item { flex: none; }
}


/* ----------------------------------------------------------
   mission.php — 미션/비전
   ---------------------------------------------------------- */

/* 미션/비전 h2 */
.mission-page-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 2rem;
}

/* 미션/비전 카드 그리드 섹션 */
.mission-cards-section {
  margin-bottom: 4rem;
}

/* 미션/비전 카드 그리드 */
.mission-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* 미션 카드 */
.mission-card {
  border-left: 5px solid var(--color-primary-500);
  background-color: var(--color-primary-50);
  border-radius: 0 0.75rem 0.75rem 0;
  box-shadow: var(--shadow-card);
  padding: 2rem;
}

/* 비전 카드 */
.vision-card {
  border-left: 5px solid var(--color-secondary-600);
  background-color: var(--color-secondary-50);
  border-radius: 0 0.75rem 0.75rem 0;
  box-shadow: var(--shadow-card);
  padding: 2rem;
}

/* MISSION / VISION 레이블 */
.mission-label {
  font-size: var(--font-size-caption);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary-500);
}

.vision-label {
  font-size: var(--font-size-caption);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-secondary-600);
}

/* 카드 제목 */
.mission-card-title {
  font-size: var(--font-size-heading-2);
  font-weight: 800;
  color: var(--color-light-900);
  margin: 0.5rem 0 1rem;
}

/* 카드 본문 */
.mission-card-body {
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-light-700);
  line-height: 1.75;
  margin: 0;
}

/* 핵심가치 섹션 */
.mission-values-section {
  margin-bottom: 4rem;
}

/* 핵심가치 h2 */
.mission-values-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 1.5rem;
}

/* 핵심가치 그리드 */
.mission-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* 핵심가치 개별 카드 */
.mission-value-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  cursor: default;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.mission-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* 핵심가치 이미지 래퍼 */
.mission-value-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

/* 핵심가치 이미지 */
.mission-value-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 이미지 내부 테두리 오버레이 */
.mission-value-img-border {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* 이미지 그라디언트 오버레이 */
.mission-value-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}

/* 핵심가치 텍스트 영역 */
.mission-value-body {
  padding: 1.25rem 1.5rem;
}

/* 카드 제목 행 (컬러 바 + 텍스트) */
.mission-value-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

/* 컬러 바 (dynamic color는 PHP inline style로 유지) */
.mission-value-bar {
  flex-shrink: 0;
  border-radius: 2px;
  width: 4px;
  height: 18px;
  /* background-color: set via --mv-color custom property */
  background-color: var(--mv-color);
}

/* 핵심가치 카드 제목 */
.mission-value-title {
  font-size: var(--font-size-heading-3);
  font-weight: 700;
  color: var(--color-light-900);
  margin: 0;
}

/* 핵심가치 카드 설명 */
.mission-value-desc {
  font-size: var(--font-size-body-lg);
  color: var(--color-light-600);
  line-height: 1.7;
  margin: 0;
  word-break: keep-all;
}

/* CI 소개 섹션 */
.ci-section {
  margin-bottom: 4rem;
}

/* CI h2 */
.ci-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 1.5rem;
}

/* CI 카드 */
.ci-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* CI 상단 레이아웃 */
.ci-top-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* CI 이미지 박스 */
.ci-logo-box {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 1.5rem;
  align-self: flex-start;
  aspect-ratio: 16 / 9;
  max-width: 32rem;
}

/* CI 로고 이미지 */
.ci-logo-img {
  max-width: 100%;
  max-height: 100%;
}

/* CI 텍스트 열 */
.ci-text-col {
  flex: 1;
  padding: 1.5rem;
}

/* CI 본문 리드 */
.ci-lead {
  font-size: var(--font-size-heading-2);
  color: var(--color-light-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  word-break: keep-all;
}

/* CI 리드 강조 */
.ci-lead-strong {
  color: var(--color-light-900);
}

/* CI 항목 제목 행 */
.ci-item-title-row {
  font-size: var(--font-size-body);
  font-weight: 700;
  color: var(--color-light-800);
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* CI 항목 본문 */
.ci-item-body {
  font-size: var(--font-size-body);
  color: var(--color-light-700);
  line-height: 1.8;
  margin: 0;
  word-break: keep-all;
}

/* CI 하단 */
.ci-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem;
}

/* CI 항목 목록 */
.ci-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* CI 전체 형태 설명 */
.ci-form-section { /* wraps p + p */ }

/* CI 전체 형태 서브 제목 */
.ci-form-subtitle {
  font-size: var(--font-size-body);
  font-weight: 700;
  color: var(--color-light-800);
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* 따뜻한 공동체 강조 */
.ci-warm-accent {
  color: #e05a2b;
}

@media (min-width: 768px) {
  .mission-cards-grid  { grid-template-columns: 1fr 1fr; }
  .mission-values-grid { grid-template-columns: repeat(3, 1fr); }
  .ci-top-wrap { flex-direction: row; }
}


/* ----------------------------------------------------------
   greeting.php — 인사말
   ---------------------------------------------------------- */

/* 인사말 전체 레이아웃 */
.greeting-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

/* 텍스트 열 */
.greeting-text { order: 1; flex: 1; }

/* 이미지 열 */
.greeting-img { order: 2; width: 100%; flex-shrink: 0; }

/* 인사말 이미지 */
.greeting-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-card-hover);
}

/* 인사말 h2 */
.greeting-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 2rem;
}

/* 인용구 */
.greeting-blockquote {
  border-left: 4px solid var(--color-primary-500);
  background-color: var(--color-primary-50);
  padding: 1rem 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-bottom: 1.75rem;
}

/* 인용구 텍스트 */
.greeting-quote-text {
  font-size: var(--font-size-body-lg, 1.0625rem);
  font-weight: 600;
  color: var(--color-primary-700);
  word-break: keep-all;
  line-height: var(--line-height-body-lg, 1.65);
}

/* 본문 단락 목록 */
.greeting-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

/* 본문 단락 */
.greeting-para {
  font-size: var(--font-size-body);
  line-height: 1.9;
  color: var(--color-light-700);
}

/* 서명 */
.greeting-signature {
  text-align: right;
  margin-top: 2rem;
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-light-800);
  font-style: italic;
}

@media (min-width: 1024px) {
  .greeting-wrap { flex-direction: row; gap: 3.5rem; align-items: flex-start; }
  .greeting-text { order: 2; flex: 1 1 0; min-width: 0; }
  .greeting-img { order: 1; flex: 1 1 0; min-width: 0; }
}


/* ----------------------------------------------------------
   charter.php — 인권헌장 (윤리경영)
   ---------------------------------------------------------- */

/* 윤리경영 h2 */
.charter-page-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 2rem;
}

/* 윤리경영 선언 카드 */
.charter-declaration-card {
  margin-bottom: 2.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

/* 윤리경영 타이틀 박스 */
.charter-title-box {
  border: 1px solid var(--color-primary-200);
  border-radius: 0.375rem;
  padding: 1rem;
  text-align: center;
  background-color: var(--color-primary-50);
  margin-bottom: 2rem;
}

/* 윤리경영 타이틀 박스 h3 */
.charter-title-box-h3 {
  font-size: var(--font-size-heading-3);
  font-weight: 800;
  color: var(--color-primary-700);
}

/* 선언 본문 단락 */
.charter-declaration-para {
  font-size: var(--font-size-body);
  line-height: 1.85;
  color: var(--color-light-700);
  margin-bottom: 1.125rem;
}

.charter-declaration-para:last-child {
  margin-bottom: 0;
}

/* 커밋먼트 목록 카드 */
.charter-commitment-list {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* 커밋먼트 개별 항목 */
.charter-commitment-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--color-primary-500);
  transition: background-color 150ms ease;
}

.charter-commitment-item + .charter-commitment-item {
  border-top: 1px solid var(--color-border);
}

.charter-commitment-item:hover {
  background-color: var(--color-primary-50);
}

/* 하나. 라벨 */
.charter-hana-label {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--color-primary-500);
  font-size: var(--font-size-body);
  padding-top: 0.125rem;
}

/* 커밋먼트 텍스트 */
.charter-commitment-text {
  font-size: var(--font-size-body);
  color: var(--color-light-700);
  line-height: 1.75;
  margin: 0;
}


/* ----------------------------------------------------------
   charter_rights.php — 이용자 권리보호
   ---------------------------------------------------------- */

/* 권리보호 h2 */
.rights-page-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 2rem;
}

/* 권리보호 섹션 블록 */
.rights-block {
  margin-bottom: 2rem;
}

/* 권리보호 카드 */
.rights-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* 권리보호 카드 헤더 */
.rights-card-header {
  padding: 1rem 1.5rem;
  border-bottom: 2px solid var(--color-primary-500);
  background-color: var(--color-primary-50);
}

/* 권리보호 카드 h3 */
.rights-card-h3 {
  font-size: var(--font-size-body);
  font-weight: 700;
  color: var(--color-primary-700);
}

/* 권리보호 카드 본문 */
.rights-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

/* 권리보호 본문 단락 */
.rights-body-para {
  font-size: var(--font-size-body);
  color: var(--color-light-700);
  line-height: 1.8;
  margin: 0;
}

/* 대응방법 카드 — 패딩만 */
.rights-action-body {
  padding: 1.5rem;
}

/* 대응방법 개별 행 */
.rights-action-item {
  display: flex;
  gap: 1rem;
  padding: 1.125rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-light-50);
  margin-bottom: 0.75rem;
}

.rights-action-item:last-child {
  margin-bottom: 0;
}

/* 번호 뱃지 */
.rights-action-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--color-primary-500);
  color: #fff;
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 대응방법 제목 */
.rights-action-title {
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-light-800);
  margin: 0 0 0.375rem;
}

/* 대응방법 부제 */
.rights-action-sub {
  font-size: var(--font-size-body);
  color: var(--color-light-600);
  margin: 0;
}

/* 대응방법 링크 */
.rights-action-link {
  color: var(--color-primary-600);
  font-weight: 600;
  text-decoration: none;
}

/* 인권위 링크 */
.rights-url-link {
  font-size: var(--font-size-body);
  color: var(--color-primary-600);
  text-decoration: none;
}


/* ----------------------------------------------------------
   history.php — 연혁
   ---------------------------------------------------------- */

/* 배너 래퍼 */
.history-banner-wrap {
  position: relative;
  overflow: hidden;
}

/* 배너 이미지 영역 */
.history-banner {
  width: 100%;
  height: 320px;
  background-color: var(--color-primary-900);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 배너 오버레이 */
.history-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 31, 84, 0.7) 0%, rgba(9, 31, 84, 0.3) 100%);
}

/* 배너 오버레이 카드 */
.history-overlay-card {
  position: absolute;
  bottom: 0;
  background-color: var(--color-primary-600);
  padding: 1.75rem 2rem;
  left: max(1rem, calc((100% - 1200px) / 2 + 1rem));
  max-width: 260px;
}

/* 오버레이 카드 복지관명 */
.history-overlay-sub {
  font-size: var(--font-size-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
  color: rgba(255, 255, 255, 0.65);
}

/* 오버레이 카드 제목 */
.history-overlay-title {
  font-size: var(--font-size-heading-3);
  font-weight: 800;
  color: #fff;
  line-height: 1.45;
}

/* 타임라인 섹션 */
.history-section {
  background-color: var(--color-surface);
}

/* 타임라인 컨테이너 */
.history-container {
  padding-left: max(1rem, calc((100% - 1200px) / 2 + 1rem));
}

/* 연도 그룹 행 */
.history-group {
  display: flex;
  gap: 2.5rem;
}

.history-group--mb {
  margin-bottom: 3.5rem;
}

/* 타임라인 왼쪽 (점 + 세로선) */
.history-timeline-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 0.875rem;
}

/* 타임라인 점 */
.history-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: var(--color-primary-500);
  flex-shrink: 0;
  margin-top: 0.35rem;
  box-shadow: 0 0 0 3px var(--color-primary-100);
}

/* 타임라인 세로선 */
.history-line {
  flex: 1;
  width: 1px;
  background-color: var(--color-primary-100);
  margin-top: 0.5rem;
  min-height: 2rem;
}

/* 연도 + 이벤트 오른쪽 열 */
.history-content-col {
  flex: 1;
  min-width: 0;
}

/* 연도 */
.history-year {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-primary-700);
  margin-bottom: 1.25rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* 이벤트 행 */
.history-event-row {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.625rem 0;
}

.history-event-row + .history-event-row {
  border-top: 1px solid var(--color-border);
}

/* 날짜 */
.history-date {
  flex-shrink: 0;
  min-width: 3.5rem;
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  color: var(--color-primary-500);
  font-variant-numeric: tabular-nums;
}

/* 이벤트 텍스트 */
.history-event-text {
  font-size: var(--font-size-body);
  color: var(--color-light-700);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .history-overlay-card { left: 1rem !important; }
}


/* ----------------------------------------------------------
   facility.php — 시설안내
   ---------------------------------------------------------- */

/* 시설안내 h2 */
.facility-page-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 2rem;
}

/* 기본 정보 섹션 */
.facility-info-section {
  margin-bottom: 3rem;
}

/* 기본 정보 그리드 */
.facility-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* 기관 사진 */
.facility-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

/* 정보 테이블 카드 */
.facility-table-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  align-self: flex-start;
  border: 1px solid var(--color-border);
}

/* 정보 테이블 행 (110px 라벨) */
.facility-info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  background: #fff;
}

.facility-info-row + .facility-info-row {
  border-top: 1px solid var(--color-border);
}

/* 층별 안내 h2 */
.facility-floor-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 1.25rem;
}

/* 층별 레이아웃 (데스크탑 3열) */
.facility-layout {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

/* 좌/우 열 */
.facility-floor-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-around;
}

/* 오른쪽 정렬 열 */
.facility-floor-col--right .facility-floor-card {
  text-align: right;
}

/* 층 카드 — 공통 */
.facility-floor-card {
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

/* 층 카드 — 클릭 가능 (1층) */
.facility-floor-card--clickable {
  cursor: pointer;
}

/* 층 이름 */
.facility-floor-name {
  font-size: var(--font-size-body);
  font-weight: 700;
  margin: 0 0 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* 층 이름 — 지상 */
.facility-floor-name--above {
  color: var(--color-primary-600);
}

/* 층 이름 — 지하 */
.facility-floor-name--below {
  color: var(--color-light-600);
}

/* 층 이름 — 오른쪽 정렬 */
.facility-floor-name--right {
  justify-content: flex-end;
}

/* 층 방 목록 */
.facility-floor-rooms {
  font-size: var(--font-size-body);
  color: var(--color-light-600);
  line-height: normal;
  margin: 0;
}

/* 중앙 건물 단면도 */
.facility-building {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  width: 200px;
  border: 2px solid var(--color-border);
}

/* 건물 단면도 각 층 */
.facility-building-floor {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.25rem;
  min-height: 4rem;
}

.facility-building-floor + .facility-building-floor {
  border-top: 1px solid var(--color-border);
}

/* 건물 단면도 층 라벨 */
.facility-building-label {
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  font-size: var(--font-size-body-sm);
}

/* 지상 */
.facility-building-label--above {
  color: var(--color-primary-600);
}

/* 지하 */
.facility-building-label--below {
  color: var(--color-light-500);
}

/* 건물 단면도 행 배경 — 지상 */
.facility-building-floor--above {
  background-color: #fff;
}

/* 건물 단면도 행 배경 — 지하 */
.facility-building-floor--below {
  background-color: var(--color-light-100);
}

/* 모바일 층별 목록 */
.facility-mobile {
  display: none;
  flex-direction: column;
  gap: 0.625rem;
}

/* 모바일 층 카드 — 공통 */
.facility-mobile-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.875rem 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  border-radius: 0 8px 8px 0;
}

/* 모바일 층 카드 — 지상 */
.facility-mobile-card--above {
  border-left: 4px solid var(--color-primary-500);
}

/* 모바일 층 카드 — 지하 */
.facility-mobile-card--below {
  border-left: 4px solid var(--color-light-400);
}

/* 모바일 층 카드 — 클릭 가능 */
.facility-mobile-card--clickable {
  cursor: pointer;
}

/* 모바일 층 이름 */
.facility-mobile-floor-name {
  flex-shrink: 0;
  font-weight: 700;
  font-size: var(--font-size-body);
  min-width: 60px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* 모바일 층 방 목록 */
.facility-mobile-rooms {
  font-size: var(--font-size-body);
  color: var(--color-light-700);
  line-height: 1.6;
  margin: 0;
}

/* 1층 도면 모달 */
.floor-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
}

/* 모달 내부 */
.floor-modal-inner {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  max-width: 48rem;
  width: 100%;
}

/* 모달 헤더 */
.floor-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

/* 모달 제목 */
.floor-modal-title {
  font-size: var(--font-size-body);
  font-weight: 700;
  color: var(--color-light-900);
}

/* 모달 닫기 버튼 */
.floor-modal-close {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-light-500);
  transition: background-color 150ms ease;
}

.floor-modal-close:hover {
  background-color: var(--color-light-100);
}

/* 모달 이미지 래퍼 */
.floor-modal-body {
  padding: 1.25rem;
}

/* 모달 이미지 */
.floor-modal-img {
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .facility-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .facility-layout { display: none !important; }
  .facility-mobile { display: flex !important; }
}


/* ----------------------------------------------------------
   location.php — 오시는길
   ---------------------------------------------------------- */

/* 오시는길 h2 */
.location-page-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 2rem;
}

/* 지도 섹션 */
.location-map-section {
  margin-bottom: 3rem;
}

/* 지도 + 연락처 레이아웃 */
.location-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 지도 래퍼 */
.location-map-box {
  flex: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 22.5rem;
  border: 1px solid var(--color-border);
}

/* 지도 iframe */
.location-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 360px;
}

/* 연락처 카드 */
.location-contact-card {
  flex-shrink: 0;
  width: 100%;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  max-width: 280px;
  align-self: flex-start;
}

/* 연락처 카드 h3 */
.location-contact-title {
  font-size: var(--font-size-heading-3);
  font-weight: 700;
  color: var(--color-light-900);
  margin-bottom: 1.25rem;
}

/* 연락처 항목 */
.location-contact-item {
  margin-bottom: 0.875rem;
}

/* 연락처 라벨 */
.location-contact-label {
  font-size: var(--font-size-body-sm);
  font-weight: 600;
  color: var(--color-light-500);
  margin-bottom: 0.125rem;
}

/* 연락처 전화 링크 */
.location-contact-tel {
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-primary-600);
  text-decoration: none;
}

/* 연락처 일반 값 */
.location-contact-val {
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-light-800);
  margin: 0;
}

/* 연락처 이메일 링크 */
.location-contact-email {
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-primary-600);
  text-decoration: none;
}

/* 연락처 주소 구분선 + 텍스트 */
.location-address-block {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

/* 주소 텍스트 */
.location-address-text {
  font-size: var(--font-size-body-sm);
  color: var(--color-light-600);
  line-height: 1.7;
  margin: 0;
}

/* 교통안내 h2 */
.location-transport-title {
  font-size: var(--font-size-heading-1);
  font-weight: 800;
  color: var(--color-light-900);
  margin-bottom: 1.25rem;
}

/* 교통 카드 그리드 */
.transport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* 교통 카드 공통 */
.transport-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

/* 지하철 카드 */
.transport-card--subway {
  border-top: 3px solid var(--color-primary-500);
}

/* 지하철 아이콘 색 */
.transport-icon--subway {
  margin-bottom: 0.875rem;
  color: var(--color-primary-500);
}

/* 자가용 카드 */
.transport-card--car {
  border-top: 3px solid var(--color-secondary-500);
}

/* 자가용 아이콘 색 */
.transport-icon--car {
  margin-bottom: 0.875rem;
  color: var(--color-secondary-500);
}

/* 버스 카드 */
.transport-card--bus {
  border-top: 3px solid #16a34a;
}

/* 버스 아이콘 색 */
.transport-icon--bus {
  margin-bottom: 0.875rem;
  color: #16a34a;
}

/* 교통 카드 제목 */
.transport-card-title {
  font-size: var(--font-size-heading-3);
  font-weight: 700;
  color: var(--color-light-900);
  margin-bottom: 0.75rem;
}

/* 교통 카드 주 정보 */
.transport-card-main {
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-light-800);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

/* 교통 카드 부 정보 */
.transport-card-sub {
  font-size: var(--font-size-body);
  color: var(--color-light-600);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .location-map-wrap { flex-direction: row; }
  .transport-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ----------------------------------------------------------
   sos_info / donation_info / volunteer_info 공통 컴포넌트
   ---------------------------------------------------------- */

/* 섹션 블록 하단 여백 (replaces style="margin-bottom:60px") */
.about-section-block { margin-bottom: 3.75rem; }

/* ── 타입 카드 (상단 컬러 바) ── */
.about-info-card--type {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 3px solid var(--color-primary-500);
}
.about-info-card--type-green  { border-top-color: #4caf8a; }
.about-info-card--type-orange { border-top-color: #e08c3b; }

.about-type-emoji { font-size: 2rem; line-height: 1; }

.about-type-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-light-800);
  margin: 0 0 8px;
}
.about-type-desc {
  font-size: .9375rem;
  color: var(--color-light-600);
  line-height: 1.7;
  margin: 0;
}
.about-type-note {
  margin-top: auto;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-primary-600);
}
.about-type-note--green  { color: #4caf8a; }
.about-type-note--orange { color: #e08c3b; }

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

/* ── 신청/후원 단계 그리드 ── */
.about-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.about-step-item {
  padding: 24px 20px;
  background: var(--color-light-50);
  border: 1px solid var(--color-light-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-step-item + .about-step-item { border-left: none; }
.about-step-item:nth-child(even)    { background: #fff; }

.about-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.about-step-title { font-size: 1rem; font-weight: 700; color: var(--color-light-800); margin: 0; }
.about-step-desc  { font-size: .875rem; color: var(--color-light-500); line-height: 1.65; margin: 0; }

/* ── CTA 배너 ── */
.about-cta-box {
  background: var(--color-primary-600);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.about-cta-text  { color: #fff; }
.about-cta-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 10px; }
.about-cta-info  { margin: 0; font-size: .9375rem; opacity: .9; line-height: 1.7; }

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--color-primary-600);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 150ms ease;
  white-space: nowrap;
}
.about-cta-btn:hover { background: var(--color-light-100); }

/* ── 카드 패널 헤더 (테이블형 카드 내부) ── */
.about-card-panel-header {
  background: var(--color-light-100);
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-light-200);
}
.about-card-panel-title { margin: 0; font-size: .9375rem; font-weight: 700; color: var(--color-light-700); }

.about-card-rows { padding: 4px 0; }
.about-card-rows:has(.about-info-row){
padding: 0;
}
.about-card-panel-body {
  padding: 20px;
  font-size: .9375rem;
  color: var(--color-light-600);
  line-height: 1.75;
}
.about-card-panel-body p          { margin: 0; }
.about-card-panel-body p + p      { margin-top: 0.75rem; }
.about-card-panel-body strong     { color: var(--color-light-800); }

/* ── 후원 계좌 배너 ── */
.about-account-banner {
  background: var(--color-primary-600);
  color: #fff;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about-account-icon  { flex-shrink: 0; opacity: .9; }
.about-account-label { font-size: .8125rem; opacity: .8; margin-bottom: 3px; }
.about-account-num   { font-size: 1.125rem; font-weight: 700; letter-spacing: .02em; }
.about-account-owner { margin-left: auto; font-size: .9375rem; opacity: .9; }

/* ── foundation-biz 서브 텍스트 ── */
.foundation-biz-sub { font-weight: 400; font-size: .9em; }

@media (max-width: 768px) {
  .about-card-grid-3 { grid-template-columns: 1fr 1fr; }
  .about-card-grid-2 { grid-template-columns: 1fr; }
  .about-step-grid   { grid-template-columns: 1fr 1fr; }
  .about-cta-box     { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .about-card-grid-3 { grid-template-columns: 1fr; }
  .about-step-grid   { grid-template-columns: 1fr; }
  .about-step-item + .about-step-item { border-left: 1px solid var(--color-light-200); border-top: none; }
}
