/* ============================================================
 * COMMON
 * ============================================================ */

/* hero-sub
  ─────────────────────────────────────────── */
.sv {
  --sv-height: 850px;
  min-height: var(--sv-height);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;

  color: #fff;

  position: relative;
  z-index: 1;
}

.sv-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sv-title h2 {
  font-size: 4.25rem;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sv-title p {
  position: relative;
  font-size: 1.25rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.sv-title p::after {
  content: "";
  position: absolute;
  top: calc(100% + 50px);
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100px;
  background-color: #fff;
}

/* hero-sub rep
  ─────────────────────────────────────────── */
@media screen and (max-width: 1280px) {
  .sv {
    --sv-height: 720px;
  }

  .sv-title h2 {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .sv {
    --sv-height: 620px;
    /* 모바일/태블릿에서 fixed 배경은 버벅이고 iOS 에선 깨진다 → scroll */
    background-attachment: scroll;
  }

  .sv-title h2 {
    font-size: 3rem;
  }

  .sv-title p {
    font-size: 1.125rem;
  }

  .sv-title p::after {
    top: calc(100% + 36px);
    height: 70px;
  }
}

@media screen and (max-width: 768px) {
  .sv {
    --sv-height: 520px;
  }

  .sv-title h2 {
    font-size: 2.5rem;
  }

  .sv-title p {
    font-size: 1rem;
  }

  .sv-title p::after {
    top: calc(100% + 28px);
    height: 54px;
  }
}

@media screen and (max-width: 480px) {
  .sv {
    --sv-height: 440px;
  }

  .sv-title h2 {
    font-size: 2rem;
  }

  .sv-title p {
    font-size: 0.9375rem;
  }

  .sv-title p::after {
    top: calc(100% + 22px);
    height: 42px;
  }
}

@media screen and (max-width: 360px) {
  .sv-title h2 {
    font-size: 1.75rem;
  }
}

/* hero-sub Background Image
  ─────────────────────────────────────────── */
.sv-tech {
  background-image: url(/assets/img/sub/sv-tech.jpg);
}

.sv-mater {
  background-image: url(/assets/img/sub/sv-mater.jpg);
}

.sv-about {
  background-image: url(/assets/img/sub/sv-about.jpg);
  background-position: top center;
}

.sv-business {
  background-image: url(/assets/img/sub/sv-business.jpg);
}

.sv-product {
  background-image: url(/assets/img/sub/sv-product.jpg);
}

.sv-career {
  background-image: url(/assets/img/sub/sv-career.jpg);
}

/* hero-sub-list
  ─────────────────────────────────────────── */
.sv-list {
  background-color: rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.sv-tech .sv-list {
  background-color: rgba(0, 0, 0, 0.4);
}

.sv-list .inner {
  display: flex;
  justify-content: center;
}

.sv-list li {
  max-width: 400px;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}

.sv-list li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.sv-list li.active {
  color: #002a71;
  background-color: #ffffff;
}

.sv-list li:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* sub page design set (title/space etc.)
  ─────────────────────────────────────────── */
.tit-section {
  text-align: center;
  padding-top: 100px;
}

.tit-section .txt {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #666666;
  margin-bottom: 26px;
}

.tit-section .tit {
  font-size: 3.25rem;
  font-weight: 700;
}

.tit-section .tit-l {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  opacity: 0;
  letter-spacing: 20px;
  transition: opacity 0.9s ease, letter-spacing 0.9s ease;
}

/* 화면에 들어오면 1회 등장 (JS가 .show 부착) */
.tit-section .tit-l.show {
  opacity: 1;
  letter-spacing: 0;
}

.tit-section .tit span,
.tit-section .tit-l span {
  color: #002a71;
}

.tit-section .desc {
  margin-top: 50px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #4d4d4d;
}


/* design set responsive
  ─────────────────────────────────────────── */
@media screen and (max-width: 1280px) {
  .tit-section {
    padding-top: 80px;
  }
  .tit-section .tit {
    font-size: 2.75rem;
  }
  .tit-section .tit-l {
    font-size: 3.25rem;
  }
}

@media screen and (max-width: 1024px) {
  .tit-section {
    padding-top: 70px;
  }
  .tit-section .txt {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .tit-section .tit {
    font-size: 2.5rem;
  }
  .tit-section .tit-l {
    font-size: 2.75rem;
  }
  .tit-section .desc {
    margin-top: 36px;
    font-size: 1.125rem;
  }
  /* hero-sub-list (탭 내비) */
  .sv-list li a {
    padding: 18px 0;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .tit-section {
    padding-top: 60px;
  }
  .tit-section .txt {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }
  .tit-section .tit {
    font-size: 2.125rem;
  }
  .tit-section .tit-l {
    font-size: 2.25rem;
    /* 등장 전 자간(20px)이 좁은 폭에서 넘치지 않게 */
    letter-spacing: 10px;
  }
  .tit-section .desc {
    margin-top: 28px;
    font-size: 1rem;
  }
  .sv-list li a {
    padding: 16px 0;
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 480px) {
  .tit-section {
    padding-top: 50px;
  }
  .tit-section .txt {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .tit-section .tit {
    font-size: 1.75rem;
  }
  .tit-section .tit-l {
    font-size: 1.75rem;
  }
  .tit-section .desc {
    margin-top: 24px;
    font-size: 0.9375rem;
  }
  .sv-list li a {
    padding: 14px 0;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 360px) {
  .tit-section .tit {
    font-size: 1.5rem;
  }
  .tit-section .tit-l {
    font-size: 1.5rem;
  }
}

/* ============================================================
 * Technology / Materials common
 * ============================================================ */
.tech-mater {
  position: relative;
  color: #fff;
  background-color: #000;
  overflow: hidden;
  /* 블러가 가장자리에서 번지는 걸 잘라 담는다 */
}

/* 테크놀로지 배경 이미지를 블러 처리해 뒤에 깐다.
   inset 음수 + 부모 overflow:hidden 으로 블러 번짐을 감춘다. */
.tech-mater::before {
  content: "";
  position: absolute;
  inset: -60px;
  z-index: 0;
  background: url(/assets/img/main/intro-bg-technology.jpg) center / cover no-repeat;
  filter: blur(14px);
}

/* 이미지 위 어두운 오버레이 (흰 글자 가독성 확보) */
.tech-mater::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

/* 콘텐츠는 배경/오버레이 위로 */
.tech-mater > * {
  position: relative;
  z-index: 1;
}

.tech-mater .tit-section {
  margin-bottom: 50px;
}

.tech-mater .tit-section .txt {
  color: #0073c2;
}

.tech-mater .tit-section .tit span {
  color: #ffffff;
  display: block;
  font-size: 0.7em;
  font-weight: 400;
}

.tech-mater .tit-section .desc {
  color: #ffffff;
}

/* tech list temp
  ─────────────────────────────────────────── */
.tech-list-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding-bottom: 200px;
}

.tech-list-img {
  flex: 1;
}

.tech-list-img img {
  width: 100%;
}

.tech-list {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.tech-list li {
  border-radius: 999px;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  min-height: 80px;
  font-size: 1.125rem;
  line-height: 1.1;
  margin-right: 40px;
  transition: all 0.3s;
  cursor: pointer;
}

.tech-list li span {
  font-size: 0.9em;
}

.tech-list li:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.tech-list li.active {
  background-color: rgba(255, 255, 255, 0.3);
}

/* 기본은 숨기고 active 한 개만 표시 */
.tech-content {
  display: none;
}

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

.tech-content img {
  width: 100%;
}

/* technology 서브 : 인트로에서 가져온 콘텐츠 보정
   (intro.css 를 함께 로드하되, 인트로 전용 위치값만 서브용으로 덮는다)
  ─────────────────────────────────────────── */
.tech-content-wrap {
  padding-bottom: 200px;
}

/* 항목별 제목/설명 : 인트로는 패널 위치용으로 min-height:200·padding-top:100 이지만
   서브에선 일반 제목 블록으로 (제목 → 콘텐츠 순서 그대로) */
.tech-mater .depth-in-tit {
  min-height: 0;
  padding-top: 0;
  gap: 14px;
  margin-bottom: 44px;
}

.tech-mater .depth-eyebrow {
  margin-bottom: 0;
}

/* 장치 구성 : 인트로는 위 패널과 겹치려고 margin-top:-300px 이지만 서브에선 정상 배치 */
.tech-mater .tech-plp-config {
  margin-top: 0;
  pointer-events: auto;
}

/* 나노물질 합성 : 인트로 하단 여백(200px)은 서브에선 content-wrap 이 담당 */
.tech-mater .tech-plp-synth ul {
  padding-bottom: 0;
}

/* Platform / 파우치 슬라이더 : 상단 여백만 정리 */
.tech-mater .tech-plp-platform,
.tech-mater .bat-pouch {
  margin-top: 0;
}

/* materials 서브 : 인트로 스와이퍼를 다크 섹션에 그대로 배치 */
.mat-sub-page {
  padding: 120px 20px;
}

.mat-sub-page .mat-stage {
  margin: 0 auto;
}

/* 소재 소제목 : 기술 페이지와 동일한 tit-section 사용(설명 줄 없음).
   섹션 상단 패딩(120px)이 있어 tit-section 자체 padding-top 은 0. */
.mat-sub-page .tit-section {
  padding-top: 0;
}

/* SIB HC 시리즈 슬라이드 : 서브 페이지 전용 보정 (메인 인트로엔 영향 없음).
   내용을 위로 올리고, 슬라이드 높이를 늘려 아래로 내려간 이미지가 잘리지 않게 한다. */
.mat-sub-page .sib-hc-series .grid {
  margin-top: 0;
  position: relative;
  top: -130px;
}
.mat-sub-page .mat-slide .swiper-slide {
  min-height: 750px;
}

/* SIB 뒤쪽 슬라이드 : 늘어난 높이로 내려간 내용을 위로 (라벨+내용 통째로).
   내용이 짧은 3번은 100px, 내용이 길어 이미 상단 근처인 4~6번은 잘리지 않게 40px만. */
.mat-sub-page .mat-sl:has(.sib-hc380-series) {
  position: relative;
  top: -100px;
}
.mat-sub-page .mat-sl:has(.sib-analysis),
.mat-sub-page .mat-sl:has(.sib-perf-compare),
.mat-sub-page .mat-sl:has(.sib-energy-density) {
  position: relative;
  top: -40px;
}

/* 상단 "Materials" 제목 (인트로 depth-3-title 과 동일 톤) */
.mat-sub-page .depth-3-title {
  text-align: center;
  margin-bottom: 60px;
}

.mat-sub-page .depth-3-title div {
  font-size: 3.75rem;
  font-weight: 800;
}

/* 페이지네이션(점) : 절대배치라 큰 슬라이드에서 내용을 가림 →
   슬라이더 '아래'로 흐르게 해서 항상 내용 밑에 오게 함 */
.mat-sub-page .mat-dots {
  position: static;
  margin-top: 30px;
}

/* technology 서브 스와이퍼(플랫폼/파우치) 페이지네이션 : 슬라이드 아래로
   (인트로에는 영향 없게 .tech-mater 로 스코프) */
.tech-mater .platform-dots,
.tech-mater .pouch-dots {
  position: static;
  margin-top: 40px;
}

/* 옆 슬라이드/내용이 절대 삐져나오지 않도록 강제 클램프 */
.mat-sub-page .mat-slide {
  overflow: hidden;
  max-width: 100%;
}
.mat-sub-page .mat-slide .swiper-slide {
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.mat-sub-page .mat-slide img {
  max-width: 100%;
  height: auto;
}

/* ── technology / materials 서브페이지 반응형 ── */
@media (max-width: 1024px) {
  .tech-content-wrap { padding-bottom: 120px; }
}

@media (max-width: 768px) {
  /* materials 서브 : 다크 섹션 여백·제목 축소 */
  .mat-sub-page { padding: 60px 16px; }
  .mat-sub-page .depth-3-title { margin-bottom: 32px; }
  .mat-sub-page .depth-3-title div { font-size: 2.4rem; }

  /* materials 서브 슬라이드 : autoHeight 라 각 슬라이드는 내용 높이만큼.
     mat-sub 위, 내용 바로 아래 자연 흐름 (가운데-빈공간 정렬은 불필요) */
  .mat-sub-page .mat-sl { justify-content: flex-start; gap: 18px; }

  /* technology 서브 : 하단 과여백 축소 */
  .tech-content-wrap { padding-bottom: 80px; }

  /* technology 서브 상단 제목 : 여백 축소 + desc 줄바꿈 자연스럽게 */
  .tech-mater .tit-section { margin-bottom: 30px; }
  .tech-mater .tit-section .desc br { display: none; }

  /* technology 서브 상단(이미지 + 탭 버튼) : 좌우 → 세로 스택, 탭 풀폭 */
  .tech-list-wrap {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px 60px;
  }
  .tech-content-wrap { padding-left: 16px; padding-right: 16px; }
  .tech-list { width: 100%; }
  .tech-list li {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    min-height: 56px;
    padding: 12px 16px;
    font-size: 1rem;
  }

  /* technology 서브 안쪽 스와이퍼(플랫폼/파우치) : 옆 슬라이드 삐짐 차단 */
  .tech-mater .platform-slide,
  .tech-mater .pouch-slide {
    overflow: hidden;
    max-width: 100%;
  }
  .tech-mater .platform-slide .swiper-slide,
  .tech-mater .pouch-slide .swiper-slide {
    max-width: 100%;
    overflow: hidden;
  }

  /* materials·technology 서브 화살표 : 내용 위에 겹쳐도 보이게 배경 + 축소 */
  .mat-sub-page .mat-prev,
  .mat-sub-page .mat-next,
  .tech-mater .platform-prev,
  .tech-mater .platform-next,
  .tech-mater .pouch-prev,
  .tech-mater .pouch-next {
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 480px) {
  .mat-sub-page { padding: 48px 12px; }
  .mat-sub-page .depth-3-title div { font-size: 2rem; }
}

/* ============================================================
 * ABOUT - vision.php
 * ============================================================ */
.vision-intro {
  /* 등장 애니메이션(자간 20px)에서 타이틀이 화면 밖으로 넓게 퍼졌다 좁아진다.
     좁은 해상도에서 줄바꿈되지 않고 바깥으로 나갔다 들어오도록 클립한다. */
  overflow: hidden;
}

.vision-intro .tit-section {
  margin-bottom: 100px;
}

.vision-intro .tit-section .tit-l {
  white-space: nowrap;
}

.vision-video {
  position: relative;
  z-index: 1;
}

.vision-video video {
  width: 100%;
}

.vision-video .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  text-align: center;
  word-break: keep-all;
  color: #ffffff;
}

.vision-video .content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.vision-video .content p {
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.vision-video .content div {
  font-size: 3rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.vision-greeting {
  position: relative;
  background-color: #f5f7f7;
  padding: 150px 0 200px;
}

.vision-greeting::after {
  content: "BEST VALUE INNOVATION";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1500px;
  font-size: 7.12rem;
  font-weight: 900;
  text-align: center;
  color: #ffffff;
}

.vision-greeting .content {
  display: flex;
  align-items: start;
  gap: 80px;
}

.greeting-text {
  flex: 1;
}

.greeting-text div {
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 50px;
}

.greeting-text div strong {
  font-size: 3.875rem;
  font-weight: 700;
}

.greeting-text div b {
  font-weight: 600;
}

.greeting-text p {
  font-size: 1.375rem;
  line-height: 1.5;
  word-break: keep-all;
  color: #4d4d4d;
}

.greeting-text p b {
  font-weight: 700;
}

.greeting-img {
  display: flex;
  align-items: start;
  gap: 30px;
}

.greeting-img div {
  border-radius: 40px;
  overflow: hidden;
}

.greeting-img div:last-child {
  margin-top: 130px;
}

.vision-value {
  padding: 150px 0;
}

.vision-value-tit {
  text-align: center;
  margin-bottom: 60px;
}

.vision-value-tit h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.vision-value-tit div {
  font-size: 3rem;
  font-weight: 600;
}

.vision-value .content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vision-value .content .row {
  grid-column: 1 / -1;
}

.vision-value .content img {
  width: 100%;
}

.vision-value .content li {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.vision-value-box {
  position: absolute;
  inset: 0;
  color: #ffffff;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
}

.vision-value-box span {
  align-self: flex-start;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 4px 18px;
  font-size: 1.125rem;
  font-weight: 300;
}

.vision-value-box div {
  margin-top: auto;
}

.vision-value-box h4 {
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.vision-value-box p {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 14px;
}

/* ABOUT - vision.php responsive
  ─────────────────────────────────────────── */
@media screen and (max-width: 1280px) {
  .vision-greeting {
    padding: 120px 0 160px;
  }
  .vision-greeting::after {
    font-size: 5.5rem;
  }
  .greeting-text div {
    font-size: 2.75rem;
  }
  .greeting-text div strong {
    font-size: 3.25rem;
  }
  .vision-value {
    padding: 120px 0;
  }
  .vision-value-tit div {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .vision-intro .tit-section {
    margin-bottom: 60px;
  }
  /* video 오버레이 문구 */
  .vision-video .content h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
  .vision-video .content p {
    font-size: 1.5rem;
  }
  .vision-video .content div {
    font-size: 2rem;
  }
  /* greeting: 좌우 → 세로 스택 */
  .vision-greeting {
    padding: 90px 0 120px;
    overflow: hidden; /* 워터마크(1500px)가 가로 스크롤 만들지 않게 */
  }
  .vision-greeting::after {
    font-size: 4rem;
  }
  .vision-greeting .content {
    flex-direction: column;
    gap: 50px;
  }
  .greeting-text div {
    font-size: 2.25rem;
    margin-bottom: 30px;
  }
  .greeting-text div strong {
    font-size: 2.75rem;
  }
  .greeting-text p {
    font-size: 1.125rem;
  }
  .greeting-img div:last-child {
    margin-top: 60px;
  }
  /* 2장이 나란히: 뷰포트 넘지 않게 폭 분배 */
  .greeting-img div {
    flex: 1 1 0;
    min-width: 0;
  }
  .greeting-img div img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* value */
  .vision-value {
    padding: 90px 0;
  }
  .vision-value-tit {
    margin-bottom: 40px;
  }
  .vision-value-tit div {
    font-size: 2.25rem;
  }
  /* 해상도 줄면 카드 래디어스 축소 */
  .vision-value .content li,
  .greeting-img div {
    border-radius: 28px;
  }
  .vision-value-box {
    padding: 32px 36px;
  }
}

@media screen and (max-width: 768px) {
  .vision-intro .tit-section {
    margin-bottom: 40px;
  }
  .vision-video .content h3 {
    font-size: 1.125rem;
    margin-bottom: 14px;
  }
  .vision-video .content p {
    font-size: 1.125rem;
  }
  .vision-video .content div {
    font-size: 1.5rem;
  }
  .vision-greeting {
    padding: 70px 0 90px;
  }
  .vision-greeting::after {
    font-size: 2.75rem;
    bottom: -18px;
  }
  .vision-greeting .content {
    gap: 40px;
  }
  .greeting-text div {
    font-size: 1.875rem;
    margin-bottom: 24px;
  }
  .greeting-text div strong {
    font-size: 2.25rem;
  }
  .greeting-text p {
    font-size: 1rem;
  }
  /* greeting 이미지 2장: 나란히 → 세로 스택 */
  .greeting-img {
    flex-direction: column;
    gap: 16px;
  }
  .greeting-img div {
    width: 100%;
  }
  .greeting-img div:last-child {
    margin-top: 0;
  }
  /* value: 2열 → 1열 */
  .vision-value {
    padding: 70px 0;
  }
  .vision-value-tit h3 {
    font-size: 1.375rem;
  }
  .vision-value-tit div {
    font-size: 1.875rem;
  }
  .vision-value .content {
    grid-template-columns: 1fr;
  }
  /* 1열이 되면 3개 카드 크기(높이 포함) 동일하게.
     이미지 비율이 제각각이라 카드에 고정 비율을 주고 cover 로 채운다. */
  .vision-value .content li {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }
  .greeting-img div {
    border-radius: 20px;
  }
  .vision-value .content img {
    height: 100%;
    object-fit: cover;
  }
  .vision-value-box {
    padding: 28px 30px;
  }
  .vision-value-box span {
    font-size: 1rem;
  }
  .vision-value-box h4 {
    font-size: 1.375rem;
  }
  .vision-value-box p {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 480px) {
  /* video 오버레이: 400 이하에서 글자 빠져나가지 않게 한 단계 더 축소 */
  .vision-video .content {
    padding: 0 18px;
  }
  .vision-video .content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .vision-video .content p {
    font-size: 1rem;
  }
  .vision-video .content div {
    font-size: 1.25rem;
  }
  .vision-greeting::after {
    font-size: 2rem;
  }
  .greeting-text div {
    font-size: 1.625rem;
  }
  .greeting-text div strong {
    font-size: 1.875rem;
  }
  .vision-value-tit div {
    font-size: 1.625rem;
  }
  /* 카드 래디어스 추가 축소 */
  .vision-value .content li,
  .greeting-img div {
    border-radius: 16px;
  }
  .vision-value-box {
    padding: 22px 22px;
  }
  .vision-value-box h4 {
    font-size: 1.25rem;
  }
  .vision-value-box p {
    font-size: 1rem;
  }
}

/* ============================================================
 * ABOUT - history.php
 * ============================================================ */
.history {
  padding-bottom: 150px;
}

.history .tit-section {
  margin-bottom: 100px;
}

.history .content {
  position: relative;
}

.history .content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  top: 30px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: #e5e5e5;
}

/* 스크롤 진행에 따라 위에서부터 파란색으로 차오르는 선.
   높이는 JS가 --history-fill 로 채워 준다. */
.history .content::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: var(--history-fill, 0px);
  max-height: calc(100% - 60px);
  background-color: #002a71;
}

/* 채움선이 지나간 연도 마디의 동그라미는 회색 테두리 → 파란색 */
.history-img.is-filled span::after {
  border-color: #002a71;
}

.history-wrap {
  display: flex;
  justify-content: space-between;
  gap: 150px;
}

.history-wrap.reverse {
  flex-direction: row-reverse;
}

.history-img,
.history-list {
  flex: 1;
  padding-bottom: 200px;
}

.history-img {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-img span {
  position: relative;
  font-size: 2.125rem;
  font-weight: 800;
  color: #002a71;
}

.history-img span::after {
  content: "";
  position: absolute;
  right: -93px;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 10px solid #e5e5e5;
  background-color: #fff;
  transition: border-color 0.5s ease;
}

.history-wrap.reverse .history-img span::after {
  left: -93px;
}

.history-img p {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.history-img div {
  border-radius: 40px;
  overflow: hidden;
}

.history-img img {
  width: 100%;
}

.history-year {
  margin-bottom: 80px;
}

.history-year .year {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 26px;
}

.history-month {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.history-month li {
  display: flex;
  gap: 10px;
  font-size: 1.375rem;
}

.history-month li span {
  min-width: 70px;
  font-weight: 800;
}

.history-month li p {
  position: relative;
  padding-left: 16px;
}

.history-month li p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #002a71;
}

/* ABOUT - history.php responsive
   동그라미가 중앙선에 붙어야 하므로 컬럼 간격(gap)을 줄일 때
   점 위치(right/left)도 같이 줄인다. |offset| = gap/2 + 18
  ─────────────────────────────────────────── */
@media screen and (max-width: 1280px) {
  .history .tit-section {
    margin-bottom: 70px;
  }
  .history-wrap {
    gap: 100px;
  }
  .history-img,
  .history-list {
    padding-bottom: 140px;
  }
  .history-img span {
    font-size: 1.875rem;
  }
  .history-img span::after {
    right: -68px;
  }
  .history-wrap.reverse .history-img span::after {
    left: -68px;
  }
  .history-img p {
    font-size: 2.5rem;
  }
  .history-year {
    margin-bottom: 60px;
  }
  .history-year .year {
    font-size: 2.5rem;
  }
  .history-month li {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1024px) {
  .history {
    padding-bottom: 100px;
  }
  .history-wrap {
    gap: 60px;
  }
  .history-img,
  .history-list {
    padding-bottom: 100px;
  }
  .history-img span {
    font-size: 1.625rem;
  }
  .history-img span::after {
    right: -48px;
    border-width: 8px;
  }
  .history-wrap.reverse .history-img span::after {
    left: -48px;
  }
  .history-img p {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .history-img div {
    border-radius: 28px;
  }
  .history-year {
    margin-bottom: 48px;
  }
  .history-year .year {
    font-size: 2.125rem;
    margin-bottom: 20px;
  }
  .history-month {
    gap: 16px;
  }
  .history-month li {
    font-size: 1.125rem;
  }
  .history-month li span {
    min-width: 56px;
  }
}

/* 768 이하: 2열 → 1열. 가운데 있던 선을 왼쪽으로 옮기고
   img → list 순서로 세로로 쌓는다. 동그라미도 왼쪽 선 위로. */
@media screen and (max-width: 768px) {
  .history .tit-section {
    margin-bottom: 50px;
  }
  /* 선/채움선을 왼쪽 끝으로 */
  .history .content::before,
  .history .content::after {
    left: 20px;
    transform: none;
  }
  .history-wrap,
  .history-wrap.reverse {
    flex-direction: column;
    gap: 30px;
    padding-left: 50px;   /* 왼쪽 선 공간 확보 */
  }
  .history-img,
  .history-list {
    flex: none;
    padding-bottom: 0;
  }
  .history-img {
    padding-bottom: 36px;
  }
  .history-list {
    padding-bottom: 80px;
  }
  /* 동그라미: 오른쪽/왼쪽 상관없이 왼쪽 선 위로 통일 */
  .history-img span::after,
  .history-wrap.reverse .history-img span::after {
    right: auto;
    left: -45px;
    border-width: 8px;
  }
  .history-img span {
    font-size: 1.5rem;
  }
  .history-img p {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
  .history-img div {
    border-radius: 20px;
  }
  .history-year {
    margin-bottom: 40px;
  }
  .history-year .year {
    font-size: 1.875rem;
    margin-bottom: 16px;
  }
  .history-month li {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 480px) {
  .history-wrap,
  .history-wrap.reverse {
    padding-left: 42px;
    gap: 24px;
  }
  .history-img span::after,
  .history-wrap.reverse .history-img span::after {
    left: -37px;
  }
  .history-img span {
    font-size: 1.375rem;
  }
  .history-img p {
    font-size: 1.5rem;
  }
  .history-year .year {
    font-size: 1.625rem;
  }
  .history-month li {
    font-size: 1rem;
  }
  .history-month li span {
    min-width: 48px;
  }
}

/* ============================================================
 * ABOUT - rnd.php
 * ============================================================ */
.rnd {
  padding-bottom: 150px;
}

.rnd .tit-section {
  margin-bottom: 50px;
}

.rnd-tab {
  display: flex;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}

.rnd-tab li {
  flex: 1;
  color: #000;
  background-color: #eeeeee;
  border-radius: 10px;
  font-size: 1.125rem;
}

.rnd-tab li.active {
  color: #fff;
  background-color: #002a71;
  font-weight: 500;
}

.rnd-tab a {
  display: block;
  padding: 16px 0;
}

.rnd-table-wrap {
  max-width: 1250px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.rnd-table-wrap:last-child {
  margin-bottom: 0;
}

.rnd-table-wrap h3 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.rnd-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 3px solid #002a71;
  font-size: 1.125rem;
  text-align: center;
}

.rnd-table th,
.rnd-table td {
  height: 65px;
  /* 콘텐츠 영역의 최소 높이 (상황에 맞춰 40~50px 조정) */
  vertical-align: middle;
}

.rnd-table th {
  color: #000000;
  background-color: #f7f7f7;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}

.rnd-table td {
  color: #808080;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}

.rnd-table th:last-child,
.rnd-table td:last-child {
  border-right: none;
}

/* 첫 번째 열(번호) 너비 지정 */
.rnd-table th:nth-child(1),
.rnd-table td:nth-child(1) {
  width: 60px;
  color: #000000;
}

.rnd-projects th:nth-child(1),
.rnd-projects td:nth-child(1) {
  width: 180px;
}

.rnd-projects td:nth-child(1) {
  color: #808080;
}

/* 두 번째, 세 번째 열 너비 지정 */
.rnd-table th:nth-child(2),
.rnd-table td:nth-child(2),
.rnd-table th:nth-child(3),
.rnd-table td:nth-child(3) {
  min-width: 180px;
}

/* 표가 좁은 화면보다 넓으면 이 래퍼 안에서만 가로 스크롤(제목 h3 는 고정).
   데스크톱에선 표가 다 들어와 스크롤바가 생기지 않는다. */
.rnd-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ABOUT - rnd.php responsive
  ─────────────────────────────────────────── */
@media screen and (max-width: 1280px) {
  .rnd-tab {
    margin-bottom: 70px;
  }
  .rnd-table-wrap {
    margin-bottom: 80px;
  }
  .rnd-table-wrap h3 {
    font-size: 1.875rem;
    margin-bottom: 24px;
  }
  .rnd-table {
    font-size: 1rem;
  }
  .rnd-table th {
    font-size: 1.0625rem;
  }
  .rnd-table th,
  .rnd-table td {
    height: 58px;
  }
}

@media screen and (max-width: 1024px) {
  .rnd {
    padding-bottom: 100px;
  }
  .rnd-tab {
    margin-bottom: 60px;
  }
  .rnd-tab li {
    font-size: 1rem;
  }
  .rnd-table-wrap h3 {
    font-size: 1.625rem;
  }
  .rnd-table {
    font-size: 0.9375rem;
  }
  .rnd-table th,
  .rnd-table td {
    height: 52px;
  }
  .rnd-table th:nth-child(2),
  .rnd-table td:nth-child(2),
  .rnd-table th:nth-child(3),
  .rnd-table td:nth-child(3) {
    min-width: 150px;
  }
  /* 국책과제 표: 일시 열 축소 */
  .rnd-projects th:nth-child(1),
  .rnd-projects td:nth-child(1) {
    width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .rnd-tab {
    margin-bottom: 40px;
  }
  .rnd-tab a {
    padding: 13px 0;
  }
  .rnd-table-wrap {
    margin-bottom: 56px;
  }
  .rnd-table-wrap h3 {
    font-size: 1.375rem;
    margin-bottom: 18px;
  }
  /* 표는 최소 폭을 유지하고, 넘치는 만큼 래퍼가 가로 스크롤 */
  .rnd-table {
    min-width: 620px;
    font-size: 0.875rem;
  }
  .rnd-table th,
  .rnd-table td {
    height: 46px;
    padding: 8px 12px;
  }
  .rnd-table th {
    font-size: 0.9375rem;
  }
  /* 국책과제 표는 2열(일시+긴 문장)이라 가로 스크롤 대신
     폭에 맞춰 줄바꿈되게 min-width 를 푼다. */
  .rnd-table.rnd-projects {
    min-width: 0;
  }
  .rnd-projects th:nth-child(1),
  .rnd-projects td:nth-child(1) {
    width: 64px;
  }
}

@media screen and (max-width: 480px) {
  .rnd-projects th:nth-child(1),
  .rnd-projects td:nth-child(1) {
    width: 52px;
  }
}

@media screen and (max-width: 480px) {
  .rnd-table-wrap h3 {
    font-size: 1.25rem;
  }
  .rnd-table {
    min-width: 560px;
    font-size: 0.8125rem;
  }
  .rnd-table th,
  .rnd-table td {
    padding: 8px 10px;
  }
}

/* ============================================================
 * ABOUT - location.php
 * ============================================================ */
.location {
  padding-bottom: 150px;
}

.location .tit-section {
  margin-bottom: 50px;
}

.location-map {
  margin-bottom: 130px;
}

.location-map iframe {
  width: 100%;
  height: 600px;
  border: 0;
}

.location-logo img {
  height: 40px;
}

.location-list {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.location-list li {
  flex: 1;
  padding: 40px 30px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  min-height: 250px;
}

.location-list li:last-child {
  border-right: none;
}

.location-list div {
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.location-list img {
  width: 40px;
}

.location-list p {
  margin-top: 50px;
  font-size: 1.5rem;
  color: #4d4d4d;
}

/* ABOUT - location.php responsive
  ─────────────────────────────────────────── */
@media screen and (max-width: 1280px) {
  .location {
    padding-bottom: 120px;
  }
  .location-map {
    margin-bottom: 90px;
  }
  .location-map iframe {
    height: 460px;
  }
  .location-list li {
    padding: 36px 24px;
    min-height: 0;
  }
  .location-list div {
    font-size: 1.75rem;
  }
  .location-list p {
    margin-top: 36px;
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 1024px) {
  .location {
    padding-bottom: 100px;
  }
  .location-map {
    margin-bottom: 70px;
  }
  .location-map iframe {
    height: 400px;
  }
  .location-logo img {
    height: 34px;
  }
  .location-list li {
    padding: 30px 20px;
  }
  .location-list div {
    font-size: 1.5rem;
  }
  .location-list img {
    width: 34px;
  }
  .location-list p {
    margin-top: 28px;
    font-size: 1.25rem;
  }
}

/* 768 이하: 정보 3열 → 세로 스택 */
@media screen and (max-width: 768px) {
  .location-map {
    margin-bottom: 50px;
  }
  .location-map iframe {
    height: 340px;
  }
  .location-list {
    flex-direction: column;
    margin-top: 20px;
  }
  .location-list li {
    padding: 22px 4px;
    border-right: none;   /* 세로 구분선 제거, 위 구분선만 유지 */
  }
  /* 라벨+아이콘: 양끝 배치 → 라벨 옆에 붙임 */
  .location-list div {
    justify-content: flex-start;
    gap: 10px;
    font-size: 1.375rem;
  }
  .location-list img {
    width: 28px;
  }
  .location-list p {
    margin-top: 12px;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 480px) {
  .location-map iframe {
    height: 280px;
  }
  .location-list div {
    font-size: 1.25rem;
  }
  .location-list p {
    font-size: 1.0625rem;
  }
}

/* ============================================================
 * BUSINESS - business.php
 * ============================================================ */
.business-category-wrap {
  padding-bottom: 200px;
  /* tit-l 등장 애니메이션(자간)이 좁은 화면에서 줄바꿈되지 않고
     화면 밖으로 나갔다 좁아지도록 클립 (vision 과 동일) */
  overflow: hidden;
}

.business-category-wrap .tit-section {
  margin-bottom: 100px;
}

.business-category-wrap .tit-l {
  white-space: nowrap;
}

.business-category {
  display: flex;
}

.business-category li {
  max-height: 850px;
  flex: 1;
  overflow: hidden;
  position: relative;
}

.business-category li a {
  display: block;
}

.business-category li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s;
}

.business-category li:hover img {
  transform: scale(1.08);
}

.business-category-text {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.business-category-text span {
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid #fff;
  padding: 4px 20px;
}

.business-category-text h3 {
  font-size: 2.25rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 22px;
}

.business-category-text p {
  font-size: 1.5rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.business-category-text h3,
.business-category-text p {
  transition: transform 0.3s;
}

.business-category li:hover .business-category-text h3,
.business-category li:hover .business-category-text p {
  transform: translateY(-6px);
}

/* BUSINESS - business.php (랜딩) responsive
  ─────────────────────────────────────────── */
@media screen and (max-width: 1280px) {
  .business-category-wrap {
    padding-bottom: 150px;
  }
  .business-category-text {
    bottom: 56px;
  }
  .business-category-text h3 {
    font-size: 1.875rem;
    margin-top: 18px;
  }
  .business-category-text p {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 1024px) {
  .business-category-wrap {
    padding-bottom: 120px;
  }
  .business-category-wrap .tit-section {
    margin-bottom: 70px;
  }
  .business-category li {
    max-height: 620px;
  }
  .business-category-text {
    bottom: 40px;
  }
  .business-category-text h3 {
    font-size: 1.625rem;
  }
  .business-category-text p {
    font-size: 1.25rem;
  }
}

/* 768 이하: 3열 이미지 → 세로 스택 */
@media screen and (max-width: 768px) {
  .business-category-wrap {
    padding-bottom: 90px;
  }
  .business-category-wrap .tit-section {
    margin-bottom: 50px;
  }
  .business-category {
    flex-direction: column;
  }
  .business-category li {
    flex: none;          /* 세로 스택에선 flex-basis:0 이 height 를 무시하므로 해제 */
    max-height: none;
    height: 260px;
  }
  .business-category li a,
  .business-category li a img {
    height: 100%;
  }
  .business-category-text {
    bottom: 28px;
  }
  .business-category-text h3 {
    font-size: 1.5rem;
    margin-top: 14px;
  }
  .business-category-text p {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 480px) {
  .business-category li {
    height: 220px;
  }
  .business-category-text h3 {
    font-size: 1.375rem;
  }
  .business-category-text p {
    font-size: 1.0625rem;
  }
}

/* ============================================================
 * BUSINESS - business
 * ============================================================ */
/* busi-intro: tit-l 등장 애니메이션이 좁은 화면에서 줄바꿈되지 않게
   (vision / business 랜딩과 동일 처리) */
.busi-intro {
  overflow: hidden;
}

.busi-intro .tit-l {
  white-space: nowrap;
}

.busi .tit-section {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
}

.busi .tit-section > div {
  width: 22%;
  text-align: left;
  padding-left: 50px;
}

.busi .tit-section .txt {
  margin-bottom: 0;
  font-size: 1.25rem;
  color: #002a71;
  font-weight: 600;
}

.busi .tit-section .desc {
  margin-top: 0px;
  text-align: left;
  font-size: 1.375rem;
}

.busi .tit-section .desc span {
  color: #002a71;
  font-weight: 600;
}

.busi .visual-img {
  position: relative;
}

.busi .visual-img img {
  width: 100%;
  display: block;
}

/* 이미지 ~ 핵심소재 제목 연결선
   이미지 위(어두움)에서는 흰 선, 흰 배경으로 내려오면 검은 선 + 점.
   이미지 끝(= .busi-core 시작)에서 두 구간이 맞닿는다. */
.busi .visual-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 70px;
  background-color: #ffffff;
}

.busi-core {
  position: relative;
}

/* 흰 배경 위 검은 선 */
.busi-core::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background-color: #111111;
}

/* 선 끝의 점 */
.busi-core::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #111111;
}

.busi-core .tit-section {
  padding-top: 150px;
  padding-bottom: 30px;
}

.busi-core .tit-section .txt {
  margin-bottom: 4px;
  color: #002a71;
  font-size: 1.375rem;
  font-weight: 600;
}

.busicore-grid {
  display: flex;
  margin-top: 50px;
}

.busicore-video {
  width: 50%;
  overflow: hidden;
}

.busicore-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.busicore-text {
  flex: 1;
  padding: 70px 90px;
}

.busicore-text h3 {
  font-size: 3rem;
  font-weight: 700;
}

.busicore-text span {
  color: #4d4d4d;
  font-size: 1.625rem;
}

.busicore-text p {
  color: #4d4d4d;
  margin-top: 30px;
  font-size: 1.375rem;
  line-height: 1.5;
}

.busi-card {
  padding: 50px 0 200px;
}

.busi-card .tit-section {
  margin-bottom: 50px;
}

.busi-card .tit-section .txt {
  margin-bottom: 4px;
  color: #002a71;
  font-size: 1.375rem;
  font-weight: 600;
}

.busi-card-video {
  height: 500px;
  overflow: hidden;
  margin-bottom: 120px;
}

.busi-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.busi-tab {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 70px;
}

.busi-tab li {
  flex: 1;
  max-width: 250px;
  color: #808080;
  background-color: #f2f2f2;
  border-radius: 10px;
  font-size: 1.25rem;
  padding: 16px 0;
  cursor: pointer;
}

.busi-tab li.active {
  color: #fff;
  background-color: #002a71;
  font-weight: 500;
}

.busi-article {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.busi-article.active {
  display: grid;
  animation: busiFadeUp 0.5s ease both;
}

@keyframes busiFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.busi-artimg {
  border-radius: 30px;
  overflow: hidden;
  /* 탭마다 원본 이미지 비율이 달라 높이가 튀던 것을 고정 비율로 통일.
     ship(800x510)만 비율이 달라서, cover 로 채워 잘라 맞춘다. */
  aspect-ratio: 1385 / 585;
  align-self: start;
}

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

.busi-artxt {
  padding: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.busi-artxt span {
  font-size: 1.5rem;
  font-weight: 500;
  color: #002a71;
}

.busi-artxt h3 {
  font-size: 2.25rem;
  font-weight: 600;
}

.busi-artxt ul li {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
  word-break: keep-all;
  padding-left: 26px;
  color: #4d4d4d;
}

.busi-artxt ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 2px solid #002a71;
}

/* BUSINESS - business 상세(.busi*) responsive
  ─────────────────────────────────────────── */
@media screen and (max-width: 1280px) {
  .busi .tit-section > div {
    width: 26%;
    padding-left: 0;
  }
  .busi .tit-section .desc {
    font-size: 1.25rem;
  }
  .busicore-text {
    padding: 56px 60px;
  }
  .busicore-text h3 {
    font-size: 2.5rem;
  }
  .busicore-text span {
    font-size: 1.375rem;
  }
  .busicore-text p {
    font-size: 1.25rem;
  }
  .busi-core .tit-section {
    padding-top: 120px;
  }
  .busi-card-video {
    height: 420px;
    margin-bottom: 90px;
  }
  .busi-artxt h3 {
    font-size: 2rem;
  }
  .busi-artxt span,
  .busi-artxt ul li {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 1024px) {
  .busi .tit-section {
    margin-bottom: 50px;
  }
  .busi .tit-section > div {
    width: 32%;
  }
  .busi .tit-section .desc {
    font-size: 1.125rem;
  }
  .busicore-grid {
    margin-top: 36px;
  }
  .busicore-text {
    padding: 40px;
  }
  .busicore-text h3 {
    font-size: 2rem;
  }
  .busicore-text span {
    font-size: 1.25rem;
  }
  .busicore-text p {
    font-size: 1.125rem;
    margin-top: 20px;
  }
  .busi-core .tit-section {
    padding-top: 100px;
  }
  .busi-card {
    padding-bottom: 120px;
  }
  .busi-card-video {
    height: 340px;
    margin-bottom: 70px;
  }
  .busi-tab {
    margin-bottom: 50px;
  }
  .busi-tab li {
    font-size: 1.125rem;
    padding: 13px 0;
  }
  .busi-article {
    gap: 30px;
  }
  .busi-artxt h3 {
    font-size: 1.75rem;
  }
  .busi-artxt span,
  .busi-artxt ul li {
    font-size: 1.25rem;
  }
}

/* 768 이하: 좌우 배치들을 세로 스택으로 */
@media screen and (max-width: 768px) {
  /* 상단: 좌 타이틀 + 우 설명 → 세로 스택 */
  .busi .tit-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
  }
  .busi .tit-section > div {
    width: 100%;
  }
  .busi .tit-section .desc {
    font-size: 1.0625rem;
  }
  /* 시안용 강제 줄바꿈(<br>)은 좁은 화면에서 자연스럽게 흐르도록 제거 */
  .busi .tit-section .desc br,
  .busicore-text p br,
  .busi-artxt ul li br {
    display: none;
  }
  .busi .visual-img::after {
    height: 50px;
  }
  /* core: 영상+텍스트 좌우 → 세로 스택(영상 위) */
  .busi-core::before {
    height: 60px;
  }
  .busi-core::after {
    top: 60px;
  }
  .busi-core .tit-section {
    padding-top: 80px;
  }
  .busicore-grid {
    flex-direction: column;
    margin-top: 28px;
  }
  .busicore-video {
    width: 100%;
    height: 240px;
    order: -1;
  }
  .busicore-text {
    padding: 28px 20px;
  }
  .busicore-text h3 {
    font-size: 1.75rem;
  }
  .busicore-text span {
    font-size: 1.125rem;
  }
  .busicore-text p {
    font-size: 1.0625rem;
    margin-top: 16px;
  }
  /* card */
  .busi-card {
    padding: 40px 0 90px;
  }
  .busi-card-video {
    height: 240px;
    margin-bottom: 50px;
  }
  /* 탭 4개: 넘치면 2줄로 */
  .busi-tab {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  .busi-tab li {
    flex: 1 1 40%;
    max-width: none;
    font-size: 1rem;
    padding: 12px 0;
  }
  /* article 이미지+텍스트 2열 → 세로 스택 */
  .busi-article {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .busi-artimg {
    border-radius: 20px;
  }
  .busi-artxt {
    padding: 6px 0 0;
    gap: 12px;
  }
  .busi-artxt h3 {
    font-size: 1.5rem;
  }
  .busi-artxt span {
    font-size: 1.125rem;
  }
  .busi-artxt ul li {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 480px) {
  .busicore-video {
    height: 200px;
  }
  .busicore-text h3 {
    font-size: 1.5rem;
  }
  .busi-card-video {
    height: 190px;
  }
  .busi-tab li {
    flex-basis: 46%;
  }
  .busi-artxt h3 {
    font-size: 1.375rem;
  }
}

/* ============================================================
 * PRODUCT - Product common
 * ============================================================ */
.product .tit-section {
  margin-bottom: 50px;
}

.product .tit-section .txt {
  color: #002a71;
}

/* ── product-battery.php ───────────────────────────────
   제품 개요(사진+스펙) / Point 슬라이더 / 제품정보(분해도) */

/* 제품 개요 */
.pb-overview {}

.pb-overview .inner {
  position: relative;
}

.pb-overview .inner::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  height: 350px;
  background-color: #f5f6f8;
}

.pb-inquiry {
  position: absolute;
  z-index: 2;
  top: 60px;
  right: 60px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  width: 170px;
  padding: 20px;
  aspect-ratio: 1 / 1;
  border: 2px solid #002a71;
  color: #002a71;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  transition: all .3s;
}

.pb-inquiry svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-self: end;
  fill: currentColor;
}

.pb-inquiry:hover {
  background-color: #002a71;
  color: #ffffff;
}

.pb-photo {
  text-align: center;
  padding: 20px 0;
}

.pb-photo img {
  height: 550px;
  width: auto;
  max-width: 100%;
}

/* 스펙 */
.pb-spec {
  display: flex;
}

.pb-spec > li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0px 12px;
  border-left: 1px solid #666666;
}

.pb-spec > li:first-child {
  border-left: 0;
}

.pb-spec__ico {
  width: 60px;
  flex-shrink: 0;
}

.pb-spec__txt strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #002a71;
  margin-bottom: 7px;
}

.pb-spec__txt span {
  font-size: 1rem;
  line-height: 1.35;
  color: #666666;
}

.pb-spec__txt em {
  display: block;
  font-style: normal;
  font-size: 0.875rem;
}

/* Point 슬라이더 */
.pb-point {
  margin-top: 150px;
  position: relative;
}

.pb-point-slide {
  overflow: hidden;
}

.pb-point .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.pb-point .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 가운데(활성) 외 슬라이드는 어둡게 */
.pb-point .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 1;
  transition: opacity 0.45s ease;
}

.pb-point .swiper-slide-active::after {
  opacity: 0;
}

.pb-point__cap {
  position: absolute;
  inset: 0;
  z-index: 1;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 6px;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.pb-point .swiper-slide-active .pb-point__cap {
  opacity: 1;
}

.pb-point__no {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  background-color: rgba(0, 73, 109, 0.7);
  padding: 4px 12px;
  border-radius: 99px;
}

.pb-point__tit {
  font-size: 1.875rem;
  font-weight: 700;
}

.pb-point__desc {
  font-size: 1.125rem;
  line-height: 1.5;
}

.pb-point__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: color 0.2s, background-color 0.2s;
}

.pb-point__nav:hover {
  background-color: #002a71;
  color: #ffffff;
}

.pb-point__nav svg {
  width: 34px;
  height: 34px;
}

.pb-point__prev {
  left: 12%;
}

.pb-point__next {
  right: 12%;
}

/* 제품정보 */
.pb-info {
  margin-top: 150px;
}

.pb-info .sec-tit {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.pb-info-list-wrap {
  background-color: #f7f7f7;
}

.pb-info-list > li {
  padding: 80px 0;
  border-top: 1px solid #999999;
  /* li 에 AOS transform 이 걸려 쌓임맥락이 생기면 이미지의 mix-blend-mode(곱하기)가
     뒤 wrap 의 회색과 못 섞인다. li 자체에 같은 회색을 깔아 곱하기 대상이 되게 한다. */
  background-color: #f7f7f7;
}

.pb-info-list > li:first-child {
  border-top: 0;
}

.pb-info-list img {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.pb-info-table-wrap {
  margin-bottom: 150px;
}

.pb-info-table-wrap .inner {
  display: flex;
  gap: 70px;
}

.pb-info-table {
  flex: 1;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #cccccc;

  font-size: 1.375rem;
}

.pb-info-table__col-head {
  width: 25%;
}

.pb-info-table th,
.pb-info-table td {
  padding: 10px 20px;
  text-align: center;
  line-height: 1.4;
  border: 1px solid #e5e7eb;
}

/* 헤더 행 */
.pb-info-table thead th {
  background-color: #002a71;
  border-color: #002a71;
  color: #ffffff;
  font-weight: 700;
}

/* 구분 열 */
.pb-info-table tbody th {
  background-color: #f7f7f7;
  font-weight: 700;
}

/* 내용 열 */
.pb-info-table tbody td {
  color: #808080;
}

/* 제품 데이터
  ─────────────────────────────────────────── */
.pb-data {
  background-color: #f7f7f7;
  padding: 100px 0;
}

.pb-data .sec-tit {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.pb-data-tab {
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
}

/* 탭 버튼 */
.pb-data-tab__nav {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}

.pb-data-tab__nav li {
  flex: 1;
}

.pb-data-tab__nav li + li {
  border-left: 1px solid #e5e7eb;
}

.pb-data-tab__nav button {
  display: block;
  width: 100%;
  padding: 18px 10px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  transition: background-color 0.2s, color 0.2s;
}

.pb-data-tab__nav li.active button {
  background-color: #002a71;
  color: #ffffff;
}

/* 패널 (기본 숨김, active 한 개만 표시) */
.pb-data-panel {
  display: none;
  grid-template-columns: 1fr 440px;
}

.pb-data-panel.active {
  display: grid;
}

.pb-data-panel__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 40px;
}

.pb-data-panel__figure img {
  max-width: 100%;
}

.pb-data-panel__info {
  padding: 100px 40px 50px;
  border-left: 1px solid #e5e7eb;
}

.pb-data-panel__info h4 {
  color: #002a71;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
}

/* 점까지 포함해 리스트 전체를 좌측에서 10px 들여쓴다 */
.pb-data-panel__info ul {
  padding-left: 10px;
}

.pb-data-panel__info li {
  position: relative;
  padding-left: 16px;
  color: #555555;
  font-size: 1.125rem;
  line-height: 2;
}

.pb-data-panel__info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #555555;
}

/* 문단형 설명(SIB) — 리드 문장은 진하게, 보조 설명은 회색 */
.pb-data-panel__info p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #555555;
}

.pb-data-panel__lead {
  color: #333333;
}

.pb-data-panel__note {
  margin-top: 20px;
  color: #888888;
}

/* PRODUCT - product 상세(.pb-*) responsive
  ─────────────────────────────────────────── */
@media screen and (max-width: 1280px) {
  .pb-photo img {
    height: 460px;
  }
  .pb-point {
    margin-top: 110px;
  }
  .pb-point .swiper-slide {
    height: 440px;
  }
  .pb-info {
    margin-top: 110px;
  }
  .pb-info-table {
    font-size: 1.25rem;
  }
  .pb-data {
    padding: 80px 0;
  }
}

@media screen and (max-width: 1024px) {
  .pb-overview .inner::before {
    height: 280px;
  }
  .pb-inquiry {
    top: 40px;
    right: 40px;
    width: 140px;
    padding: 16px;
    font-size: 1.125rem;
  }
  .pb-inquiry svg {
    width: 26px;
    height: 26px;
  }
  .pb-photo img {
    height: 380px;
  }
  .pb-spec > li {
    gap: 10px;
    padding: 0 10px;
  }
  .pb-spec__ico {
    width: 48px;
  }
  .pb-spec__txt strong {
    font-size: 1.0625rem;
  }
  .pb-point {
    margin-top: 90px;
  }
  .pb-point .swiper-slide {
    height: 380px;
  }
  .pb-point__tit {
    font-size: 1.5rem;
  }
  .pb-point__nav {
    width: 56px;
    height: 56px;
  }
  .pb-point__nav svg {
    width: 24px;
    height: 24px;
  }
  .pb-point__prev {
    left: 3%;
  }
  .pb-point__next {
    right: 3%;
  }
  .pb-info {
    margin-top: 90px;
  }
  .pb-info .sec-tit,
  .pb-data .sec-tit {
    font-size: 1.625rem;
    margin-bottom: 36px;
  }
  .pb-info-table-wrap .inner {
    gap: 40px;
  }
  /* 분해도 이미지(battery) 좁은 화면에서 넘치지 않게 */
  .pb-info-list img {
    max-width: 100%;
  }
  .pb-info-list > li {
    padding: 56px 0;
  }
  .pb-info-table {
    font-size: 1.125rem;
  }
  .pb-info-table th,
  .pb-info-table td {
    padding: 10px 14px;
  }
  .pb-data {
    padding: 70px 0;
  }
  .pb-data-panel {
    grid-template-columns: 1fr 340px;
  }
  .pb-data-panel__info {
    padding: 60px 30px 40px;
  }
  .pb-data-panel__figure {
    min-height: 260px;
    padding: 30px;
  }
}

/* 768 이하: 가로 배치들을 세로 스택으로 */
@media screen and (max-width: 768px) {
  /* 개요: 문의 박스 축소, 사진 축소 */
  .pb-overview .inner::before {
    height: 200px;
  }
  .pb-inquiry {
    top: 20px;
    right: 20px;
    width: 116px;
    gap: 10px;
    padding: 14px;
    font-size: 1rem;
  }
  .pb-inquiry svg {
    width: 22px;
    height: 22px;
  }
  .pb-photo img {
    height: 300px;
  }
  /* 스펙 5개 : 가로 → 세로 스택 (구분선 좌 → 상) */
  .pb-spec {
    flex-direction: column;
  }
  .pb-spec > li {
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid #d9d9d9;
    padding: 16px 4px;
  }
  .pb-spec > li:first-child {
    border-top: 0;
  }
  /* Point 슬라이더 */
  .pb-point {
    margin-top: 70px;
  }
  .pb-point .swiper-slide {
    height: 300px;
  }
  .pb-point__tit {
    font-size: 1.375rem;
  }
  .pb-point__desc {
    font-size: 1rem;
  }
  .pb-point__nav {
    width: 44px;
    height: 44px;
  }
  .pb-point__nav svg {
    width: 20px;
    height: 20px;
  }
  .pb-point__prev {
    left: 8px;
  }
  .pb-point__next {
    right: 8px;
  }
  /* 제품정보 : 제목 옆 표 → 제목 위 / 표 아래 세로 스택 */
  .pb-info {
    margin-top: 70px;
  }
  .pb-info-table-wrap {
    margin-bottom: 90px;
  }
  .pb-info-table-wrap .inner {
    flex-direction: column;
    gap: 18px;
  }
  .pb-info .sec-tit {
    margin-bottom: 0;
  }
  .pb-info-table {
    font-size: 1rem;
  }
  .pb-info-table th,
  .pb-info-table td {
    padding: 10px 10px;
  }
  /* Performance Data */
  .pb-data {
    padding: 56px 0;
  }
  .pb-data .sec-tit {
    font-size: 1.375rem;
    margin-bottom: 28px;
  }
  /* 탭이 최대 7개라 좁으면 가로 스크롤 */
  .pb-data-tab__nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pb-data-tab__nav li {
    flex: 0 0 auto;
  }
  .pb-data-tab__nav button {
    padding: 14px 18px;
    font-size: 1rem;
    white-space: nowrap;
  }
  /* 패널 : 그래프 위 / 설명 아래 세로 스택 */
  .pb-data-panel {
    grid-template-columns: 1fr;
  }
  .pb-data-panel__figure {
    min-height: 0;
    padding: 24px 16px;
  }
  .pb-data-panel__info {
    padding: 24px 20px 32px;
    border-left: 0;
    border-top: 1px solid #e5e7eb;
  }
  .pb-data-panel__info h4 {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }
  .pb-data-panel__info li,
  .pb-data-panel__info p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .pb-photo img {
    height: 240px;
  }
  .pb-inquiry {
    width: 100px;
    padding: 12px;
    font-size: 0.9375rem;
  }
  .pb-inquiry svg {
    width: 20px;
    height: 20px;
  }
  .pb-point .swiper-slide {
    height: 240px;
  }
  .pb-point__tit {
    font-size: 1.25rem;
  }
  .pb-info-table {
    font-size: 0.9375rem;
  }
  .pb-info-table th,
  .pb-info-table td {
    padding: 8px 8px;
  }
}

/* ============================================================
 * CAREER - career.php
 * ============================================================ */
.career {
  padding-bottom: 100px;
}

.career .tit-section {
  margin-bottom: 50px;
}

/* 인재상 인트로 배너
  ─────────────────────────────────────────── */
.career-hero {
  margin-top: 20px;
  border-radius: 30px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: url(/assets/img/sub/career-visual.jpg) center / cover no-repeat;
}

.career-hero p {
  font-size: 3.25rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hire-process .sec-tit,
.performance .sec-tit {
  font-size: 1.875rem;
  font-weight: 700;
}

/* 인재상 3 (지그재그)
  ─────────────────────────────────────────── */
.talent-list {
  max-width: 900px;
  margin: 120px auto 0;
}

.talent-item {
  display: flex;
  align-items: center;
  gap: 0px;
}

.talent-item:nth-child(odd) {
  margin-right: auto;
}

.talent-item:nth-child(even) {
  flex-direction: row-reverse;
  margin-left: auto;
}

.talent-item:not(:first-child) {
  margin-top: 50px;
}

/* 아이콘 원 */
.talent-icon {
  flex: 0 0 auto;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.talent-item--tenacity .talent-icon {
  background-color: #0066ce;
}

.talent-item--sincerity .talent-icon {
  background-color: #00289a;
}

.talent-item--honesty .talent-icon {
  background-color: #00b5ff;
}

.talent-icon__art {
  width: 150px;
  height: 150px;
}

.talent-icon__art svg,
.talent-icon__art img {
  display: block;
  width: 100%;
  height: 100%;
}

.talent-icon__name {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.talent-icon__name em {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* 텍스트 */
.talent-body {
  flex: 1;
  min-width: 0;
  padding: 0 100px;
}

.talent-tit {
  position: relative;
  padding-top: 26px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #e4e4e4;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
}

/* 헤딩 색을 각자 동그라미 색과 맞춘다 */
.talent-item--tenacity .talent-tit {
  color: #0066ce;
}

.talent-item--sincerity .talent-tit {
  color: #00289a;
}

.talent-item--honesty .talent-tit {
  color: #00b5ff;
}

.talent-tit::before {
  content: "\201C";
  position: absolute;
  z-index: -1;
  top: 14px;
  left: -20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  color: #d9d9d9;
}

.talent-points li {
  position: relative;
  padding-left: 26px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #666666;
}

.talent-points li + li {
  margin-top: 10px;
}

.talent-points li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  line-height: 1.75;
  color: #666666;
}

/* 채용절차
  ─────────────────────────────────────────── */
.hire-process-board {
  padding: 80px 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.hire-steps {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hire-step {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
}

.hire-step span {
  font-size: 1.25rem;
}

.hire-step strong {
  font-size: 2rem;
  font-weight: 700;
}

/* 배경 rgba 로 겹친 부분이 비쳐 보이게 한다(글자는 또렷하게 유지).
   1차만 불투명, 2·3차는 70%. */
.hire-step--1 {
  background-color: #bad6e9;
}

.hire-step--2 {
  background-color: rgba(0, 121, 195, 0.7);
}

.hire-step--3 {
  background-color: rgba(0, 38, 97, 0.7);
}

.hire-step--4 {
  background-color: rgba(0, 24, 61, 0.85);
}

.hire-step--2,
.hire-step--3,
.hire-step--4 {
  margin-left: -20px;
}

.hire-step--result {
  background-color: #ffffff;
  border: 3px solid #29529f;
  color: #29529f;
}

.hire-arrow {
  margin: 0 34px;
  color: #9aa7bd;
}

.hire-arrow svg,
.hire-arrow img {
  display: block;
  width: 54px;
  height: auto;
}

.hire-steps,
.hire-docs {
  margin: 0 auto;
  max-width: 1050px;
}

/* 제목(채용절차) 밑 여백 — 위 margin:0 auto 가 top 을 0 으로 덮으므로 여기서 다시 준다 */
.hire-steps {
  margin-top: 26px;
}

.hire-docs {
  margin-top: 80px;
}

.hire-docs > div {
  display: flex;
  gap: 12px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hire-docs > div + div {
  margin-top: 14px;
}

.hire-docs dt {
  flex: 0 0 auto;
  position: relative;
  min-width: 96px;
  padding-left: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111111;
}

.hire-docs dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #002a71;
}

.hire-docs dd {
  color: #666666;
}

/* 성과관리체계
  ─────────────────────────────────────────── */
.performance {
  margin-top: 120px;
}

.performance .sec-tit {
  margin-bottom: 28px;
}

.perf-band {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.perf-col {
  flex: 1;
  /* 등폭 (수정 X) */
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* 사진 — 세로 길이는 이미지 비율대로 (고정 높이 없음, 3장 모두 640x790 동일비율) */
.perf-col__photo {
  display: block;
  width: 100%;
  height: auto;
}

/* 기본 상태: 회색 단색이 사진을 덮는다 */
.perf-col::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #d6d6d6;
  transition: opacity 0.45s ease;
}

/* 마우스를 올리면 회색이 사라지며 사진이 드러난다 */
.perf-col:hover::before {
  opacity: 0;
}

/* 아이콘 + 텍스트는 항상 사진 위에. 밝은 사진이라 다크 컬러 유지하고,
   흰색 글로우로 사진 위에서도 또렷하게 보이게 한다. */
.perf-col__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* 아이콘 ~ (제목+설명) 사이 여백 */
  gap: 150px;
  padding: 40px 24px;
  /* 내용(아이콘+텍스트)을 사진 중앙보다 아래로 내린다 */
  transform: translateY(50px);
}

.perf-col__ico {
  width: 120px;
  transition: opacity 0.4s ease;
}

.perf-col__ico img {
  display: block;
  width: 100%;
}

.perf-col__tit {
  font-size: 1.875rem;
  font-weight: 700;
  color: #002a71;
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.perf-col__desc {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.55;
  color: #333333;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* hover: 아이콘 숨기고, 글자는 흰색 + 어두운 그림자(밝은 사진 위 가독성) */
.perf-col:hover .perf-col__ico {
  opacity: 0;
}

.perf-col:hover .perf-col__tit,
.perf-col:hover .perf-col__desc {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

/* career 반응형
  ─────────────────────────────────────────── */
@media (max-width: 1250px) {
  .career-hero p {
    font-size: 2rem;
  }

  .talent-item {
    width: 90%;
    gap: 45px;
  }

  .talent-icon {
    width: 210px;
    height: 210px;
  }
  /* 원이 작아지면 내부 아트·이름도 같이 줄여야 원 밖으로 안 삐져나온다 */
  .talent-icon__art {
    width: 96px;
    height: 96px;
  }
  .talent-icon__name {
    font-size: 1.5rem;
  }
  .talent-body {
    padding: 0 60px;
  }
}

@media (max-width: 1024px) {
  .talent-list {
    margin-top: 70px;
  }

  .talent-item,
  .talent-item:nth-child(odd),
  .talent-item:nth-child(even) {
    width: 100%;
    margin: 0 0 40px;
    flex-direction: row;
  }

  .talent-item:not(:first-child) {
    margin-top: 0;
  }

  .talent-body {
    padding: 0 40px;
  }

  /* 가로 계단식 원 → 세로 스택. 화살표는 아래 방향으로 3차~채용 사이에. */
  .hire-steps {
    flex-direction: column;
    gap: 16px;
  }

  .hire-step--2,
  .hire-step--3,
  .hire-step--4 {
    margin-left: 0;
  }

  .hire-arrow {
    margin: 0;
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .career-hero {
    min-height: 220px;
    border-radius: 18px;
  }

  .career-hero p {
    font-size: 1.375rem;
  }

  .talent-item,
  .talent-item:nth-child(odd),
  .talent-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .talent-icon {
    width: 200px;
    height: 200px;
  }
  .talent-icon__art {
    width: 84px;
    height: 84px;
  }
  .talent-icon__name {
    font-size: 1.375rem;
  }
  .talent-icon__name em {
    font-size: 0.8125rem;
  }
  /* 세로 스택: 본문 좌우 여백 제거해 텍스트가 짓눌리지 않게 + 전체 폭 사용 */
  .talent-body {
    padding: 20px 0 0;
    width: 100%;
  }

  .talent-tit {
    text-align: center;
    padding-top: 0;
    font-size: 1.375rem;
  }

  .talent-tit::before {
    display: none;
  }

  /* 삼각형 점 리스트 가로 100% */
  .talent-points {
    display: block;
    width: 100%;
    text-align: left;
  }
  .talent-points li {
    font-size: 1rem;
  }

  .hire-process {
    padding: 60px 0;
  }

  .performance {
    margin-top: 70px;
  }
}

/* career 반응형 보강: sec-tit / hire-docs / 성과관리 밴드 / 480
  ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .career-hero {
    min-height: 360px;
  }
  .hire-process .sec-tit,
  .performance .sec-tit {
    font-size: 1.625rem;
  }
  .perf-col__body {
    gap: 90px;
    padding: 32px 18px;
    transform: translateY(30px);
  }
  .perf-col__ico {
    width: 96px;
  }
  .perf-col__tit {
    font-size: 1.625rem;
  }
  .perf-col__desc {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .career {
    padding-bottom: 70px;
  }
  .career .tit-section {
    margin-bottom: 36px;
  }
  .talent-list {
    margin-top: 50px;
  }
  .hire-docs {
    margin-top: 50px;
  }
  .hire-docs > div {
    font-size: 1rem;
  }
  .hire-docs dt {
    min-width: 80px;
    font-size: 1.0625rem;
  }
  /* 성과관리 3열 → 세로 스택.
     회색 덮개는 그대로 두어 데스크톱 기본 상태(회색 배경 + 파란 제목)와 동일하게 보인다.
     (사진 위 검은 글씨로 안 읽히던 문제 수정) */
  .perf-band {
    flex-direction: column;
  }
  .perf-col__photo {
    height: 300px;
    object-fit: cover;
  }
  .perf-col__body {
    gap: 56px;
    padding: 28px 20px;
    transform: translateY(15px);
  }
  .perf-col__ico {
    width: 76px;
  }
  .perf-col__tit {
    font-size: 1.375rem;
  }
  .perf-col__desc {
    font-size: 1.0625rem;
  }
}

@media (max-width: 480px) {
  .career-hero {
    min-height: 180px;
  }
  .career-hero p {
    font-size: 1.125rem;
  }
  .talent-icon {
    width: 180px;
    height: 180px;
  }
  .talent-icon__art {
    width: 66px;
    height: 66px;
  }
  .talent-icon__name {
    font-size: 1.25rem;
  }
  .talent-tit {
    font-size: 1.25rem;
  }
  /* 채용절차 원 축소 */
  .hire-step {
    width: 160px;
    height: 160px;
  }
  .hire-step span {
    font-size: 1.125rem;
  }
  .hire-step strong {
    font-size: 1.75rem;
  }
  .perf-col__photo {
    height: 280px;
  }
  .perf-col__body {
    gap: 44px;
    transform: translateY(8px);
  }
  .perf-col__ico {
    width: 66px;
  }
  .perf-col__tit {
    font-size: 1.25rem;
  }
  .perf-col__desc {
    font-size: 1rem;
  }
}

/* ============================================================
 * CONTACT - inquiry.php
 * ============================================================ */
.inquiry {
  padding-bottom: 100px;
}

.inquiry .tit-section {
  margin-bottom: 50px;
  text-align: left;
}

/* *****************************************

          *** policy ***
    이용약관 / 개인정보처리방침 (page/terms.php, page/privacy.php)

****************************************** */

.policy .policy-doc {
  margin: 90px 0 160px;
}

.policy-sec {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.policy-sec:first-child {
  border-top: 3px solid #002a71;
}

.policy-tit {
  font-size: 1.375rem;
  font-weight: 700;
  color: #002a71;
  line-height: 1.4;
  margin-bottom: 18px;
}

.policy-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4d4d4d;
}

/* 본문 항목 — 번호는 왼쪽에 걸어두고 글은 들여쓴다 */
.policy-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  counter-reset: policy-num;
}

.policy-desc + .policy-list {
  margin-top: 26px;
}

.policy-list > li {
  position: relative;
  padding-left: 34px;
  font-size: 1rem;
  line-height: 1.8;
  color: #4d4d4d;
}

.policy-list > li + li {
  margin-top: 14px;
}

.policy-num {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 24px;
  font-weight: 600;
  color: #002a71;
}

.policy-sub {
  display: block;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

/* 아직 못 채운 자리 — 눈에 띄게 */
.policy-doc .fill {
  background: #fff3cd;
  color: #8a6100;
  padding: 0 4px;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .policy .policy-doc {
    margin: 70px 0 120px;
  }

  .policy-tit {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .policy .policy-doc {
    margin: 50px 0 90px;
  }

  .policy-sec {
    padding: 30px 0;
  }

  .policy-tit {
    font-size: 1.125rem;
    margin-bottom: 14px;
  }

  .policy-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .policy-list > li {
    padding-left: 26px;
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  .policy-num {
    min-width: 20px;
  }
}