/* Common Values */
@font-face {
    font-family: "Pretendard";
    src: url("/b_assets/PretendardVariable.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root{
  --blue:#2a67c7;
  --ink:#1b2430;
  --muted:#6b7b8c;
  --bg-soft:#f6f9fc;
}
/* Reset-ish */
* { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }

/* Typography & base */
body {
  font-family: "Noto Sans KR", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1b1f23;
  background: #fff;
  line-height: 1.6;
}
.container {
  width: min(1280px, 92vw);
  margin-inline: auto;
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffffcc;
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #eaecef;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
  margin-left: 64px;
  margin: 0 64px;
  width: auto;
}

.logo img {
  width:207px;
  height:75px;
  min-width: 55px;
  overflow: hidden;
  object-fit: cover;
  object-position: left;
}
.nav {
  margin-left: auto;
}
.nav > ul {
  list-style: none;
  display: flex;
  gap: clamp(16px, 3vw, 36px);
}
.nav a {
  font-family: "Pretendard";
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 20px;
}
.nav a:hover {
  color: #5099d2;
  font-weight: 600;
}
.nav li {
  position: relative;
}
.nav-blue-box {
  position: absolute;
  top: 28px;
  width: 100%;
  height: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.4s ease;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  margin-top: 10px;
}
.nav li:hover .nav-blue-box {
  transform: scaleX(1);
  width: 100%;
  opacity: 1;
  visibility: visible;
}

/* 사업영역 서브 메뉴 */
.has-popup { position: relative; }
.has-popup .popup-menu {
  position: absolute; 
  left: 100%;
  top: 100%;
  transform: translate(-40%, 15px) scale(.98);
  min-width: 182px;
  background: #fff; 
  border: 1px solid rgba(17,45,78,0.08);
  box-shadow: 0 9px 6px rgba(0,0,0,0.12);
  filter: drop-shadow(0 9px 6px rgba(0,0,0,.12));
  border-radius:6px;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events:none;
  transition: opacity 0.15s ease, transform .15s ease, visibility 0s .15s;
  z-index: 1000;
}
.has-popup::after {
  content: "";
  position: absolute;
  left:0; right: 0;
  top: 100%;
  height: 46px;
}
.submenu { 
  display:flex;
  flex-direction: column;
  list-style:none;
  margin:0;
  padding:8px 2px;
  gap: 2px;
}
.submenu li {
  padding-bottom: 0px;
}
.submenu li a{
  display:block; 
  padding:6px 15px; 
  border-radius:10px;
  color:#939393;
  font-weight:400;
  font-size: 16px;
}
.submenu li a:hover {
  color:#5099d2;
  font-weight: 600;
}
.submenu li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 20%;
  bottom: auto;
  height: 1px;
  background-color: #e2e2e2;
  border-radius: 2px;
}
.has-popup:hover .popup-menu {
  top: 100%;
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform: translate(-42%, 22px) scale(1);
  transition-delay: 0s;
}

/* Footer */
.site-footer {
  background: #1c2a4f;
  color: #c9d4e5;
  padding: 28px 0 28px;
}
.footer-wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.footer-wrap {
  display: flex;
  margin-left: 64px;
  margin-right: auto;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
.footer-brand img {
  height: auto;
  width: 135px;
  margin: 6px 0;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.company-line {
  font-size: 13px;
  color: #c9d4e5;
  word-break: keep-all;
  margin: 0;
}

@media (max-width: 520px) {
  .company-line { font-size: .85rem; }
  .footer-brand img { height: 24px; }
}

/* Common Fields  End */

/* Hero */
.recruit-hero {
  position:relative;
  height:400px;
  overflow:hidden;
  border-bottom:1px solid #e8eef5;
  margin-top: -2px;
}
.recruit-hero__img {
  background-image:url('/a_img/recruit_hero.png');
  position:absolute;
  inset:0;
  z-index: -1;
  width: 100%;
  height: 400px;
  min-width: 679px;
  min-height: 399px;
  opacity: 0.5;
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
}
.recruit-hero__overlay{
  position:relative; z-index:1; height:100%;
  display:grid; place-content:center; text-align:center; color:#0c2a44;
  font-family: "Pretendard";
}
.recruit-hero .eyebrow {
  letter-spacing:.08em;
  font-weight: 300;
  margin-bottom:2px;
  color: #656565;
}
.recruit-hero h1 {
  font-weight:800;
  font-size:clamp(28px,3.2vw,40px);
  color: #000;
  margin-top: -10px;
}
.hero-overlay-arrow {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0; left:0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 33px;
}
/* Intro copy */
.talent-intro {
  padding-block:clamp(20px,4vw,36px);
  margin-top: 24px;
  margin-bottom:60px;
  font-family: "Pretendard";
}
.talent-title{ font-size:clamp(18px,2.2vw,28px); font-weight:800; color:#000; margin-bottom:8px; margin-left:20px;}
.talent-lead{ color:#667; margin-left:20px; font-size:20px; }

.talent-brand {
  display: grid;
  place-items: center;
  margin: 40px 0 15px;
}
.talent-brand img {
  height: 93px;
  width: 330px;
}

.recruit-interview {
  margin-top: 24px;
  position: relative;
  place-items: center;
  overflow: hidden;
  width: 100%;
  min-height: clamp(180px, 260px, 260px);
  margin-bottom: 200px;
}
.recruit-interview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  transition: transform .2s ease;
}
.recruit-interview-img:hover {
  transform: scale(1.09);
  border-radius: 12px;
}
.recruit-interview-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0;
  text-align: right;
  width: min(100%, 1248px);
  height: clamp(180px, 22vw, 260px);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  isolation: isolate;
  transition: transform 0.4s ease;
  overflow: hidden;
border-radius: 12px;
}
.recruit-interview-inner:hover {
  border-radius: 12px;
  img {
    transform: scale(1.09);
    border-radius: 12px;
  }
}

.recruit-interview-text {
  text-align: right;
  max-width: 900px;
  padding-right: 80px;
  padding-left: clamp(16px, 10vw, 200px);
  padding-bottom: 45px;
  pointer-events: none;
}
.recruit-interview-eyebrow {
  font-size: clamp(12px, 2.2vw, 28px);
  margin-bottom: -5px;
  color: #fff;
  font-weight: 500;
  font-family: "Pretendard";
}

/* Profile block */
.talent-profile{ background:#fff; padding-block:clamp(28px,6vw,56px); }
.profile-grid{
  display:grid;
  grid-template-columns: auto minmax(280px,540px) auto;
  align-items:center;
  justify-content: center;
  justify-items: center;
  column-gap: clamp(16px, 3vw, 40px);
}
.profile-photo {
  aspect-ratio:1/1;
  border-radius:50%;
  overflow:hidden;
  background:#e9eef6;
  width: clamp( 80px, 28vw, 336px);
  flex-shrink: 0;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  object-position: center;
  display:block;
}
.profile-photo-left {
  transform: translateX(30px);
  z-index: 1;
  opacity: 0.5;
}
.profile-photo-right {
  transform: translateX(-30px);
  z-index: 1;
  opacity: 0.5;
}
.profile-center {
  display: flex;
  position: relative;
  width: clamp( 240px, 38vw, 539px);
  flex-shrink: 0;
  z-index: 3;
  align-items: center;
  justify-content: center;
}
.profile-center img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* 중앙 다이어그램 */

/* Values */
.talent-values {
  padding-block:clamp(24px,6vw,56px);
  font-family: "Pretendard";
  margin-bottom: 120px;
}
.values-grid{
  list-style:none; padding:0; margin:0;
  display:grid; grid-template-columns: repeat(4,1fr);
  gap: clamp(16px,3vw,32px);
  align-items: center;
}
.values-grid li {
  text-align:left;
  justify-content: center;
  justify-items: center;
  align-items: center;
}
.values-grid h4 {
  color: #104a7e;
  font-weight:800;
  font-size: 25px;
  margin-bottom:1px;
}
.values-grid .sub {
  color:#5f85a7; margin-bottom:22px;
  font-size: 16px;
}
.values-grid .desc {
  color:#4a5560;
  font-size: 16px;
  text-align: left;
  max-width: 202px;
}
.desktop-br {display:block;}
/* 접근성 숨김 */
.visually-hidden{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* reveal */
.reveal{opacity:0;transform:translateY(24px);will-change:transform,opacity}
.reveal.is-visible {
  animation:rise-in 1.1s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: .0s;
}
.mobile-visible {display:none;}
.menu-toggle {
  background:none; border:none;cursor:pointer;
  width: 24px; height: 24px;
  margin-left: auto;
  margin-right: 20px;
}
.mobile-menu {
  position: absolute;
  top: 71px;
  right: 16px;
  background: #fffffff0;
  border: 1px solid #ddd;
  padding: 8px 0;
  width: 146px;
  z-index:1000;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
  border-radius: 4px;
  display:none;
}
.mobile-menu ul {
  list-style: none; margin:0; padding:0;
}
.mobile-menu li a {
  display:block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
}
.mobile-menu li a:hover { background: #f5f5f5;}
.mobile-menu.is-open { display: block;}

@keyframes rise-in{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion: reduce){
  .reveal,.reveal.is-visible{animation:none;opacity:1;transform:none}
}

/* Responsive */
@media (max-width: 1024px){
  .profile-grid{ grid-template-columns: 1fr; }
  .profile-photo {
    width:min(180px,70vw);
    justify-self:center;
    transform: none;
  }
  .profile-diagram{ min-height:440px; order:-1; }
}
@media (max-width: 680px){
  .values-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px){
  .values-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .site-header .container {
    margin: 0 clamp(5px, 3.33vw, 64px);
  }
  .logo img {
    width: 55px;
  }
  .nav a {
    font-size: clamp(14px, 1.5vw, 20px);
  }
  .footer-wrap {
    margin-left: clamp(2px, 3.3vw, 64px);
  }
  .footer-brand img {
    visibility: hidden;
    width: 5px;
  }
  .desktop-br {display:none;}
  .recruit-interview {
    margin-bottom:50px;
    min-height: auto;
    
  }
  .talent-intro{margin-bottom: 5px;}
  .talent-brand img {
      aspect-ratio: 330/93;
      width: clamp(120px, 66vw, 330px);
      height: auto;
  }
  .recruit-interview-text {
    padding-right: clamp(10px, 8vw, 70px);
  }
  .recruit-interview-eyebrow {
    font-size: clamp( 16px, 2.2vw, 28px);
  }
}
@media (max-width: 700px) {
  .logo img {width:207px;}
  .mobile-visible {display:block;}
  .nav {display:none;}
}
@media (prefers-color-scheme: dark) {
  .site-header {
    color-scheme: light dark;
    forced-color-adjust: none;
  }
}

