/* ─────────────────────────────────────
   SLOGAN
───────────────────────────────────── */
.slogan {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slogan-bg {
  position: absolute;
  inset: 0;
}

.slogan-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slogan-overlay {
  position: absolute;
  inset: 0;
  background: var(--slogan-overlay);
}

.slogan-inner {
  position: relative;
  z-index: 10;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 140px var(--px) 340px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.slogan-content {
  flex: 1;
  min-width: 0;
}

.slogan-heading {
  font-size: 52px;
  color: #fff;
  line-height: 1.4;
  word-break: keep-all;
  font-weight: 700;
}

/* ─────────────────────────────────────
   VISION CARD SLIDER
───────────────────────────────────── */
.vision-card {
  position: relative;
  flex: 0 0 min(684px, 48%);
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(12,12,13,0.12);
}

.vision-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.vision-slide-bg {
  position: absolute;
  inset: 0;
}

.vision-slide-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% top;
  transform: scale(1.2) translateY(-5%);
}

.vision-mute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: background 0.2s, opacity 0.4s;
}
.vision-mute-btn:hover {
  background: rgba(0,0,0,0.6);
}
.vision-mute-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.vision-slide-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(248,249,251,0.5) 0%, transparent 70%);
}

.vision-slide-content {
  position: absolute;
  bottom: 70px;
  left: 40px;
  right: 40px;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-shadow: 0 1px 12px rgba(255,255,255,0.45), 0 0 24px rgba(255,255,255,0.3);
}

.vision-card-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(30,30,30,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vision-card-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
}

.vision-dots {
  position: absolute;
  bottom: 30px;
  left: 40px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.vision-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.vision-dot.active {
  background: var(--primary-400);
  width: 60px;
}

/* ─────────────────────────────────────
   POLICY SECTION
───────────────────────────────────── */
.policy-section {
  background: transparent;
  padding: 0 0 160px;
  margin-top: -232px;
  position: relative;
  z-index: 11;
}

.policy-intro {
  max-width: var(--content-width);
  margin: 0 auto 30px;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.policy-intro-text {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  word-break: keep-all;
}

.policy-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.policy-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.policy-nav-btn.prev { opacity: 0.5; }

.policy-nav-btn img {
  width: 20px;
  height: 20px;
}

.policy-cards-wrapper {
  overflow: visible;
  width: 100%;
  padding-left: max(var(--px), calc((100% - var(--content-width)) / 2 + var(--px)));
  padding-top: 10px;
}

.policy-cards {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  touch-action: pan-y;
}

.policy-card {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

@media (min-width: 768px) {
  .policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  }
}

.policy-card-top {
  background: var(--neutral-50);
  padding: 40px;
  height: 294px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px 16px 0 0;
}

.policy-card-texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-card-category {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.5;
}

.policy-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  word-break: keep-all;
}

.policy-card-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.5;
  transition: color 0.2s;
}

.policy-card-more span {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.policy-card-more img {
  transition: transform 0.2s ease;
  width: 14px;
  height: 12px;
}

.policy-card-more:hover {
  color: var(--text-dark);
}

.policy-card-more:hover span {
  text-decoration-color: currentColor;
}

.policy-card-more:hover img {
  transform: translateX(4px);
}

.policy-card-image {
  height: 196px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.policy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.policy-slider-area {
  position: relative;
  overflow-x: clip;
}

.policy-mob-btn {
  display: none;
}

.policy-mob-counter {
  display: none;
}

.policy-indicators {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.2s, width 0.2s;
}

.indicator.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────
   SUB TAB
───────────────────────────────────── */
.subpage-page-title:has(+ .tab-wrap) {
  padding-bottom: 60px;
}

.tab-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}

.tab-menu {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  background: var(--primary-700);
  border-radius: 999px;
  padding: 8px 10px;
}

.tab-btn {
  width: 150px;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.tab-btn:not(.active):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tab-btn.active {
  background: #fff;
  color: var(--primary-700);
  font-weight: 600;
}

.tab-content {
  display: none;
  padding-bottom: 120px;
}

.tab-content.active {
  display: block;
}


/* ─────────────────────────────────────
   VISION PAGE
───────────────────────────────────── */



/* ─────────────────────────────────────
   POLICY PAGE
───────────────────────────────────── */

/* 스크롤 탭 (10개 이상) */
.tab-wrap--scroll {
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tab-wrap--scroll::-webkit-scrollbar { display: none; }
.tab-wrap--scroll .tab-menu { flex-shrink: 0; gap: 6px; }
.tab-wrap--scroll .tab-btn  { width: auto; padding: 6px 22px; flex: none; }

/* 스크롤스파이 탭 */
.tab-wrap--scroll-spy {
  background: #fff;
  border-bottom: 1px solid var(--border-100);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tab-wrap--scroll-spy::-webkit-scrollbar { display: none; }
.tab-wrap--scroll-spy .tab-menu { flex-shrink: 0; gap: 8px; }
.tab-wrap--scroll-spy .tab-btn  { width: auto; padding: 6px 22px; flex: none; }

@media (max-width: 767px) {
  .tab-wrap--scroll-spy { justify-content: flex-start; padding-left: var(--px); padding-right: var(--px); }
  .tab-wrap--scroll-spy .tab-btn { font-size: 14px; padding: 7px 16px; }
}

.is-subpage .policy-section {
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-100);
}
.is-subpage .policy-section:last-of-type { border-bottom: none; }

/* 비전 */
.policy-tagline {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--neutral-600);
  padding: 0 0 32px;
  line-height: 1.6;
}

.policy-vision-quote {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-700);
  line-height: 1.6;
  padding: 0 0 40px;
}

.policy-vision-goals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 48px;
}
.vision-title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.policy-vision-goal {
  background: var(--primary-50);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-700);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.policy-vision-goal::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
  flex-shrink: 0;
  margin-top: 9px;
}

.policy-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 60px;
}

.policy-area-card {
  background: #fff;
  border: 1px solid var(--border-100);
  border-radius: 12px;
  padding: 24px;
}
.policy-area-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-500);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.policy-area-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 14px;
}
.policy-area-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.policy-area-card ul li {
  font-size: 14px;
  color: var(--neutral-600);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.policy-area-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary-300);
}

/* 발전계획서 대전환 */
.policy-transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.policy-transform-card {
  background: var(--primary-50);
  border-radius: 12px;
  padding: 32px 28px;
}
.policy-transform-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-500);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.policy-transform-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 12px;
}
.policy-transform-card p {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* 현실진단 + 개선방향 */
.policy-analysis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.policy-diagnosis,
.policy-direction {
  border-radius: 12px;
  padding: 32px;
}
.policy-diagnosis { background: var(--neutral-50); border: 1px solid var(--border-100); }
.policy-direction  { background: var(--primary-50); border: 1px solid var(--primary-100); }

.policy-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.policy-diagnosis .policy-section-label { color: var(--neutral-500); }
.policy-direction  .policy-section-label { color: var(--primary-500); }

.policy-analysis ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.policy-analysis ul li {
  font-size: 15px;
  color: var(--neutral-700);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.policy-analysis ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neutral-400);
}
.policy-direction ul li::before { background: var(--primary-400); }

/* 세부 공약 */
.policy-pledges { display: flex; flex-direction: column; gap: 0; padding-bottom: 40px; }
.policy-pledge-group { border-top: 1px solid var(--border-100); padding: 36px 0; }

.policy-pledge-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.policy-pledge-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 20px;
  line-height: 1.4;
}
.policy-pledge-sub {
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-700);
  margin: 20px 0 10px;
}
.policy-pledge-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.policy-pledge-list li {
  font-size: 15px;
  color: var(--neutral-700);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
  word-break: keep-all;
}
.policy-pledge-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-400);
}

/* 소견서 */
.policy-opinion { max-width: 800px; margin: 0 auto; padding-bottom: 40px; }
.policy-opinion p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--neutral-700);
  margin-bottom: 24px;
  word-break: keep-all;
}
.opinion-quote {
  font-size: 20px !important;
  font-weight: 700;
  color: var(--primary-700) !important;
  border-left: 4px solid var(--primary-400);
  padding-left: 20px !important;
  margin: 32px 0 !important;
  line-height: 1.6 !important;
}

/* Responsive */
@media (max-width: 1199px) {
  .policy-area-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .tab-wrap--scroll .tab-btn { font-size: 14px; padding: 7px 16px; }
  .policy-tagline { font-size: 16px; }
  .policy-vision-quote { font-size: 18px; }
  .policy-vision-goals { grid-template-columns: 1fr; }
  .policy-area-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .policy-transform-grid { grid-template-columns: 1fr; }
  .policy-analysis { grid-template-columns: 1fr; }
  .policy-diagnosis, .policy-direction { padding: 24px; }
  .policy-pledge-title { font-size: 18px; }
  .policy-pledges { padding-bottom: 24px; }
  .policy-opinion p { font-size: 15px; }
  .opinion-quote { font-size: 17px !important; }
}

.subtab02{display: flex; flex-wrap: wrap;margin-top:15px;}
.subtab02 li{display:block;width:19.7%;word-break: keep-all;border:solid 1px #ddd;margin:-1px 0 0 -1px;}
.subtab02 li:first-child{}
.subtab02 li a{display: flex; justify-content: center; align-items: center; padding: 18px 10px; text-align: center; font-size: 15px; font-weight: 500; color: #333;word-break: keep-all;}
.subtab02 li a:hover{border-color: #193988;background-color: #193988; color: #fff;text-decoration:underline;}
.subtab02_con{clear:both;margin-top:50px;list-style:none;}
.subtab02_con > li{list-style:none;}

.policy-page-intro {
  margin-bottom: 0;
}

.policy-page-intro strong {
  display: block;
  font-size: 28px;
  line-height: 1.6;
  color: #222;
  word-break: keep-all;
}

.policy-page-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s;
}
.subtab02-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.subtab02-arrow {
  display: none;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-200);
  border-radius: 50%;
  background: #fff;
  color: var(--neutral-600);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.subtab02-arrow:hover {
  background: var(--neutral-100);
  border-color: var(--neutral-300);
  color: var(--neutral-900);
}

.policy-page-nav.scrolled {
  border-bottom: 1px solid var(--border-200);
}

.policy-page-nav .subtab02 {
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-top: 0;
  padding: 12px 0;
  gap: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.policy-page-nav .subtab02::-webkit-scrollbar {
  display: none;
}

.policy-page-nav .subtab02 li {
  width: auto;
  flex: 0 0 auto;
  border: none;
  background: none;
  margin: 0;
}

.policy-page-nav .subtab02 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-600);
  white-space: nowrap;
  border: 1px solid var(--border-200);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.policy-page-nav .subtab02 li a:hover {
  background: var(--neutral-100);
  color: var(--neutral-900);
  border-color: var(--neutral-300);
  text-decoration: none;
}

.policy-page-sections {
  margin-top: 40px;
  padding-bottom: 80px;
}

.policy-page-section {
  scroll-margin-top: 112px;
}
.policy-page-section li { list-style: none; }
.policy-page-section p:not(.tab1-headline) { color: var(--text-gray); }

.policy-page-section + .policy-page-section {
  padding-top: 64px;
}

.policy-page-nav .subtab02 li.active a {
  background: var(--primary-700);
  color: #fff;
  border-color: var(--primary-700);
  font-weight: 600;
}


/* ─── 비전 탭 (tab1) ─── */
.tab1-headline {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-700);
  line-height: 1.45;
  word-break: keep-all;
  margin-bottom: 24px;
}

.tab1-row--primary {
  display: flex;
  margin-bottom: 0;
}
.tab1-row--primary .tab1-row-label {
  width: 16%;
  flex-shrink: 0;
  background: var(--primary-700);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab1-row--primary .tab1-row-content {
  flex: 1;
  border: 1px solid var(--primary-200);
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-700);
  display: flex;
  align-items: center;
}

.tab1-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--neutral-200);
  border: 1px solid var(--neutral-200);
  margin-top: 0;
}
.tab1-row {
  display: flex;
  background: #fff;
}
.tab1-row-label {
  width: 16%;
  flex-shrink: 0;
  background: var(--neutral-700);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.tab1-row-content {
  flex: 1;
  background: var(--neutral-50);
  padding: 20px 24px;
}

.tab1-dot-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tab1-dot-list li {
  padding-left: 14px;
  position: relative;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}
.tab1-dot-list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--primary-400);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 11px;
}

.tab1-pledge { margin-bottom: 20px; }
.tab1-pledge:last-child { margin-bottom: 0; }
.tab1-pledge-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--neutral-900);
  line-height: 1.5;
  word-break: keep-all;
  margin-bottom: 4px;
}

.sub03_mtit { font-size: 18px; font-weight: 400; color: var(--neutral-600); line-height: 1.7; }

/* ─── 공통 섹션 헤더 (tab2~tab8) ─── */
.sub04_toptit {
  display: inline-block;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 18px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid var(--primary-200);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sub_04stit03 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.45;
  color: var(--neutral-900);
  word-break: keep-all;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--neutral-200);
}

/* ─── 소제목 ─── */
.sub_04stit02 {
  font-weight: 700;
  font-size: 20px;
  border-left: 3px solid var(--primary-500);
  padding: 3px 0 3px 12px;
  color: var(--neutral-900);
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 14px;
}


/* ─── 불릿 아이템 ─── */
.sub04_stit {
  padding-left: 14px;
  position: relative;
  color: var(--neutral-600);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 4px;
}
.sub04_stit::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--primary-400);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}


@media screen and (max-width: 905px) {
  .sub04_tableball > ul li { width: 100%; }
  .sub04_table ul li, .sub04_table02 > ul > li { padding: 14px 16px; }
}

@media screen and (max-width:767px) {
.subtab02{margin-top:0px;}
.sub04_toptit { font-size: 16px; }
.sub_04stit03 { font-size: 22px; margin-bottom: 20px; padding-bottom: 16px; }
.sub_04stit02 { font-size: 18px; margin-top: 28px; }
.sub04_stit { font-size: 16px; }
.tab1-headline { font-size: 22px; }
.tab1-row, .tab1-row--primary { flex-direction: column; }
.tab1-row-label, .tab1-row--primary .tab1-row-label { width: 100%; font-size: 13px; padding: 10px 16px; justify-content: center; text-align: center; }
.tab1-row--primary { margin-bottom: 10px; }
.tab1-table { gap: 10px; background: transparent; }
.tab1-row-content, .tab1-row--primary .tab1-row-content { padding: 14px 16px; }
.policy-page-intro strong{font-size:22px;}
.policy-page-nav .subtab02{padding:10px 0;}
.policy-page-nav .subtab02 li a{padding:6px 14px;font-size:16px;}
.subtab02-arrow{display:flex;}
.policy-page-sections{margin-top:32px;}
.policy-page-section{scroll-margin-top:96px;}
.policy-page-section + .policy-page-section{padding-top:40px;}
}








/* ─────────────────────────────────────
   PRESS PAGE
───────────────────────────────────── */

/* 기사 리스트 */
.press-list {
  list-style: none;
  border-top: 2px solid var(--neutral-900);
}

.press-item {
  border-bottom: 1px solid var(--border-100);
}

.press-item > a,
.press-item:not(:has(a)) {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 8px;
  transition: background 0.15s;
}

.press-item > a:hover {
  background: var(--neutral-50);
}

.press-source {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-600);
  background: var(--primary-50);
  border-radius: 4px;
  padding: 3px 0;
  width: 110px;
  text-align: center;
}

.press-title {
  flex: 1;
  font-size: 16px;
  color: var(--neutral-800);
  line-height: 1.5;
  word-break: keep-all;
}

.press-item > a:hover .press-title {
  color: var(--primary-700);
}

.press-date {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--neutral-400);
  font-variant-numeric: tabular-nums;
}

/* 링크 없는 아이템 */
.press-item:not(:has(a)) {
  padding: 20px 8px;
}

/* 영상 그리드 */
.press-video-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.press-video-item a {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-100);
  transition: box-shadow 0.2s;
}

.press-video-item a:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.press-video-thumb {
  width: 100%;
}

.press-video-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.press-video-thumb--news {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-100);
  color: var(--neutral-400);
}

.press-video-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 20px 20px;
}

.press-video-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-800);
  line-height: 1.5;
  word-break: keep-all;
}

@media (max-width: 767px) {
  .press-item > a,
  .press-item:not(:has(a)) { gap: 10px; padding: 16px 4px; flex-wrap: wrap; }
  .press-source { width: 80px; font-size: 12px; }
  .press-title { font-size: 14px; width: 100%; }
  .press-date { font-size: 12px; }
  .press-video-list { grid-template-columns: 1fr; gap: 16px; }
}

/* ─────────────────────────────────────
   PLAN PAGE
───────────────────────────────────── */
.plan-section {
  padding: 0 0 120px;
}

.plan-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 80px 60px;
  background: var(--primary-50);
  border-radius: 20px;
  gap: 0;
}

.plan-cta-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.5;
}

.plan-cta-desc {
  font-size: 18px;
  color: var(--neutral-600);
  line-height: 1.8;
}

.plan-cta-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 32px;
  background: var(--primary-700);
  color: #fff;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.plan-cta-email:hover {
  background: var(--primary-800);
}

@media (max-width: 767px) {
  .plan-section { padding-bottom: 64px; }
  .plan-cta { padding: 48px 24px; }
  .plan-cta-heading { font-size: 26px; }
  .plan-cta-desc { font-size: 15px; }
  .plan-cta-email { font-size: 15px; padding: 12px 24px; }
}

/* ─────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────── */

/* 페이지 타이틀 (흰 배경, 중앙 정렬) */
.subpage-page-title {
  text-align: center;
  padding: 60px var(--px);
}

.about-page-title {
  padding-bottom: 80px;
}
.subpage-title-ko {
  font-size: 48px;
  font-weight: 700;
  color: #121212;
  line-height: 1.4;
}
.subpage-title-sub {
  font-size: 24px;
  font-weight: 500;
  color: var(--neutral-600);
  line-height: 1.4;
}

/* 사진 + 프로필 */
.about-profile-section {
  padding-bottom: 60px;
}
.about-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: stretch;
}
.vision-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: stretch;
}
.vision-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.vision-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.vision-photo {
  border-radius: 16px;
  overflow: hidden;
  background: var(--neutral-100);
}
.vision-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vision-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}
.vision-greeting {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  word-break: keep-all;
  margin: 0;
}
.about-photo {
  border-radius: 16px;
  overflow: hidden;
  background: var(--neutral-100);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}
.about-profile-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 572px;
  padding-top: 20px;
}
.about-greeting {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  word-break: keep-all;
}

/* 프로필 카드 */
.about-card {
  background: var(--neutral-800);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-card-name {
  color: #fff;
  line-height: 1;
}
.about-card-name .name-ko {
  font-size: 40px;
  font-weight: 700;
}
.about-card-name .name-cn {
  font-size: 30px;
  font-weight: 500;
  margin-left: 10px;
  opacity: 0.75;
}
.about-card-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--neutral-200);
}
/* 포지션 흰 박스 */
.about-card-positions-box {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
}
.about-card-positions-box ul {
  list-style: disc;
  padding-left: 24px;
}
.about-card-positions-box li {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
}

/* 소개 본문 */
.about-bio {
  padding: 0 0 50px;
}
.about-bio p {
  font-size: 16px;
  line-height: 1.5;
  color: #454545;
  word-break: keep-all;
}
.about-bio p + p {
  margin-top: 1.4em;
}

/* 경력/학력/저서 카드 */
.about-credentials {
  padding: 0 0 120px;
}
.about-credentials-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.about-cred-col-left {
  flex: 0 0 calc(50% - 12px);
  display: flex;
  flex-direction: column;
}

.about-cred-col-left .about-cred-card {
  flex: 1;
}
.about-cred-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-cred-card {
  background: var(--neutral-50);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-cred-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-cred-header span {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}
.about-cred-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-200);
}
.about-cred-list {
  list-style: disc;
  padding-left: 24px;
}
.about-cred-list li {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}
.vision-cred-card {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vision-cred-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.vision-cred-header span {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}
.vision-cred-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-200);
}
.vision-cred-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.vision-cred-text strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
.about-edu-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}
.about-pub-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-pub-list {
  list-style: disc;
  padding-left: 24px;
}
.about-pub-list li {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* ─────────────────────────────────────
   ABOUT — Tablet
───────────────────────────────────── */
@media (max-width: 1199px) {
  .subpage-page-title { padding: 60px var(--px); }
  .about-page-title { padding-bottom: 62px; }
  .subpage-page-title:has(+ .tab-wrap) { padding-bottom: 50px; }
  .subpage-title-ko { font-size: 36px; }
  .subpage-title-sub { font-size: 20px; }
  .tab-menu { gap: 20px; }
  .tab-btn { width: 130px; font-size: 18px; }
  .about-greeting { font-size: 32px; }
  .about-bio { padding: 0 0 40px; }
  .about-credentials { padding: 0 0 80px; }
  .about-credentials-grid { flex-direction: column; gap: 16px; }
  .about-cred-col-left { flex: none; width: 100%; }
}

/* ─────────────────────────────────────
   ABOUT — Mobile
───────────────────────────────────── */
@media (max-width: 767px) {
  .subpage-page-title { padding: 40px var(--px); }
  .about-page-title { padding-bottom: 38px; }
  .subpage-page-title:has(+ .tab-wrap) { padding-bottom: 30px; }
  .tab-wrap { padding-bottom: 40px; padding-left: var(--px); padding-right: var(--px); }
  .tab-menu { gap: 4px; padding: 6px 6px; width: 100%; }
  .tab-btn { flex: 1; padding: 8px 12px; font-size: 15px; }
  .tab-content { padding-bottom: 64px; }
  .subpage-title-ko { font-size: 32px; }
  .subpage-title-sub { font-size: 16px; margin-top: 8px; }
  .about-profile-section { padding-bottom: 40px; }
  .about-profile-grid, .vision-top { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { aspect-ratio: 4 / 3; }
  .about-profile-right { min-height: unset; gap: 24px; padding-top: 0; }
  .vision-photo { height: auto; aspect-ratio: 4 / 3; }
  .vision-title-wrap { min-height: unset; gap: 16px; }
  .vision-greeting { font-size: 24px; line-height: 1.45; padding-top: 0; }
  .vision-wrap { gap: 40px; }
  .vision-cred-header span { font-size: 18px; white-space: normal; }
  .vision-cred-header::after { display: none; }
  .vision-cred-header { border-bottom: 1px solid var(--border-200); padding-bottom: 12px; }
  .vision-cred-text { font-size: 16px; }
  .vision-cards { gap: 24px; }
  .about-greeting { font-size: 24px; line-height: 1.45; }
  .about-card { padding: 24px; gap: 16px; }
  .about-card-name .name-ko { font-size: 26px; }
  .about-card-name .name-cn { font-size: 20px; }
  .about-card-email { font-size: 16px; }
  .about-card-positions-box { padding: 20px; }
  .about-card-positions-box ul { padding-left: 12px; }
  .about-card-positions-box li { font-size: 16px; }
  .about-bio { padding: 0 0 36px; }
  .about-bio p { font-size: 15px; line-height: 1.5; }
  .about-bio p + p { margin-top: 16px; }
  .about-credentials { padding: 0 0 64px; }
  .about-credentials-grid { gap: 16px; }
  .about-cred-col-right { gap: 16px; }
  .about-cred-card { padding: 24px; }
  .about-cred-list { padding-left: 20px; }
  .about-cred-header span { font-size: 16px; }
  .about-edu-text p { font-size: 16px; }
  .about-pub-cols { grid-template-columns: 1fr; gap: 0; }
  .about-pub-list li { font-size: 16px; }
  .about-cred-list li { font-size: 16px; }
}

/* ═════════════════════════════════════
   TABLET  768px – 1199px
═════════════════════════════════════ */
@media (max-width: 1199px) {
  .slogan-inner {
    padding-top: 110px;
    padding-bottom: 60px;
    gap: 32px;
    min-height: 560px;
  }

  .slogan-heading { font-size: 38px; }

  .vision-card {
    flex: 0 0 min(420px, 45%);
    height: 320px;
  }

  .vision-card-title { font-size: 20px; }
  .vision-card-label { font-size: 12px; }
  .vision-slide-content { bottom: 36px; left: 28px; right: 28px; }
  .vision-dots { bottom: 14px; left: 28px; }

  .policy-section {
    background: linear-gradient(to bottom, var(--primary-800) 0%, var(--primary-800) 180px, #fff 180px);
    padding: 40px 0 60px;
    margin-top: 0;
  }

  .policy-intro { margin-bottom: 24px; }
  .policy-intro-text { font-size: 22px; }

  .policy-card { flex: 0 0 300px; }
  .policy-cards-wrapper {
    padding-left: max(var(--px), calc((100% - var(--content-width)) / 2 + var(--px)));
  }

  .policy-card-top {
    height: auto;
    min-height: 240px;
    padding: 28px;
  }

  .policy-card-category { font-size: 16px; }
  .policy-card-title { font-size: 20px; }
  .policy-card-more { font-size: 14px; }
  .about-cred-list { padding-left: 14px; }
  .about-card-positions-box ul { padding-left: 14px; }
  .about-card { gap: 16px; }
}

/* ═════════════════════════════════════
   MOBILE  ~ 767px
═════════════════════════════════════ */
@media (max-width: 767px) {
  .slogan-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--px) 220px;
    gap: 28px;
    min-height: 0;
  }

  .slogan-heading {
    font-size: 28px;
    line-height: 1.45;
  }

  .vision-card {
    flex: none;
    width: 100%;
    height: 240px;
  }

  .vision-card-title { font-size: 18px; }
  .vision-card-label { font-size: 11px; }
  .vision-slide-content { bottom: 46px; left: 20px; right: 20px; gap: 4px; }
  .vision-dots { bottom: 20px; left: 20px; }

  .policy-section {
    background: transparent;
    padding: 28px 0 80px;
    margin-top: -180px;
  }

  .policy-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }

  .policy-intro-text { font-size: 18px; }

  .policy-cards-wrapper {
    padding: 0 var(--px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .policy-cards-wrapper::-webkit-scrollbar { display: none; }

  .policy-cards {
    padding: 0;
    gap: 16px;
    touch-action: pan-x;
    transform: none !important;
    transition: none !important;
  }

  .policy-card {
    flex: 0 0 calc(100vw - 2 * var(--px));
    scroll-snap-align: start;
  }

.policy-card-top {
    height: auto;
    min-height: 200px;
    padding: 24px;
  }

  .policy-card-category { font-size: 15px; }
  .policy-card-title { font-size: 18px; }
  .policy-card-more { font-size: 14px; }
  .policy-card-image { height: 160px; }

  .policy-slider-area {
    padding-bottom: 60px;
  }
  .policy-mob-btn {
    display: flex;
    position: absolute;
    bottom: 0;
    top: auto;
    transform: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.2s;
  }
  .policy-mob-btn.prev { left: calc(50% - 72px); opacity: 0.5; }
  .policy-mob-btn.next { right: calc(50% - 72px); }
  .policy-mob-btn img { width: 20px; height: 20px; }

  .policy-mob-counter {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-600);
    z-index: 10;
    white-space: nowrap;
  }

  .policy-nav { display: none; }
}
