﻿@charset "utf-8";
/* ******************** 공통 UI 디자인 패턴 (수정 가능) ******************** */

/* ----------------------------------------------------------
   서브 상단(LNB) 정렬 보정
   include/css/lnb.css 는 수정 불가(불변 파일)이므로,
   좌측 고정 사이드바(270px)에 가려지지 않도록 이곳에서 보정한다.
---------------------------------------------------------- */
@media (min-width: 1250px) {
	.sub-top-wrap { padding-left: var(--sidebar-width); }
	/* lnb.css 가 body 안에서 나중에 로드되므로 우선순위 보정 */
	.sub-tit-wrap { padding-left: var(--sidebar-width) !important; }
	/* 화면이 좁아 1200px 박스가 꽉 찰 때 좌우가 붙지 않도록 */
	.sub-top, .sub-tit {  }
}

/* ----------------------------------------------------------
   GNB 스킨 — 좌측 블루 라운드 패널 + 메뉴 아이콘 (시안 반영)
   include/css/header.css 는 수정 불가(불변 파일)이므로
   이곳에서 우선순위를 높여(body header …) 스킨만 덧입힌다.
   아이콘은 외부 파일 없이 data URI 로 인라인 처리.
---------------------------------------------------------- */
@media (min-width: 1250px) {
	body header nav.pc { display: flex; align-items:center; }
	body header nav.pc .wrap { width: 100%; padding: 0 20px; }
	body header nav.pc .gnb .gnb_home { display: none; }

	body header nav.pc .gnb > ul {
		background: var(--c_base1);
		border-radius: 16px;
		box-shadow: 0 14px 30px rgba(11,73,156,.24);
	}
	body header nav.pc .gnb > ul > li { display: block; justify-content: flex-start; }
	body header nav.pc .gnb > ul > li > a {
		position: relative;
		display: flex; align-items: center; gap: 12px;
		padding: 20px 16px 20px 24px;
		color: #fff; font-size: 16px; font-weight: 500; line-height: 1.2;
		transition: var(--ani);
	}
	body header nav.pc .gnb > ul > li > a:before {
		content: ""; flex: 0 0 22px; width: 22px; height: 22px;
		background-repeat: no-repeat; background-position: center; background-size: contain;
		transition: var(--ani);
	}
	/* 메뉴별 아이콘 */
	body header nav.pc .gnb > ul > li.depth1_company > a:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4.5' y='2.8' width='15' height='18.4' rx='2.2'/%3E%3Cpath d='M8.4 7.6h7.2M8.4 12h7.2M8.4 16.4h4.4'/%3E%3C/svg%3E");
	}
	body header nav.pc .gnb > ul > li.depth1_product > a:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.6 2.8h4.8M10.8 2.8v6.4l-5 9.2a2.4 2.4 0 0 0 2.1 3.6h8.2a2.4 2.4 0 0 0 2.1-3.6l-5-9.2V2.8'/%3E%3Cpath d='M7.6 15.4h8.8'/%3E%3C/svg%3E");
	}
	body header nav.pc .gnb > ul > li.depth1_business > a:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7.6' r='3.2'/%3E%3Cpath d='M2.8 19.6c0-3.2 2.8-5 6.2-5s6.2 1.8 6.2 5'/%3E%3Ccircle cx='17.4' cy='9.2' r='2.4'/%3E%3Cpath d='M16 14.4c3 0 5.2 1.5 5.2 4.2'/%3E%3C/svg%3E");
	}
	body header nav.pc .gnb > ul > li.depth1_support > a:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.4 20.4h17.2'/%3E%3Cpath d='M6.6 20.4v-6.8M11 20.4V5.2M15.4 20.4v-4.4M19.8 20.4V9.6'/%3E%3C/svg%3E");
	}
	body header nav.pc .gnb > ul > li.depth1_facility > a:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.6 20.8h16.8'/%3E%3Cpath d='M5.4 20.8V4.4a1.6 1.6 0 0 1 1.6-1.6h6a1.6 1.6 0 0 1 1.6 1.6v16.4'/%3E%3Cpath d='M14.6 20.8V9.6h3.4a1.6 1.6 0 0 1 1.6 1.6v9.6'/%3E%3Cpath d='M8.2 6.6h3.4M8.2 10.2h3.4M8.2 13.8h3.4'/%3E%3C/svg%3E");
	}
	body header nav.pc .gnb > ul > li.depth1_commu > a:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.4 12.4c0 4-3.8 7.2-8.4 7.2-1 0-2-.15-2.9-.42L4.2 21l1.3-3.5A6.9 6.9 0 0 1 3.6 12.4c0-4 3.8-7.2 8.4-7.2s8.4 3.2 8.4 7.2Z'/%3E%3C/svg%3E");
	}

	/* hover / active */
	body header nav.pc .gnb > ul > li > a:hover,
	body header nav.pc .gnb > ul > li.on > a,
	body header nav.pc .gnb > ul > li.here > a { color: #fff; background: rgba(255,255,255,.16); }
	body header nav.pc .gnb > ul > li > a:hover:before,
	body header nav.pc .gnb > ul > li.on > a:before,
	body header nav.pc .gnb > ul > li.here > a:before { transform: translateX(2px); }
	body header nav.pc .gnb > ul > li.here > a:after {
		content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
		width: 4px; height: 22px; border-radius: 0 4px 4px 0; background:#fff;
	}

	/* 2dep 슬라이드 패널 — 메뉴가 패널 안으로 들어가므로 수직 중앙 정렬로 보정 */
	body header nav.pc .gnb > ul > li > ul {
		display: flex; flex-direction: column; justify-content: center;
		padding-top: 0 !important;
		background: var(--c_base3);
	}
}

/* ---------------- 섹션 타이틀 ---------------- */
.sec-tit { margin-bottom: 40px; }
.sec-tit .eng { display: block; font-size: var(--fs16); font-weight: 800; text-transform: uppercase; color: var(--c_base2); margin-bottom: 10px; }
.sec-tit h2 { font-size: var(--fs36); font-weight: 800; color: #111; line-height: 1.3; letter-spacing: -0.03em; }
.sec-tit h2 em { color: var(--c_base1); }
.sec-tit p { margin-top: 14px; font-size: var(--fs17); color: #666; line-height: 1.75; }
.sec-tit.center { text-align: center; }
.sec-tit.center p { max-width: 820px; margin-left: auto; margin-right: auto; }

/* 페이지 리드 문구 : 배경 없이 라인(테두리)만 있는 텍스트 박스 */
.page-lead { position: relative; padding: 34px 40px; border: 1px solid var(--border1); border-left: 4px solid var(--c_base1); border-radius: 4px; background: #fff; font-size: var(--fs30); font-weight: 600; line-height: 1.55; letter-spacing: -0.03em; color: #1b2b41; word-break: keep-all; }
.page-lead strong { color: var(--c_base1); font-weight: 800; }
.page-lead strong em { color: var(--c_base2); }
.page-lead > span { margin-top: 10px; font-size: var(--fs30); font-weight: 500; line-height: 1.55; letter-spacing: -0.03em; color: #55677d; }

/* ---------------- 버튼 ---------------- */
.btn { display: inline-flex; align-items: center; gap: 10px; height: 52px; padding: 0 28px; border-radius: 100px; font-size: var(--fs15); font-weight: 600; letter-spacing: .02em; transition: var(--ani); }
.btn svg { width: 16px; height: 16px; transition: var(--ani); }
.btn-primary { background: var(--c_base1); color: #fff !important; box-shadow: 0 10px 24px rgba(11,73,156,.22); }
.btn-primary:hover { background: var(--c_base3); box-shadow: 0 14px 30px rgba(11,73,156,.32); transform: translateY(-2px); }
.btn-line { border: 1px solid var(--border1); color: #333 !important; background: #fff; }
.btn-line:hover { border-color: var(--c_base1); color: var(--c_base1) !important; transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.55); color: #fff !important; }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn:hover svg { transform: translateX(4px); }

/* 더보기(+) 버튼 */
.btn-more { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px; border: 1px solid var(--border1); border-radius: 100px; font-size: var(--fs13); font-weight: 600; color: #666; background: #fff; transition: var(--ani); }
.btn-more:hover { border-color: var(--c_base1); color: var(--c_base1); }
.btn-more.white { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-more.white:hover { background: rgba(255,255,255,.16); color: #fff; }

/* ---------------- 카드 ---------------- */
.card { position: relative; background: #fff; border: 1px solid var(--border1); border-radius: 18px; padding: 32px; transition: var(--ani); }
.card:hover { border-color: rgba(11,73,156,.35); box-shadow: 0 18px 40px rgba(17,38,73,.10); transform: translateY(-4px); }
.card .ico { display: flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 50%; background: var(--bg1); color: var(--c_base1); margin-bottom: 20px; }
.card .ico svg { width: 30px; height: 30px; }
.card h5 { font-size: var(--fs20); font-weight: 800; color: #111; margin-bottom: 10px; }
.card p { font-size: var(--fs15); color: #667; line-height: 1.75; }

.card-grid { display: grid; gap: 24px; }
.col-2 { grid-template-columns: repeat(2, 1fr); }
.col-3 { grid-template-columns: repeat(3, 1fr); }
.col-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------------- 배지 / 태그 ---------------- */
.badge { display: inline-flex; align-items: center; height: 26px; padding: 0 12px; border-radius: 100px; font-size: var(--fs13); font-weight: 600; }
.badge.b1 { background: rgba(11,73,156,.10); color: var(--c_base1); }
.badge.b2 { background: rgba(34,181,115,.14); color: #17945c; }
.badge.b3 { background: rgba(41,132,216,.12); color: var(--c_base4); }
.badge.b4 { background: #f1f3f6; color: #666; }

/* ---------------- 리스트 ---------------- */
.dot-list > li { position: relative; padding-left: 16px; font-size: var(--fs16); line-height: 1.85; color: #555; }
.dot-list > li + li { margin-top: 6px; }
.dot-list > li:before { content: ""; position: absolute; left: 0; top: 13px; width: 5px; height: 5px; border-radius: 50%; background: var(--c_base2); }

.num-list { counter-reset: n; }
.num-list > li { position: relative; counter-increment: n; padding-left: 40px; font-size: var(--fs16); line-height: 1.8; color: #555; }
.num-list > li + li { margin-top: 14px; }
.num-list > li:before { content: counter(n,decimal-leading-zero); position: absolute; left: 0; top: 2px; font-size: var(--fs14); font-weight: 800; color: var(--c_base1); }

/* ---------------- 테이블 ---------------- */
.tbl-wrap { width: 100%; overflow-x: auto; }
.tbl { width: 100%; min-width: 640px; border-top: 2px solid var(--c_base1); border-collapse: collapse; }
.tbl th, .tbl td { padding: 16px 14px; border-bottom: 1px solid var(--border1); font-size: var(--fs15); line-height: 1.6; }
.tbl th { background: #f7f9fc; color: #222; font-weight: 800; text-align: center; }
.tbl td { color: #555; text-align: center; }
.tbl td.al { text-align: left; }
.tbl tbody tr { transition: background .2s; }
.tbl tbody tr:hover { background: #fafcff; }

/* 테이블 상단 정보 */
.tbl-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.tbl-top .total { font-size: var(--fs15); font-weight: 600; color: #33475f; }
.tbl-top .total b { color: var(--c_base1); font-weight: 800; }
.tbl-top .unit { font-size: var(--fs14); color: #8892a4; }

/* 명단형 테이블 (.tbl-mo : 모바일에서 가로스크롤 없이 카드형으로 전환) */
.tbl-mo td.no { font-weight: 800; color: #22303f; }
.tbl-mo td.org { color: #444; }
.tbl-mo td.nm { font-weight: 800; color: #111; }
.tbl-mo td.term { color: #667; letter-spacing: -0.01em; white-space: nowrap; }
@media (max-width: 1249px) {
	.tbl-mo td.term { white-space: normal; }
}
@media (max-width: 767px) {
	.tbl-wrap.mo-card { overflow-x: visible; }
	.tbl-mo { min-width: 0; border-top: 0; }
	.tbl-mo thead { display: none; }
	.tbl-mo tbody, .tbl-mo tr, .tbl-mo td { display: block; }
	.tbl-mo tbody tr { display: flex; flex-wrap: wrap; align-items: center; padding: 16px 18px 18px; border: 1px solid var(--border1); border-top: 2px solid var(--c_base1); border-radius: 12px; background: #fff; }
	.tbl-mo tbody tr + tr { margin-top: 12px; }
	.tbl-mo tbody tr:hover { background: #fff; }
	.tbl-mo tbody td { display: flex; gap: 8px; width: 100%; padding: 0; border: 0; text-align: left; font-size: var(--fs14); line-height: 1.6; }
	.tbl-mo tbody td:before { content: attr(data-tit); flex: 0 0 84px; font-weight: 800; color: #22303f; }
	/* 카드 헤더 : 순번 + 성명 */
	.tbl-mo tbody td.no { order: 1; gap: 3px; width: auto; height: 24px; padding: 0 10px; border-radius: 100px; background: rgba(11,73,156,.08); font-size: var(--fs13); font-weight: 800; line-height: 24px; color: var(--c_base1); }
	.tbl-mo tbody td.no:before { content: "No."; flex: none; font-weight: 800; color: var(--c_base1); }
	.tbl-mo tbody td.nm { order: 2; width: auto; margin-left: 10px; font-size: var(--fs17); font-weight: 800; color: #111; }
	.tbl-mo tbody td.nm:before { display: none; }
	/* 카드 본문 */
	.tbl-mo tbody td.org { order: 3; width: 100%; margin-top: 13px; padding-top: 13px; border-top: 1px dashed var(--border1); }
	.tbl-mo tbody td.pos { order: 4; margin-top: 5px; }
	.tbl-mo tbody td.term { order: 5; margin-top: 5px; }
}

/* ---------------- 탭 ---------------- */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.tabs button { height: 44px; padding: 0 22px; border: 1px solid var(--border1); border-radius: 100px; background: #fff; font-size: var(--fs18); font-weight: 600; color: #667; transition: var(--ani); }
.tabs button.on, .tabs button:hover { background: var(--c_base1); border-color: var(--c_base1); color: #fff; }

/* ---------------- 폼 ---------------- */
.form-tbl { width: 100%; border-top: 2px solid var(--c_base1); }
.form-tbl th, .form-tbl td { padding: 16px 18px; border-bottom: 1px solid var(--border1); font-size: var(--fs15); text-align: left; vertical-align: middle; }
.form-tbl th { width: 190px; background: #f7f9fc; font-weight: 800; color: #222; }
.form-tbl th .req { color: #e2453c; margin-left: 3px; }
.inp, .sel, .txtarea { width: 100%; max-width: 460px; height: 46px; padding: 0 14px; border: 1px solid var(--border1); border-radius: 8px; font-size: var(--fs15); color: #333; background: #fff; transition: var(--ani); }
.txtarea { height: 160px; padding: 14px; max-width: 100%; resize: vertical; }
.inp:focus, .sel:focus, .txtarea:focus { border-color: var(--c_base1); box-shadow: 0 0 0 3px rgba(11,73,156,.10); }
.form-btns { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.agree-box { margin-top: 30px; padding: 22px; border: 1px solid var(--border1); border-radius: 12px; background: #fafbfd; font-size: var(--fs14); color: #667; line-height: 1.8; }

/* ---------------- 프로필 카드 ---------------- */
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.people-card { border: 1px solid var(--border1); border-radius: 18px; overflow: hidden; background: #fff; transition: var(--ani); }
.people-card:hover { box-shadow: 0 18px 40px rgba(17,38,73,.12); transform: translateY(-4px); }
.people-card .photo { position: relative; aspect-ratio: 4/5; background: var(--bg1); overflow: hidden; }
.people-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.people-card:hover .photo img { transform: scale(1.05); }
.people-card .info { padding: 22px 24px 26px; }
.people-card .info .name { font-size: var(--fs20); font-weight: 800; color: #111; }
.people-card .info .name span { font-size: var(--fs14); font-weight: 500; color: #8892a4; margin-left: 8px; }
.people-card .info .pos { margin-top: 6px; font-size: var(--fs14); color: var(--c_base1); font-weight: 600; }
.people-card .info ul { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--border1); }
.people-card .info ul li { font-size: var(--fs14); color: #667; line-height: 1.7; }
.people-card .info ul li b { color: #333; font-weight: 600; }

/* ---------------- 성과 리스트 ---------------- */
.pub-list > li { display: flex; gap: 24px; padding: 26px 4px; border-bottom: 1px solid var(--border1); transition: var(--ani); }
.pub-list > li:hover { background: #fafcff; }
.pub-list .year { flex: 0 0 92px; font-size: var(--fs20); font-weight: 800; color: var(--c_base1); letter-spacing: -.02em; }
.pub-list .txt h5 { font-size: var(--fs17); font-weight: 800; color: #1c2b3f; line-height: 1.55; }
.pub-list .txt p { margin-top: 8px; font-size: var(--fs14); color: #7a869a; }
.pub-list .txt .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ---------------- 기타 ---------------- */
.divider { height: 1px; background: var(--border1); margin: 60px 0; }
.img-round { border-radius: 18px; overflow: hidden; }
.txt-c { text-align: center; }

/* ---------------- 반응형 ---------------- */
@media (max-width: 1199px) {
	.col-4 { grid-template-columns: repeat(2, 1fr); }
	.people-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
	.sec-tit { margin-bottom: 26px; }
	.page-lead { padding: 24px 22px; border-left-width: 3px; line-height: 1.5; }
	.page-lead > span { margin-top: 8px; line-height: 1.5; }
	.col-2, .col-3, .col-4 { grid-template-columns: 1fr; }
	.people-grid { grid-template-columns: 1fr; }
	.card { padding: 24px; border-radius: 14px; }
	.form-tbl th, .form-tbl td { display: block; width: 100%; }
	.form-tbl th { border-bottom: 0; padding-bottom: 8px; }
	.pub-list > li { flex-direction: column; gap: 8px; }
	.pub-list .year { flex: none; }
}
