/* 기본 폰트 */
body {
    font-family: 'Noto Sans KR', sans-serif;
}

/* 반응형 테이블 대체 레이아웃 */
.tbl-label {
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    font-weight: 700;
}

.tbl-value {
    padding: 0.5rem 1rem;
}

.tbl-action {
    padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
    .tbl-label {
        flex: 0 0 auto;
        width: 16.66667%;
        border-right: 1px solid #dee2e6;
    }
    .tbl-value {
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .tbl-action {
        flex: 0 0 auto;
        width: 16.66667%;
        text-align: right;
    }
    .tbl-row--with-action .tbl-value {
        width: 66.66667%;
    }
}

/* Loading Screen */
#progress_loading {
    height: 100%;
    left: 0px;
    position: fixed;
    _position: absolute;
    background-color: white;
    top: 0px;
    width: 100%;
    filter: alpha(opacity = 0);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

#loading_img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 200px;
    margin-top: -75px; 
    margin-left: -75px; 
    z-index: 999999;
}

/* 레이어 팝업 (신규 디자인) */

/* dim 오버레이 */
.hd_pop_dim {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 8999;
}

/* 팝업 전체 래퍼 */
.hd_pop_wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9000;
    pointer-events: all;
}

/* 팝업 상단 바 (PC 전용) */
.hd_pop_topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0 8px 0;
}

.hd_pop_pc_nav {
    display: flex;
    gap: 8px;
}

.hd_pop_pc_nav_btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
}

.hd_pop_pc_nav_btn i {
    font-size: 2rem;
    line-height: 1;
    display: block;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hd_pop_pc_nav_btn:hover {
    background: rgba(0,0,0,0.65);
}

.hd_pop_pc_nav_btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* 슬라이더 래퍼 (PC: 3개 너비로 overflow:hidden) */
.hd_pop_slider {
    overflow: hidden;
    width: 1376px; /* 452 × 3 + 10 × 2 */
}

/* 팝업 트랙: 가로 나열 + 슬라이드 트랜지션 */
.hd_pop_track {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    pointer-events: all;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* 개별 팝업 박스 */
.hd_pop_item {
    width: 452px; /* box-sizing:border-box + border 1px×2 = 이미지 정확히 450px */
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    pointer-events: all;
}

.hd_pop_body a {
    display: block;
}

.hd_pop_body img {
    width: 100%;
    height: auto;
    display: block;
}

/* 팝업 전체 공유 버튼 바 */
.hd_pop_global_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 4px 4px 0;
    background : rgba(0, 0, 0, 0.7);
}

.hd_pop_reject_all {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    cursor: pointer;
    padding: 4px 0;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hd_pop_reject_all:hover {
    color: #fff;
}

.hd_pop_close_all {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    cursor: pointer;
    padding: 4px 0;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hd_pop_close_all:hover {
    color: #fff;
}

/* 모바일 내비게이션 (PC에서 숨김) */
.hd_pop_nav_wrap {
    display: none;
}

/* ================================= */
/* 모바일 반응형 (767px 이하)         */
/* ================================= */
@media (max-width: 767.98px) {
    /* 팝업 래퍼: 모바일 단일 팝업 너비 제한 */
    .hd_pop_wrap {
        width: 90%;
        max-width: 320px;
    }

    /* 상단 바 숨김 */
    .hd_pop_topbar {
        display: none;
    }

    /* 슬라이더 오버플로우 해제 */
    .hd_pop_slider {
        overflow: visible;
        width: auto;
    }

    /* 트랙: 모바일은 block + transition 없음 + transform 초기화 */
    .hd_pop_track {
        display: block;
        transition: none !important;
        transform: none !important;
        padding: 0;
    }

    /* 모든 팝업 아이템 기본 숨김 */
    .hd_pop_item {
        display: none;
        width: 100%;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    /* 활성 팝업만 표시 */
    .hd_pop_item.mobile-active {
        display: block;
    }

    /* 모바일 내비게이션 */
    .hd_pop_nav_wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #111;
        padding: 6px 10px;
    }

    .hd_pop_nav_btn {
        background: transparent;
        border: 0;
        color: #aaa;
        font-size: 15px;
        cursor: pointer;
        padding: 4px 8px;
        line-height: 1;
    }

    .hd_pop_nav_btn:hover {
        color: #fff;
    }

    .hd_pop_indicators {
        display: flex;
        gap: 7px;
        align-items: center;
    }

    .hd_pop_dot {
        width: 8px;
        height: 8px;
        background: #555;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.2s;
    }

    .hd_pop_dot.active {
        background: #fff;
    }
}

.carousel-item {
    transition: transform 2s ease-in-out;
}

.carousel-item.active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-item.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%);
}

/* Multi-level dropdown styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

/* Only show submenu when directly hovering over the parent item */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > .dropdown-toggle:after {
    transform: rotate(-90deg);
    float: right;
    margin-top: 8px;
}

/* Sidebar Menu Styles */
.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    border-radius: 0.375rem;
    color : #000000
}

.nav-arrow {
    transition: transform 0.2s ease;
    display: inline-block;
}

.nav-link[aria-expanded="true"] .nav-arrow {
    transform: rotate(90deg);
}

.submenu {
    padding-left: 0;
    margin-top: 4px;
}

.submenu .nav-link {
    padding-left: 2rem;
}

.submenu .submenu {
    margin-top: 4px;
}

.submenu .submenu .nav-link {
    padding-left: 3rem;
}

/* 메뉴 단계별 강조 색상 */
.nav-link.active-level-1 {
    background-color: #0d6efd !important;
    color: white !important;
}

.nav-link.active-level-2 {
    background-color: #6ea8fe !important;
    color: white !important;
}

.nav-link.active-level-3 {
    background-color: #cfe2ff !important;
    color: #084298 !important;
}

/* Header Styles */
.app-header {
    height: 63px;
    z-index: 1050;
    margin-left: 280px;
    transition: margin-left 0.3s ease-in-out;
    background-color: #eeeeee;
}

.app-header .header-menu-width {
    width: 280px;
}

/* Sidebar Styles */
#sidebar {
    width: 280px;
    height: 100vh;
    position: fixed;
    overflow-y: auto;
    background-color: #efefef;
    border-left: 1px solid #b8b8b8;
    top: 0;
    right: 0;
    transition: transform 0.3s ease-in-out;
}

#sidebar .sidebar-header {
    height: 43px;
    display: flex;
    align-items: center;
    margin: -0.75rem -0.75rem 0 -0.75rem;
    padding: 0 1rem;
}

/* Main Content Styles */
#main-content {

    flex: 1;
    transition: margin-left 0.3s ease-in-out;
    background-color: #eeeeee;
}


.bg-body-tertiary {
    --bs-bg-opacity: 1;
    background-color: #e0e0e0 !important;
}

/* 모바일 반응형 사이드바 */
@media (max-width: 991.98px) {
    .app-header {
        margin-left: 0 !important;
    }
    
    #sidebar {
        transform: translateX(100%);
        z-index: 1040;
        border-left: 1px solid #b8b8b8;
        border-right: none;
    }
    
    #sidebar.show-mobile {
        transform: translateX(0);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    #main-content {
        margin-left: 0 !important;
    }
}

@media (min-width: 992px) {
    #sidebar {
        transform: translateX(0);
        right: auto;
        left: 0;
        border-right: 1px solid #b8b8b8;
        border-left: none;
    }
}

/* Show main dropdown on hover for desktop */
@media (min-width: 768px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    /* Hide all submenus by default */
    .dropdown-submenu .dropdown-menu {
        display: none !important;
    }
    
    /* Only show submenu when hovering directly over the submenu parent */
    .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
    }
}



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,form,fieldset,p,button{margin:0;padding:0}
body,h1,h2,h3,h4,input,button,textarea,pre,select{font-family:'Noto Sans KR','Inter','나눔고딕',NanumGothic,'맑은 고딕',Malgun Gothic,'돋움',Dotum,'굴림',Gulim,HelveticaNeue-Light,AppleSDGothicNeo-Light,sans-serif; font-size:16px;color:#0e0e0e; letter-spacing:-0.5px; }
body{text-align:left; word-break:break-word; overflow-x:hidden;}
img,fieldset,iframe{border:0 none}
img {max-width:100%;}
li{list-style:none}
input,select,button{vertical-align:middle}
img{vertical-align:top}
i,em,address{font-style:normal}
label,button{cursor:pointer}
a{color:#000;text-decoration:none; }
hr{display:none}
table{border-collapse:collapse;border-spacing:0}
caption{font-size:0; line-height:0; height:0}

/* Mobile Form Default */
input[type='text'],input[type='password'],input[type='image'],input[type='search']{-webkit-appearance:none;-webkit-border-radius:0}


* {box-sizing:border-box; -webkit-tap-highlight-color: rgba(0,0,0,0);}
body {overflow-x:hidden;}

select{ -webkit-appearance: none; -moz-appearance: none; appearance: none; -webkit-appearance:none;-webkit-border-radius:0 }
select::-ms-expand {display: none;}

::-webkit-input-placeholder { color:#8F8F8F;  font-weight: normal; font-size: 16px;  font-weight: 400; opacity:1; }

.mob {display: none;}

/* 공용 래퍼 */
.inner {width:100%; max-width:1250px; margin:0 auto; padding:0 20px; position:relative;}

/* 공용 버튼 */
.btnCenter {text-align:center;}

/* Head */
.head {position:fixed; top:0; left:0; width:100%; height:90px; z-index:100; transition:background-color .3s ease, color .3s ease;}
.head .headCont {position:relative; width:100%; height:100%;max-width:1470px; margin:0 auto; padding:0 15px; display:flex; align-items:center; justify-content:space-between; z-index:2;}
.head .h1Logo {width:155px; height:37px;}
.head .h1Logo a {display:block; width:100%; height:100%; background:url('../images/footLogo.png') no-repeat center/contain; text-indent:-999em; overflow:hidden; white-space:nowrap;}
.head .gnbWrap {margin-left: auto; margin-right: 145px;}
.head .gnbWrap .in > ul {display:flex; align-items:center; gap:100px;}
.head .gnbWrap .in > ul > li {position:relative;}
.head .gnbWrap .in > ul > li > a {display:inline-block; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#fff; letter-spacing:0; line-height:1; padding:10px 0;}
.head .gnbWrap .in > ul > li > .subMenu {display:none; position:absolute; top:calc(100% + 26px); left:50%; transform:translateX(-50%); padding:24px 0; min-width:120px; text-align:center;}
.head .gnbWrap .in > ul > li > .subMenu > li > a {display:block; padding:0 10px; line-height:43px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:400; color:#232d3b; white-space:nowrap;}
.head .gnbWrap .in > ul > li > .subMenu > li > a:hover {color:#6194cf;}
.head .langWrap {display:flex; align-items:center; font-family:'Inter','Noto Sans KR',sans-serif;}
.head .langWrap a {position:relative; display:inline-flex; align-items: center; font-size:16px; font-weight:500; color:rgba(255,255,255,.5); line-height:1;}
.head .langWrap a.on {color:#fff;}
.head .langWrap a + a:before {display: inline-flex; content:""; margin:0 12px; width:1px; height:14px; background:#fff;  opacity:.5;}
.head .bgGnb {position:absolute; left:0; top:90px; width:100%; height:0; background:#fff;  overflow:hidden;  z-index:1;}
.head .btnMemu {display:none; position:absolute; right:20px; top:50%; transform:translateY(-50%); width:30px; height:30px; z-index:3;}
.head .btnMemu button {width:100%; height:100%; background:url('../images/ico_mob_menu_white.svg') no-repeat center/contain; border:0; text-indent:-999em; overflow:hidden; white-space:nowrap;}

/* mainHead 스크롤/호버 + subHead 항상 흰배경 */
.mainHead.on, .mainHead.white, .subHead {background:#fff;}
.mainHead.on, .subHead {box-shadow:0 1px 0 rgba(0,0,0,.08);}
.mainHead.on .h1Logo a, .mainHead.white .h1Logo a, .subHead .h1Logo a {background-image:url('../images/h1_black.png');}
.mainHead.on .gnbWrap .in > ul > li > a, .mainHead.white .gnbWrap .in > ul > li > a, .subHead .gnbWrap .in > ul > li > a {color:#232d3b;}
.mainHead.on .langWrap a, .mainHead.white .langWrap a, .subHead .langWrap a {color:#97a1af;}
.mainHead.on .langWrap a.on, .mainHead.white .langWrap a.on, .subHead .langWrap a.on {color:#000;}
.mainHead.on .langWrap a + a:before, .mainHead.white .langWrap a + a:before, .subHead .langWrap a + a:before {background:#000; opacity:.3;}
.mainHead.on .btnMemu button, .mainHead.white .btnMemu button, .subHead .btnMemu button {background-image:url('../images/ico_mob_menu_black.svg');}
.mainHead.white .bgGnb, .subHead.white .bgGnb {height:143px;}
.mainHead.white .gnbWrap .in > ul > li.hasSub > .subMenu, .subHead.white .gnbWrap .in > ul > li.hasSub > .subMenu {display:block;}
.mainHead .gnbWrap .in > ul > li:hover > a, .subHead .gnbWrap .in > ul > li:hover > a {color:#6194cf;}
.head .gnbWrap .in > ul > li.current > a {color:#061a40;}

/* mainVisual */
.mainVisual {position:relative; width:100%;  min-height:720px; height:100vh; overflow:hidden; margin:0 auto; /*max-width:1920px;*/}
.mainVisual .inSlide {position:absolute; inset:0; width:100%; height:100%; z-index:1;}
.mainVisual .inSlide .swiper-wrapper, .mainVisual .inSlide .swiper-slide {width:100%; height:100%;}
.mainVisual .inSlide .swiper-slide:after {content:''; position: absolute; left:0; top:0; width: 100%; height: 100%; background:rgba(0,0,0,.1);   pointer-events:none; }
.mainVisual .slideBg {width:100%; height:100%; background-position:center; background-size:cover; background-repeat:no-repeat;}
.mainVisual .visualDim {position:absolute; inset:0; background:rgba(1,1,1,.1); z-index:2; pointer-events:none;}
.mainVisual .visualCont {position:absolute; top:0; left:0; width:100%; height:100%; z-index:3; padding-top:156px; pointer-events:none;}
.mainVisual .visualCont .inner {max-width:1470px;}
.mainVisual .visualTit {font-family:'Noto Sans KR',sans-serif; font-size:48px; font-weight:500; color:#fff; line-height:1.3; letter-spacing:-1px; pointer-events:none;}
.mainVisual .visualDesc {margin-top:34px; font-family:'Noto Sans KR',sans-serif; font-size:20px; font-weight:400; color:#fff; line-height:1.6; letter-spacing:-.5px; pointer-events:none;}
.mainVisual .swiper-pagination {position:static; margin-top:60px; text-align:left; line-height:1; font-size:0; pointer-events:auto;}
.mainVisual .swiper-pagination .swiper-pagination-bullet {width:8px; height:8px; margin:0 10px 0 0; background:#fff; opacity:.4; transition:opacity .3s ease, width .3s ease;}
.mainVisual .swiper-pagination .swiper-pagination-bullet-active {opacity:1; width:20px; border-radius:4px;}
.mainVisual .scrollDown {position:absolute; right:50px; bottom:50px; z-index:4; display:flex; flex-direction:column; align-items:center; gap:10px;}
.mainVisual .scrollDown span {writing-mode:vertical-rl; font-family:'Inter',sans-serif; font-size:14px; font-weight:500; color:#97a1af; letter-spacing:2px;}
.mainVisual .scrollDown:after {content:""; width:7px; height:19px; background:url('../images/ico_arrow_bottom.svg') no-repeat center/contain; animation:scrollDown 1.6s ease-in-out infinite;}
@keyframes scrollDown {
	0% { transform:translateY(0); opacity:0; }
	50% { opacity:1; }
	100% { transform:translateY(10px); opacity:0; }
}

/* mainStats */
.mainStats {position:relative; width:100%; padding:0 0 60px; background:url('../images/bg_main01.png') center/cover no-repeat;}
.mainStats .inner {overflow:hidden;}
.mainStats .statsSlide {overflow:hidden;}
.mainStats .statsList {display:flex; justify-content:center; gap:130px;}
.mainStats .statsList li {flex:0 0 auto; width:auto; position:relative; text-align:center; height:auto;}
.mainStats .statsList li + li:before {content:""; position:absolute; left:-44px; top:24px; width:1px; height:160px; background:#cdd5e0;}
.mainStats .statsList li .circle {position:relative; width:202px; height:202px; margin:0 auto; display:flex; flex-direction:column; align-items:center; justify-content:center;}
.mainStats .statsList li .circle .ring {position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; overflow:visible;}
.mainStats .statsList li .ico {position:relative; height:58px; display:flex; align-items:center; justify-content:center; margin-bottom:14px;}
.mainStats .statsList li .ico img {max-height:58px; width:auto; display:block;}
.mainStats .statsList li .num {position:relative; font-family:'Poppins','Noto Sans KR',sans-serif; font-size:34px; font-weight:700; color:#2e5078; line-height:1; letter-spacing:-1px;}
.mainStats .statsList li .num .plus {color:#6194cf;}
.mainStats .statsList li .txt {margin-top:24px; font-family:'Noto Sans KR',sans-serif; font-size:18px; font-weight:400; color:#000; line-height:1.4;}
.mainStats .busTit {text-align:center; font-family:'Poppins','Noto Sans KR',sans-serif; font-size:32px; font-weight:700; color:#000; line-height:1.2; margin-bottom: 60px;}

/* mainCards */
.mainCards {width:100%; padding:80px 0 105px; background:#f5f5f5;}
.mainCards .cardsList {display:flex; justify-content:space-between; gap:47px;}
.mainCards .cardsList li {flex:1 1 0; min-width:0;}
.mainCards .cardsList li .thumb {width:100%; aspect-ratio:477/307; overflow:hidden;}
.mainCards .cardsList li .thumb img {width:100%; height:100%; object-fit:cover; display:block;}
.mainCards .cardsList li .tit {margin-top:26px; font-family:'Noto Sans KR','Inter',sans-serif; font-size:24px; font-weight:700; color:#000; line-height:1.2;}
.mainCards .cardsList li .desc {margin-top:18px; font-family:'Noto Sans KR',sans-serif; font-size:17px; font-weight:300; color:#000; line-height:1.4;}

/* mainNews */
.mainNews {width:100%; padding:92px 0 110px; background:#fff;}
.mainNews .newsTit {text-align:center; font-family:'Poppins','Noto Sans KR',sans-serif; font-size:32px; font-weight:700; color:#000; line-height:1.2;}
.mainNews .moreBtn {position:absolute; right:20px; top:45px; padding-right:18px; font-family:'Poppins','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#000; line-height:1;}
.mainNews .moreBtn:after {content:""; position:absolute; right:0; top:50%; width:10px; height:6px; background:url('../images/ico_arrow.svg') no-repeat center/contain; transform:translateY(-50%);}
.mainNews .newsNav {display:none;}
.mainNews .newsList {margin-top:42px; border-top:2px solid #000;}
.mainNews .newsList li {border-bottom:1px solid #e5e5e5;}
.mainNews .newsList li a {display:flex; align-items:center; height:69px; padding:0 2px;}
.mainNews .newsList li .num {width:84px; text-align:center; font-family:'Noto Sans KR','Inter',sans-serif; font-size:20px; font-weight:600; color:#000; line-height:1;}
.mainNews .newsList li .tit {flex:1; font-family:'Noto Sans KR','Inter',sans-serif; font-size:20px; font-weight:400; color:#000; line-height:1.4; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.mainNews .newsList li .date {font-family:'Inter','Noto Sans KR',sans-serif; font-size:20px; font-weight:400; color:#aeaeae; line-height:1.4; padding-left:20px;}
.mainNews .newsList li a:hover .tit {text-decoration:underline;}

/* footer */
.footer {width:100%; background:#1a1b21;}
.footer .inner {min-height:202px; padding:42px 20px 42px; max-width:1510px; display:flex; align-items:flex-start; justify-content:space-between; position: relative;}
.footer .footLogo {width:157px; flex-shrink:0; }
.footer .footLogo img {width:100%; height:auto; display:block;}
.footer .footInfo {flex:1; margin-left:95px;}
.footer .footInfo .info {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:400; color:#fff; line-height:24px;}
.footer .footInfo .copyright {margin-top:24px; font-family:'Inter',sans-serif; font-size:14px; font-weight:400; color:#535353; line-height:24px;}
.footer .privacyBtn {position: absolute; right:0; top:42px; flex-shrink:0; display:inline-flex; align-items:center; justify-content:center; width:141px; height:37px; border:1px solid #fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:400; color:#fff; line-height:1;}
.footer .privacyBtn:hover {background:#fff; color:#1a1b21;}
.footer .topBtn {display:none;}

/* 공용 폼 - selectBox / inputBox */
.selectBox {position:relative; display:inline-block;}
.selectBox select {width:100%; height:39px; padding:0 32px 0 14px; border:1px solid #000; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:500; color:#000; line-height:1; cursor:pointer; border-radius:0;}
.selectBox:after {content:""; position:absolute; right:14px; top:50%; transform:translateY(-50%); width:12px; height:6px; background:url('../images/ico_select.svg') no-repeat center / contain; pointer-events:none;}

/* subSec - 서브 페이지 공통 */
.subSec {padding:90px 0;}

/* subTitle - 서브 페이지 타이틀 */
.subTitle {position:relative; width:100%; padding:74px 0 73px; background:#fff;}
.subTitle .pageTit {position:relative; text-align:center; font-family:'Inter','Noto Sans KR',sans-serif; font-size:43px; font-weight:800; color:#000; line-height:1; padding-bottom:20px;}
.subTitle .pageTit:after {content:""; position:absolute; left:50%; bottom:0; width:100px; height:1px; background:#000; transform:translateX(-50%); display: none;}

/* fundWrap */
.fundWrap {padding-bottom:80px;}
.fundWrap .filterWrap {display:flex; justify-content:space-between; align-items:center; gap:20px;}
.fundWrap .filterWrap .selectBox.sel1 {width:228px;}
.fundWrap .filterWrap .searchBox {display:flex; align-items:center; gap:6px;}
.fundWrap .filterWrap .searchBox .selectBox {width:101px;}
.fundWrap .filterWrap .searchBox .inputBox {position:relative; width:369px;}
.fundWrap .filterWrap .searchBox .inputBox input {width:100%; height:39px; padding:0 50px 0 14px; border:1px solid #000; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#000; border-radius:0;}
.fundWrap .filterWrap .searchBox .inputBox input:focus {outline:none;}
.fundWrap .filterWrap .searchBox .inputBox .btnSearch {position:absolute; right:0; top:0; width:39px; height:39px; padding:0; border:0; background:url('../images/ico_search.svg') no-repeat center / 16px auto; cursor:pointer;}
.fundWrap .filterWrap .searchBox .inputBox .btnSearch span {position:absolute; left:-9999px;}

/* fundList */
.fundList {display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:29px;}
.fundList > li {position:relative; height:400px; padding:39px 38px 0; border:1px solid #dadada; background:#fff;}
.fundList > li .num {font-family:'Inter','Noto Sans KR',sans-serif; font-size:32px; font-weight:500; color:#061a40; line-height:1;}
.fundList > li .tit {margin-top:22px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:36px; font-weight:400; color:#000; line-height:1.2; letter-spacing:-1px;}
.fundList > li .desc {margin-top:14px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:18px; font-weight:400; color:#535353; line-height:1.4;}
.fundList > li .info {position:absolute; left:38px; right:38px; bottom:41px; display:flex; align-items:center;}
.fundList > li .info > li {flex:1; position:relative; text-align:center; padding:0 20px;}
.fundList > li .info > li + li:before {content:""; position:absolute; left:0; top:50%; transform:translateY(-50%); width:1px; height:84px; background:#dadada;}
.fundList > li .info .lb {font-family:'Inter','Noto Sans KR',sans-serif; font-size:18px; font-weight:500; color:#000; line-height:1.4;}
.fundList > li .info .val {margin-top:14px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:32px; font-weight:900; color:#000; line-height:1;}
.fundList > li .info .val .unit {font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:600; margin-left:2px;}
.fundList > li .info .val.state {color:#fff; background: #0353A4; padding:9px 30px; border-radius:50px; display: inline-flex; font-size: 20px; font-weight: 500;}
.fundList > li .info .val.end {color:#A8A8A8; background: #DADADA;}

/* pagingWrap */
.pagingWrap {display:flex; justify-content:center; align-items:center; gap:6px; margin-top:60px;}
.pagingWrap a {display:flex; align-items:center; justify-content:center; width:40px; height:40px; border:1px solid #dadada; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; color:#000; transition:background-color .2s ease, color .2s ease, border-color .2s ease;}
.pagingWrap a:hover {border-color:#061a40; color:#061a40;}
.pagingWrap a.on {background:#061a40; border-color:#061a40; color:#fff;}
.pagingWrap a.paging {position:relative; text-indent:-9999px; overflow:hidden;}
.pagingWrap a.paging:after {content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:14px; height:14px; background-position:center; background-repeat:no-repeat; background-size:contain;}
.pagingWrap a.paging.first:after {background-image:url('../images/ico_paging01.svg');}
.pagingWrap a.paging.prev:after {background-image:url('../images/ico_paging02.svg');}
.pagingWrap a.paging.next:after {background-image:url('../images/ico_paging03.svg');}
.pagingWrap a.paging.last:after {background-image:url('../images/ico_paging04.svg');}

/* moreWrap (모바일 전용 더보기) */
.moreWrap {margin-top:16px;}
.moreWrap .moreListBtn {display:flex; align-items:center; justify-content:center; height:52px; border:1px solid #dadada; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; color:#000;}

/* pageTit 폭 modifier (서브 타이틀 언더라인 길이) */
.subTitle .pageTit.pageTit-wide:after {width:209px;}

/* tabWrap - Film / Equity 탭 */
.tabWrap {display:flex; height:58px; border-bottom:1px solid #000;}
.tabWrap > a {flex:1; display:flex; align-items:center; justify-content:center; height:58px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:600; color:#000; line-height:1; transition:color .2s ease;}
.tabWrap > a.on {position:relative; border:1px solid #000; border-bottom:0; background:#fff; margin-bottom:-1px;}
.tabWrap > a:hover {color:#061a40;}

/* portWrap */
.portWrap {padding-bottom:80px;}
.portWrap .tabWrap {margin-top:0;}
.portWrap .filterWrap {margin-bottom: 30px; display:flex; justify-content:space-between; align-items:center; gap:20px;}
.portWrap .filterWrap .selectBox.sel1 {width:228px;}
.portWrap .filterWrap .searchBox {display:flex; align-items:center; gap:6px;}
.portWrap .filterWrap .searchBox .selectBox {width:101px;}
.portWrap .filterWrap .searchBox .inputBox {position:relative; width:369px;}
.portWrap .filterWrap .searchBox .inputBox input {width:100%; height:39px; padding:0 50px 0 14px; border:1px solid #000; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#000; border-radius:0;}
.portWrap .filterWrap .searchBox .inputBox input:focus {outline:none;}
.portWrap .filterWrap .searchBox .inputBox .btnSearch {position:absolute; right:0; top:0; width:39px; height:39px; padding:0; border:0; background:url('../images/ico_search.svg') no-repeat center / 16px auto; cursor:pointer;}
.portWrap .filterWrap .searchBox .inputBox .btnSearch span {position:absolute; left:-9999px;}

/* portList - 4컬럼 카드 그리드 */
.portList {display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; margin-top:30px;}
.portList > li .portItem {display:block; cursor:pointer;}
.portList > li .thumb {width:100%; aspect-ratio:353/527; background:#d9d9d9 center/cover no-repeat; transition:opacity .2s ease;}
.portList > li .name {margin-top:21px; text-align:center; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#000; line-height:1.4;}
.portList > li .portItem:hover .thumb {opacity:.85;}

/* prdPop - 프로젝트 상세 팝업 */
.prdPop {display:none; position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,.4);}
.prdPop.on {display:block;}
.prdPop .popInner {position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:1266px; max-width:calc(100% - 40px);}
.prdPop .popClose {position:absolute; right:0; top:-65px; width:42px; height:42px; padding:0; border:0; background:url('../images/ico_pop_close.svg') no-repeat center / contain; cursor:pointer;}
.prdPop .popClose span {position:absolute; left:-9999px;}
.prdPop .popBox {display:flex; height:552px; background:#fff;}
.prdPop .popBox .popThumb {width:480px; height:100%; flex-shrink:0; background:#262626 center/cover no-repeat;}
.prdPop .popBox .popCont {flex:1; min-width:0; padding:65px 40px 40px;}
.prdPop .popBox .popHead {display:flex; align-items:center; justify-content:space-between; gap:20px;}
.prdPop .popBox .popTit {flex:1; min-width:0; font-family:'Inter','Noto Sans KR',sans-serif; font-size:32px; font-weight:500; color:#000; line-height:1.2;}
.prdPop .popBox .popMoreBtn {flex-shrink:0; display:inline-flex; align-items:center; justify-content:center; width:214px; height:54px; border:1px solid #000; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:18px; font-weight:500; color:#000;}
.prdPop .popBox .popMoreBtn:hover {background:#000; color:#fff;}
.prdPop .popBox .popDesc {margin-top:28px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:18px; font-weight:400; color:#535353; line-height:1.6;}

/* 팝업 열렸을 때 body 스크롤 잠금 */
body.popOpen {overflow:hidden;}

/* policyWrap - 개인정보처리방침 */
.policyWrap {padding:10px 0 100px;}
.policyWrap .policyIntro {font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:400; color:#535353; line-height:1.8; letter-spacing:-.3px;}
.policyWrap .policyEffect {margin-top:24px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#000; line-height:1.6;}
.policyWrap .policySec {margin-top:60px;}
.policyWrap .policyHead {padding-bottom:18px; border-bottom:1px solid #dadada; font-family:'Inter','Noto Sans KR',sans-serif; font-size:22px; font-weight:700; color:#000; line-height:1.3;}
.policyWrap .policyHead + * {margin-top:22px;}
.policyWrap .policySubHead {margin-top:24px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:17px; font-weight:600; color:#0e0e0e; line-height:1.4;}
.policyWrap .policySubHead + * {margin-top:8px;}
.policyWrap .policyTxt {margin-top:8px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:400; color:#535353; line-height:1.8; letter-spacing:-.3px;}
.policyWrap .policyDot {margin-top:18px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#0e0e0e; line-height:1.6;}
.policyWrap .policyList {margin-top:10px; padding-left:14px;}
.policyWrap .policyList > li {position:relative; padding-left:14px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:400; color:#535353; line-height:1.8;}
.policyWrap .policyList > li:before {content:"-"; position:absolute; left:0; top:0; color:#535353;}
.policyWrap .policySubList {margin-top:6px; padding-left:18px;}
.policyWrap .policySubList > li {padding-left:0; font-family:'Inter','Noto Sans KR',sans-serif; font-size:15px; font-weight:400; color:#808080; line-height:1.8;}
.policyWrap .policySubList > li:before {display:none;}

/* contactWrap */
.contactWrap {padding-bottom:80px;}

/* tabWrap solid 변형 (Contact Us 활성 탭은 검정 배경) */
.tabWrap.solid > a.on {background:#000; color:#fff; border:1px solid #000;}
.tabWrap.solid > a.on:hover {color:#fff;}

/* formWrap - 공용 폼 */
.formWrap .formRow {display:flex; align-items:flex-start; gap:24px; padding:18px 0; border-bottom:1px solid #eee;}
.formWrap .formRow:first-of-type {border-top:1px solid #000;}
.formWrap .formLb {flex-shrink:0; width:120px; padding-top:10px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:600; color:#000; line-height:1.4;}
.formWrap .formLb.req:before {content:"* "; color:#e74c3c;}
.formWrap .formField {flex:1; min-width:0;}
.formWrap .formField .selectBox {min-width:200px;}
.formWrap .formInput {width:100%; height:40px; padding:0 14px; border:1px solid #dadada; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#000; border-radius:0;}
.formWrap .formInput:focus {outline:none; border-color:#000;}
.formWrap .formTextarea {width:100%; padding:12px 14px; border:1px solid #dadada; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#000; line-height:1.6; resize:vertical; border-radius:0;}
.formWrap .formTextarea:focus {outline:none; border-color:#000;}

/* email row */
.formWrap .formField-email {display:flex; align-items:center; gap:10px;}
.formWrap .formField-email .formInput {flex:1; max-width:240px;}
.formWrap .formField-email .emailAt {flex-shrink:0; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#000;}
.formWrap .formField-email .selectBox {width:180px; min-width:auto;}

/* file row */
.formWrap .formField-file {position:relative; display:flex; align-items:center; gap:10px;}
.formWrap .formField-file .fileName {flex:1; max-width:400px; background:#fff;}
.formWrap .formField-file .fileBtn {flex-shrink:0; display:inline-flex; align-items:center; justify-content:center; width:100px; height:40px; background:#999; color:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:500; cursor:pointer;}
.formWrap .formField-file .fileBtn:hover {background:#777;}
.formWrap .formField-file input[type="file"] {position:absolute; left:-9999px; width:1px; height:1px; opacity:0;}

/* form 내부 selectBox 높이 */
.formWrap .selectBox select {height:40px;}

/* agreeBox */
.agreeBox {margin-top:60px;}
.agreeBox .agreeTit {font-family:'Inter','Noto Sans KR',sans-serif; font-size:18px; font-weight:700; color:#000; line-height:1.4;}
.agreeBox .agreeContent {height:200px; margin-top:16px; padding:24px; border:1px solid #dadada; background:#fff; overflow-y:auto;}
.agreeBox .agreeContent p {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#535353; line-height:1.8;}
.agreeBox .agreeContent p + p {margin-top:6px;}
.agreeBox .agreeRadio {display:flex; align-items:center; gap:24px; margin-top:18px;}
.agreeBox .agreeRadio .agreeQuestion {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#000;}
.agreeBox .agreeRadio .radioGroup {display:flex; gap:18px;}
.agreeBox .agreeRadio .radioItem {position:relative; display:inline-flex; align-items:center; gap:6px; cursor:pointer; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#000;}
.agreeBox .agreeRadio .radioItem input {position:absolute; left:-9999px; opacity:0;}
.agreeBox .agreeRadio .radioItem .radioBox {position:relative; display:inline-block; width:14px; height:14px; border:1px solid #000; background:#fff;}
.agreeBox .agreeRadio .radioItem input:checked + .radioBox {background:#000;}
.agreeBox .agreeRadio .radioItem input:checked + .radioBox:after {content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:6px; height:6px; background:#fff;}

/* btType1 - 메인 강조 버튼 (등록하기 등) */
.btType1 {display:inline-flex; align-items:center; justify-content:center; min-width:198px; height:54px; padding:0 30px; background:#1873c4; color:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:600; border-radius:0; border:none;}
.btType1:hover {background:#125ea0;}
.btnCenter {margin-top:50px; text-align:center;}

/* mapWrap - 지도 + 정보 카드 */
.mapWrap {position:relative; margin-top:64px; height:605px;}
.mapWrap .mapBox {position:absolute; inset:0; overflow:hidden; background:#eef0f2;}
.mapWrap .mapBox .root_daum_roughmap {width:100% !important; height:100% !important;}
.mapWrap .mapBox .root_daum_roughmap .wrap_map {height:100% !important;}
.mapWrap .mapBox .root_daum_roughmap .wrap_map iframe, .mapWrap .mapBox .root_daum_roughmap iframe {width:100% !important; height:100% !important;}
.mapWrap .mapBox .root_daum_roughmap .cont {display:none;}
.mapWrap .mapInfo {position:absolute; right:42px; top:41px; width:452px; padding:50px 33px 40px; background:#fff; border-radius:12px; box-shadow:0 10px 10px rgba(0,0,0,.14); z-index:5;}
.mapWrap .mapInfo .infoCompany {font-family:'Inter','Noto Sans KR',sans-serif; font-size:24px; font-weight:500; color:#000; line-height:1.2;}
.mapWrap .mapInfo .infoItem {margin-top:24px;}
.mapWrap .mapInfo .infoItem .lb {font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:600; color:#000; line-height:24px;}
.mapWrap .mapInfo .infoItem .val {font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:400; color:#000; line-height:24px;}
.mapWrap .mapInfo .naverBtn {display:flex; align-items:center; justify-content:center; height:42px; margin-top:16px; border:1px solid #000; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#000; transition:background-color .2s ease, color .2s ease;}
.mapWrap .mapInfo .naverBtn:hover {background:#000; color:#fff;}

/* teamWrap */
.teamWrap {padding-bottom:80px;}
.teamWrap .filterWrap {display:flex; align-items:center;}
.teamWrap .filterWrap .selectBox.sel1 {width:228px;}

/* teamList - 3컬럼 카드 */
.teamList {display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin-top:30px;}
.teamList > li .memberCard {position:relative; height:383px; padding:48px 35px 30px; border:1px solid #dadada; border-radius:25px; background:#fff;}
.teamList > li .memberHead {display:flex; align-items:flex-end; gap:14px;}
.teamList > li .memberName {flex-shrink:0; font-family:'Inter','Noto Sans KR',sans-serif; font-size:36px; font-weight:500; color:#000; line-height:1; letter-spacing:-1px;}
.teamList > li .memberTitle {font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#061a40; line-height:1.4;}
.teamList > li .memberCareer {margin-top:24px;}
.teamList > li .memberCareer > li {position:relative; padding-left:14px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:400; color:#808080; line-height:32px;}
.teamList > li .memberCareer > li:before {content:"·"; position:absolute; left:2px; top:0; font-size:18px; line-height:32px;}
.teamList > li .memberTags {position:absolute; left:35px; right:35px; bottom:30px; display:flex; align-items:center; gap:18px;}
.teamList > li .memberTags .tagsLabel {flex-shrink:0; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#000; line-height:1;}
.teamList > li .memberTags .tagsList {display:flex; gap:8px; flex-wrap:wrap;}
.teamList > li .memberTags .tagsList > li {min-width:71px; height:30px; padding:0 8px; border-radius:6px; background:#e3f0ff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:500; color:#061a40; line-height:30px; text-align:center;}

/* boardWrap */
.boardWrap {padding-bottom:80px;}
.boardWrap .filterWrap {display:flex; justify-content:space-between; align-items:center; gap:20px; margin-top:40px;}
.boardWrap .filterWrap .filterLeft {display:flex; align-items:center; gap:8px;}
.boardWrap .filterWrap .filterLeft .selectBox {width:110px;}
.boardWrap .filterWrap .searchBox {display:flex; align-items:center; gap:6px;}
.boardWrap .filterWrap .searchBox .selectBox {width:101px;}
.boardWrap .filterWrap .searchBox .inputBox {position:relative; width:369px;}
.boardWrap .filterWrap .searchBox .inputBox input {width:100%; height:39px; padding:0 50px 0 14px; border:1px solid #000; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#000; border-radius:0;}
.boardWrap .filterWrap .searchBox .inputBox input:focus {outline:none;}
.boardWrap .filterWrap .searchBox .inputBox .btnSearch {position:absolute; right:0; top:0; width:39px; height:39px; padding:0; border:0; background:url('../images/ico_search.svg') no-repeat center / 16px auto; cursor:pointer;}
.boardWrap .filterWrap .searchBox .inputBox .btnSearch span {position:absolute; left:-9999px;}

/* boardList */
.boardList {margin-top:20px;}
.boardList .boardHead {display:flex; align-items:center; height:50px; padding:0 20px; border-top:2px solid #000; border-bottom:1px solid #dadada; background:#f9f9f9;}
.boardList .boardHead span {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:600; color:#000;}
.boardList > ul > li {display:flex; align-items:center; min-height:58px; padding:12px 20px; border-bottom:1px solid #eee; background:#fff; transition:background .15s ease;}
.boardList > ul > li:hover {background:#f5f9ff;}
.boardList > ul > li.notice {background:#fafbff;}
.boardList > ul > li.empty {justify-content:center; height:200px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; color:#808080;}
.boardList .col-num {width:80px; flex-shrink:0; text-align:center; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#000;}
.boardList .col-cate {width:120px; flex-shrink:0; text-align:center; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#535353;}
.boardList .col-tit {flex:1; min-width:0; font-family:'Inter','Noto Sans KR',sans-serif; font-size:15px; color:#000;}
.boardList .col-tit a {display:block; color:#000; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; transition:color .15s ease;}
.boardList .col-tit a:hover {color:#061a40;}
.boardList .col-hit {width:80px; flex-shrink:0; text-align:center; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#535353;}
.boardList .col-writer {width:130px; flex-shrink:0; text-align:center; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#535353; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.boardList .col-date {width:100px; flex-shrink:0; text-align:center; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#535353;}
.boardList .notice-badge {display:inline-flex; align-items:center; justify-content:center; padding:3px 9px; background:#061a40; color:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:12px; font-weight:600; line-height:1.4;}

/* boardActions */
.boardActions {display:flex; justify-content:flex-end; margin-top:16px;}
.boardActions .btnWrite {display:inline-flex; align-items:center; justify-content:center; height:39px; padding:0 22px; background:#000; border:1px solid #000; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:500; color:#fff; transition:background .2s ease, border-color .2s ease;}
.boardActions .btnWrite:hover {background:#061a40; border-color:#061a40;}

/* boardView */
.boardViewWrap {padding-bottom:80px;}

/* viewHead */
.viewHead {padding:30px 0 24px; border-bottom:2px solid #000;}
.viewHead .viewCategory {display:inline-flex; align-items:center; justify-content:center; padding:3px 10px; background:#061a40; color:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:12px; font-weight:600; line-height:1.4; margin-bottom:12px;}
.viewHead .viewTitle {font-family:'Inter','Noto Sans KR',sans-serif; font-size:24px; font-weight:700; color:#000; line-height:1.4; word-break:keep-all;}
.viewHead .viewMeta {display:flex; align-items:center; gap:20px; margin-top:14px;}
.viewHead .viewMeta .metaItem {display:flex; align-items:center; gap:6px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#808080;}
.viewHead .viewMeta .metaItem .metaLabel {font-weight:500; color:#535353;}

/* viewBody */
.viewBody {padding:30px 0; border-bottom:1px solid #eee; min-height:200px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; color:#333; line-height:1.8; word-break:keep-all;}

/* viewExtra - 추가 필드(링크, 유튜브 등) */
.viewExtra {border-bottom:1px solid #eee;}
.viewExtra .extraRow {display:flex; align-items:flex-start; gap:0; border-top:1px solid #eee;}
.viewExtra .extraRow:first-child {border-top:none;}
.viewExtra .extraLb {flex-shrink:0; width:120px; padding:16px 20px; background:#f9f9f9; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:600; color:#000; border-right:1px solid #eee;}
.viewExtra .extraVal {flex:1; padding:16px 20px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#333;}
.viewExtra .extraVal a {color:#061a40; text-decoration:underline;}

/* viewFiles - 첨부파일 */
.viewFiles {padding:20px 0; border-bottom:1px solid #eee;}
.viewFiles .filesLabel {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:600; color:#000; margin-bottom:12px;}
.viewFiles .fileItem {display:flex; align-items:center; gap:14px; padding:14px 16px; border:1px solid #dadada; background:#fafafa; margin-bottom:8px;}
.viewFiles .fileItem:last-child {margin-bottom:0;}
.viewFiles .fileItem .fileThumb {width:80px; height:80px; flex-shrink:0; display:flex; align-items:center; justify-content:center; overflow:hidden; background:#eee;}
.viewFiles .fileItem .fileThumb img {width:100%; height:100%; object-fit:cover; display:block;}
.viewFiles .fileItem .fileThumb .fileIcon {font-size:48px; color:#aaa;}
.viewFiles .fileItem .fileMeta {flex:1; min-width:0;}
.viewFiles .fileItem .fileMeta .fileName {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:500; color:#000;}
.viewFiles .fileItem .fileMeta .fileName a {color:#061a40;}
.viewFiles .fileItem .fileMeta .fileDetail {margin-top:6px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:13px; color:#808080;}

/* viewImage - 대표 이미지 */
.viewImage {padding:20px 0; border-bottom:1px solid #eee;}
.viewImage .imgLabel {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:600; color:#000; margin-bottom:12px;}
.viewImage .imgBox img {max-width:100%; height:auto; display:block;}
.viewImage .imgMeta {margin-top:10px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:13px; color:#808080;}
.viewImage .imgMeta a {color:#061a40;}

/* viewPdf */
.viewPdf {padding:20px 0; border-bottom:1px solid #eee;}
.viewPdf .pdfLabel {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:600; color:#000; margin-bottom:12px;}
.viewPdf .pdfCtrl {display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;}
.viewPdf .pdfCtrl .ctrlGroup {display:flex; align-items:center; gap:6px;}
.viewPdf .pdfCtrl .ctrlBtn {display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; border:1px solid #dadada; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#000; cursor:pointer; transition:border-color .15s ease;}
.viewPdf .pdfCtrl .ctrlBtn:hover {border-color:#061a40; color:#061a40;}
.viewPdf .pdfCtrl .ctrlTxt {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#333;}
.viewPdf .pdfCanvas {overflow:auto; background:#525659; text-align:center; max-height:800px;}
.viewPdf .pdfCanvas canvas {max-width:100%; height:auto;}
.viewPdf .pdfMeta {margin-top:10px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:13px; color:#808080;}
.viewPdf .pdfMeta a {color:#061a40;}

/* viewYoutube */
.viewYoutube {padding:20px 0; border-bottom:1px solid #eee;}
.viewYoutube .youtubeLabel {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:600; color:#000; margin-bottom:12px;}
.viewYoutube .youtubeEmbed {position:relative; padding-bottom:56.25%; height:0; overflow:hidden;}
.viewYoutube .youtubeEmbed iframe {position:absolute; top:0; left:0; width:100%; height:100%; border:0;}
.viewYoutube .youtubeMeta {margin-top:10px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:13px; color:#808080;}
.viewYoutube .youtubeMeta a {color:#061a40;}

/* viewBtns - 하단 버튼 */
.viewBtns {display:flex; align-items:center; justify-content:space-between; margin-top:24px; gap:8px;}
.viewBtns .viewBtnGroup {display:flex; align-items:center; gap:8px;}
.viewBtns .btnList, .viewBtns .btnEdit, .viewBtns .btnDelete {display:inline-flex; align-items:center; justify-content:center; height:39px; padding:0 22px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:500; line-height:1; cursor:pointer; border-radius:0; transition:background .2s ease, border-color .2s ease, color .2s ease;}
.viewBtns .btnList {background:#fff; border:1px solid #000; color:#000;}
.viewBtns .btnList:hover {background:#000; color:#fff;}
.viewBtns .btnEdit {background:#000; border:1px solid #000; color:#fff;}
.viewBtns .btnEdit:hover {background:#061a40; border-color:#061a40;}
.viewBtns .btnDelete {background:#fff; border:1px solid #dadada; color:#808080;}
.viewBtns .btnDelete:hover {background:#e00; border-color:#e00; color:#fff;}

/* viewComment - 댓글 */
.viewComment {margin-top:40px;}
.viewComment .commentTitle {font-family:'Inter','Noto Sans KR',sans-serif; font-size:18px; font-weight:700; color:#000; padding-bottom:14px; border-bottom:2px solid #000;}
.viewComment .commentList {margin-top:0;}
.viewComment .commentItem {display:flex; align-items:flex-start; gap:16px; padding:20px 0; border-bottom:1px solid #eee; position:relative;}
.viewComment .commentMeta {flex-shrink:0; width:130px;}
.viewComment .commentMeta .commenter {font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:600; color:#000;}
.viewComment .commentMeta .commentDate {margin-top:4px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:12px; color:#808080;}
.viewComment .commentText {flex:1; min-width:0; font-family:'Inter','Noto Sans KR',sans-serif; font-size:15px; color:#333; line-height:1.7; word-break:keep-all; padding-top:2px;}
.viewComment .commentActions {flex-shrink:0; display:flex; gap:6px;}
.viewComment .commentActions .cmnBtn {display:inline-flex; align-items:center; justify-content:center; height:28px; padding:0 12px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:12px; font-weight:500; cursor:pointer; border-radius:0; transition:background .15s ease, border-color .15s ease, color .15s ease;}
.viewComment .commentActions .cmnBtnEdit {background:#fff; border:1px solid #dadada; color:#535353;}
.viewComment .commentActions .cmnBtnEdit:hover {border-color:#061a40; color:#061a40;}
.viewComment .commentActions .cmnBtnDel {background:#fff; border:1px solid #dadada; color:#535353;}
.viewComment .commentActions .cmnBtnDel:hover {border-color:#e00; color:#e00;}

/* viewCommentWrite - 댓글 작성 */
.viewCommentWrite {margin-top:24px;}
.viewCommentWrite .writeLabel {font-family:'Inter','Noto Sans KR',sans-serif; font-size:15px; font-weight:600; color:#000; margin-bottom:10px;}
.viewCommentWrite textarea {width:100%; padding:14px 16px; border:1px solid #dadada; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; color:#333; line-height:1.6; resize:vertical; border-radius:0;}
.viewCommentWrite textarea:focus {outline:none; border-color:#061a40;}
.viewCommentWrite .writeSubmit {display:flex; justify-content:flex-end; margin-top:8px;}
.viewCommentWrite .btnCommentSubmit {display:inline-flex; align-items:center; justify-content:center; height:39px; padding:0 22px; background:#000; border:1px solid #000; font-family:'Inter','Noto Sans KR',sans-serif; font-size:14px; font-weight:500; color:#fff; cursor:pointer; border-radius:0; transition:background .2s ease, border-color .2s ease;}
.viewCommentWrite .btnCommentSubmit:hover {background:#061a40; border-color:#061a40;}

/* 관리자 로그인 */
.card.shadow { border: none !important;  border-radius: 0 !important; box-shadow: none !important; padding: 20px 20px !important;  max-width:640px; margin:0 auto; text-align: center;}
.card.shadow .card-title { font-size: 2rem; font-weight: 800; color: #333; margin-bottom: 20px !important; border-bottom: 2px solid #333 !important; padding-bottom: 30px; }
.card.shadow .form-label { font-weight: 700; color: #333; font-size: 0.95rem; margin-bottom: 10px; width: 100px; }
.card.shadow .form-control { border: 1px solid #ddd !important; border-radius: 0 !important; padding: 12px; font-size: 0.9rem; color: #333; width: 100%; }
.card.shadow .form-control::placeholder { color: #aaa; }
.card.shadow .mb-3 { border-bottom: 1px solid #eee; padding-bottom: 25px; margin-bottom: 25px !important; display: flex; align-items:center; }
.card.shadow .mb-3:last-of-type { border-bottom: none; }
.card.shadow .btn-primary { background-color: #2b468b !important; border: none !important; border-radius: 6px !important; padding: 15px !important; font-size: 1.1rem; font-weight: 600; width: 140px; margin: 0 auto; display: block;  color:#fff;}
.card.shadow .d-flex { margin-top: 30px; justify-content: center !important; gap: 15px !important; }
.card.shadow .text-decoration-none { color: #333 !important; font-size: 0.9rem; font-weight: 500; }
.card.shadow .text-muted { color: #ddd !important; font-size: 0.8rem; }
.card.shadow hr { display: none; }

.teamTit {padding-bottom: 15px; margin:90px 0 30px ; font-weight: 600; font-size: 24px; color:#000; border-bottom: 2px solid #000; }

.subTopBg {text-align: center; height:540px; background:url('../images/subTop_team.jpg') no-repeat center / cover; color:#fff; position: relative;}
.subTopBg.philosophy {background-image:url('../images/subTop_philosophy2.jpg');}
.subTopBg.fund {background-image:url('../images/subTop_fund2.jpg');}
.subTopBg.fund:after {content:''; position: absolute; left:0; top:0; width: 100%; height: 100%; background:rgba(0,0,0,.25);}
.subTopBg.portfolio {background-image:url('../images/subTop_portfolio.jpg');}
.subTopBg .tit01 {font-family:'Inter','Noto Sans KR',sans-serif; font-size:42px; line-height: 42px; font-weight:900; padding:254px 0 36px; position: relative; z-index: 2;}
.subTopBg .tit02 { font-size:20px; position: relative; z-index: 2; }
.subTopBg.philosophy  {text-align: left;}
.subTopBg.philosophy .tit01 {padding-top: 140px;}

.subSec:has(.subTopBg) {padding-top: 0;}
.subSec:has(.philosophyWrap) {padding-bottom: 0;;}

/* 태블릿 */
@media all and (max-width:1460px) {
	.head .headCont {padding:0 40px;}
	.head .gnbWrap .in > ul {gap:60px;}
	.footer .inner {padding:42px 40px;}
	.footer .footInfo {margin-left:60px;}
	.mainStats .statsList {gap:60px;}
	.mainStats .busTit {margin-bottom: 50px; font-size: 24px;}
}


/* 모바일 */
@media all and (max-width:1280px) {
	.mob {display:block;}

	/* Head */
	.head {height:70px;}
	.head .headCont {padding:0 20px; justify-content:center;}
	.head .h1Logo {width:146px; height:32px; position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);}
	.head .bgGnb {display:none;}
	.head .gnbWrap {display:none; margin:0; position:fixed; left:0; top:70px; width:100%; height:calc(100vh - 70px); background:#fff; transform:none; padding:50px 0 0; overflow-y:auto;}
	.head .gnbWrap .in {width:100%;}
	.head .gnbWrap .in > ul {flex-direction:column; align-items:stretch; gap:0;}
	.head .gnbWrap .in > ul > li {width:100%; border-top:1px solid #e5e5e5; position:relative;}
	.head .gnbWrap .in > ul > li:first-child {border-top:none;}
	.head .gnbWrap .in > ul > li:last-child {border-bottom:1px solid #e5e5e5;}
	.head .gnbWrap .in > ul > li > a {display:flex; align-items:center; justify-content:space-between; width:100%; height:59px; padding:0 24px; color:#232d3b; font-size:16px; font-weight:500;}
	.head .gnbWrap .in > ul > li > a:after {content:""; flex-shrink:0; width:10px; height:10px; background:url('../images/ico_arrow_menu_right.svg') no-repeat center/contain; transition:transform .25s ease;}
	.head .gnbWrap .in > ul > li.hasSub > a:after {width:10px; height:10px; background-image:url('../images/ico_arrow_menu_bottom.svg');}
	.head .gnbWrap .in > ul > li.hasSub.on > a:after {transform:rotate(180deg);}
	.head .gnbWrap .in > ul > li > .subMenu {display:none; position:static; width:100%; min-width:0; padding:13px 0; transform:none; background:#f4f4f4; text-align:left;}
	.head .gnbWrap .in > ul > li > .subMenu > li {border:0;}
	.head .gnbWrap .in > ul > li > .subMenu > li > a {display:block; padding:0 24px; line-height:51px; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:400; color:#232d3b;}
	.head .langWrap {display:none;}
	.head .btnMemu {display:block; left:14px; right:auto; width:24px; height:24px;}
	.head.gnbOpen {background:#fff;}
	.head.gnbOpen .headCont {border-bottom:1px solid #000;}
	.head.gnbOpen .h1Logo a {background-image:url('../images/h1_black.png');}
	.head.gnbOpen .btnMemu button {background-image:url('../images/ico_mob_menu_black.svg');}
	.head.gnbOpen .langWrap {display:flex; position:fixed; right:24px; top:96px; z-index:101;}
	.head.gnbOpen .langWrap a {color:#97a1af;}
	.head.gnbOpen .langWrap a.on {color:#000;}
	.head.gnbOpen .langWrap a + a:before {background:#cdd5e0; opacity:1;}

	/* mainVisual */
	.mainVisual {min-height:0; height:calc(100vh - 300px); max-height:none;}
	.mainVisual .inSlide {height:100%;}
	.mainVisual .inSlide .swiper-slide:after {content:''; position: absolute; left:0; top:0; width: 100%; height: 100%; background:rgba(0,0,0,.2);   pointer-events:none; }
	.mainVisual .visualDim {background:rgba(1,1,1,.2);}
	.mainVisual .visualCont {padding-top:111px;}
	.mainVisual .visualCont .inner {text-align:center;}
	.mainVisual .visualTit {font-size:24px; line-height:1.3; letter-spacing:-.5px;}
	.mainVisual .visualDesc {margin-top:30px; font-size:12px; line-height:1.6;}
	.mainVisual .swiper-pagination {margin:40px 0 0; text-align:center;}
	.mainVisual .swiper-pagination .swiper-pagination-bullet {width:5px; height:5px; margin:0 4px;}
	.mainVisual .swiper-pagination .swiper-pagination-bullet-active {width:14px; border-radius:3px;}
	.mainVisual .scrollDown {display:none;}

	/* mainStats - 모바일은 swiper로 동작 */
	.mainStats {padding:0 0 50px; background-image:url('../images/bg_main01_mob.png');}
    .mainStats .statsSlide {overflow:visible;}
	.mainStats .statsList {display:flex; gap:0; justify-content: flex-start; }
	.mainStats .statsList li {width:80% !important;}
	.mainStats .statsList li + li:before {display:none;}
	.mainStats .statsList li .ico {height:65px; margin-bottom:14px;}
	.mainStats .statsList li .ico img {max-height:65px;}
	.mainStats .statsList li .num {font-size:42px;}
	.mainStats .statsList li .txt {margin-top:30px; font-size:18px;}
	.mainStats .busTit {margin-bottom: 30px;}

	/* mainCards */
    .subSec:has(.mainCards) {padding-top: 40px;}
	.mainCards {padding:15px 0 40px; background:#f5f5f5;}
	.mainCards .cardsList {flex-direction:column; gap:52px;}
	.mainCards .cardsList li .thumb {aspect-ratio:350/225;}
	.mainCards .cardsList li .tit {margin-top:18px; font-size:20px;}
	.mainCards .cardsList li .desc {margin-top:18px; font-size:15px; font-weight:300;}

	/* mainNews */
	.mainNews {padding:50px 0;}
	.mainNews .newsTit {text-align:left; font-size:24px;}
	.mainNews .moreBtn {display:none;}
	.mainNews .newsNav {display:flex; gap:8px; position:absolute; right:20px; top:0;}
	.mainNews .newsNav button {position:relative; width:32px; height:32px; padding:0; border:1px solid #cdd5e0; background:#fff; border-radius:50%;}
	.mainNews .newsNav button.next {background:#6194cf; border-color:#6194cf;}
	.mainNews .newsNav button span {position:absolute; left:-9999px;}
	.mainNews .newsNav button:after {content:""; position:absolute; left:50%; top:50%; width:7px; height:11px; transform:translate(-50%,-50%); background:url('../images/ico_arrow_prev.svg') no-repeat center/contain;}
	.mainNews .newsNav button.next:after {background-image:url('../images/ico_arrow_next.svg');}
	.mainNews .newsList {margin-top:18px;}
	.mainNews .newsList li a {flex-wrap:wrap; height:auto; padding:18px 8px;}
	.mainNews .newsList li .num {display:none;}
	.mainNews .newsList li .tit {flex:none; width:100%; font-size:16px; white-space:normal; line-height:1.4;}
	.mainNews .newsList li .date {width:100%; padding-left:0; margin-top:8px; font-size:14px;}

	/* subSec - 서브 페이지 (모바일) */
	.subSec {padding-top:70px; padding-bottom: 0;}
	.subTitle {padding:52px 0 31px;}
	.subTitle .pageTit {font-size:36px;}

	/* fundWrap (모바일) */
	.fundWrap {padding-bottom:0;}
	.fundWrap .inner {padding:0;}
	.fundWrap .filterWrap {flex-direction:column; align-items:stretch; gap:8px; padding:0 28px;}
	.fundWrap .filterWrap .selectBox.sel1 {width:100%;}
	.fundWrap .filterWrap .searchBox {width:100%;}
	.fundWrap .filterWrap .searchBox .selectBox {width:103px; flex-shrink:0;}
	.fundWrap .filterWrap .searchBox .inputBox {flex:1; width:auto;}

	/* fundList (모바일) */
	.fundList {grid-template-columns:1fr; gap:45px; margin-top:33px; padding:29px 15px 0; background:#f5f5f5;}
	.fundList > li {padding:39px 15px 36px; height: 380px;}
	.fundList > li .tit {font-size:23px; line-height:1.55; letter-spacing:-1.04px;}
	.fundList > li .desc {margin-top:14px; font-size:18px;}
	.fundList > li .info {position:absolute; left:23px; right:23px; bottom:36px;}
	.fundList > li .info > li {padding:0 0;}
	.fundList > li .info > li + li:before {height:84px;}
	.fundList > li .info .lb {font-size:16px;}
	.fundList > li .info .val {font-size:20px;}
	.fundList > li .info .val.state{font-size:16px; padding:5px 10px;}

	/* pagingWrap / moreWrap (모바일) */
	.pagingWrap.pc {display:none;}
	.moreWrap.mob {display:block; padding:16px 27px 29px; margin-top:0; background:#f5f5f5;}

	/* portWrap (모바일) */
	.portWrap {padding-bottom:0;}
	.portWrap > .inner {padding:0;}
	.portWrap .tabWrap {height:48px; margin:0 28px;}
	.portWrap .tabWrap > a {height:48px; font-size:14px;}
	.portWrap .filterWrap {flex-direction:column; align-items:stretch; gap:8px; margin-top:30px; padding:0 28px;}
	.portWrap .filterWrap .selectBox.sel1 {width:100%;}
	.portWrap .filterWrap .searchBox {width:100%;}
	.portWrap .filterWrap .searchBox .selectBox {width:103px; flex-shrink:0;}
	.portWrap .filterWrap .searchBox .inputBox {flex:1; width:auto;}

	/* policyWrap (모바일) */
	.policyWrap {padding:0 0 60px;}
	.policyWrap .policyIntro, .policyWrap .policyTxt, .policyWrap .policyList > li {font-size:14px; line-height:1.7;}
	.policyWrap .policyEffect, .policyWrap .policyDot {font-size:14px;}
	.policyWrap .policyHead {font-size:18px; padding-bottom:14px;}
	.policyWrap .policySubHead {font-size:15px;}
	.policyWrap .policySec {margin-top:40px;}

	/* contactWrap (모바일) */
	.contactWrap > .inner {padding:0;}
	.contactWrap .tabWrap {height:48px; margin:0 0 20px;}
	.contactWrap .tabWrap > a {height:48px; font-size:14px;}

	/* formWrap (모바일) */
	.contactWrap  { padding:0 28px 50px;}
	.contactWrap  .formRow {flex-direction:column; align-items:stretch; gap:8px; padding:14px 0; gap:0;}
	.contactWrap  .formLb {width:100%; padding-top:0; margin-bottom: 10px;}
	.contactWrap  .formField .selectBox, .contactWrap .formField-email .selectBox {width:100%; min-width:0;}
	.contactWrap  .formField-email {flex-wrap:wrap;}
	.contactWrap  .formField-email .formInput {flex:1; max-width:none; min-width:0;}
	.contactWrap  .formField-email .selectBox {flex:1 1 100%;}
	.contactWrap  .formField-file .fileName {max-width:none;}
	.contactWrap .agreeBox {margin-top:30px; padding:0px;}
	.contactWrap .agreeBox .agreeContent {height:160px; padding:16px;}
	.contactWrap .agreeBox .agreeRadio {flex-direction:column; align-items:flex-start; gap:10px;}
	.contactWrap .btnCenter {margin-top:30px; padding:0 28px;}
	.contactWrap .btType1 {width:100%; min-width:0; height:48px;}

	.mapWrap {margin-top:30px; height:auto;}
	.mapWrap .mapBox {position:relative; inset:auto; height:300px;}
	.mapWrap .mapInfo {position:relative; top:auto; right:auto; width:100%; padding:30px 24px 40px; border-radius:0; box-shadow:none;}
	.mapWrap .mapInfo .infoCompany {font-size:22px;}
	.mapWrap .mapInfo .naverBtn {height:48px;}

	/* teamWrap (모바일) */
	.teamWrap {padding-bottom:0;}
	.teamWrap > .inner {padding:0;}
	.teamWrap .filterWrap {padding:0 28px;}
	.teamWrap .filterWrap .selectBox.sel1 {width:100%;}
	.teamTit {margin:30px 27px 30px; font-size: 20px;  }
	/* teamList (모바일) - 1컬럼 */
	.teamList {grid-template-columns:1fr; gap:16px; margin-top:0; padding:24px 15px 0;  background:#f5f5f5; }
	.teamList > li .memberCard {height:auto; min-height:340px; padding:28px 20px;}
	.teamList > li .memberName {font-size:28px;}
	.teamList > li .memberTags {position:relative; left:auto; right:auto; bottom:auto; margin-top:24px;}
	.teamWrap .moreWrap.mob {padding:24px 27px 30px; margin-top:0; background:#f5f5f5;}

	/* boardWrap (모바일) */
	.boardWrap {padding-bottom:0;}
	.boardWrap > .inner {padding:0;}
	.boardWrap .filterWrap {flex-direction:column; align-items:stretch; gap:8px; padding:0 28px; margin-top:30px;}
	.boardWrap .filterWrap .filterLeft {flex-wrap:wrap;}
	.boardWrap .filterWrap .filterLeft .selectBox {flex:1;}
	.boardWrap .filterWrap .searchBox {width:100%;}
	.boardWrap .filterWrap .searchBox .selectBox {width:103px; flex-shrink:0;}
	.boardWrap .filterWrap .searchBox .inputBox {flex:1; width:auto;}

	/* boardList (모바일) */
	.boardList {margin-top:16px; padding:0 28px;}
	.boardList .boardHead {display:none;}
	.boardList > ul > li {flex-wrap:wrap; gap:4px 12px; padding:14px 0; border-bottom:1px solid #eee;}
	.boardList > ul > li.empty {padding:40px 0; justify-content:center;}
	.boardList .col-num {width:auto; text-align:left; font-size:12px; color:#808080;}
	.boardList .col-cate {width:auto; text-align:left; font-size:12px;}
	.boardList .col-tit {width:100%; flex:none; font-size:15px; order:-1;}
	.boardList .col-tit a {white-space:normal; word-break:keep-all;}
	.boardList .col-hit {width:auto; font-size:12px;}
	.boardList .col-writer {width:auto; font-size:12px;}
	.boardList .col-date {width:auto; font-size:12px;}
	.boardActions {padding:12px 28px 0;}

	/* portList (모바일) - 2컬럼 */
	.portList {grid-template-columns:1fr 1fr; gap:16px 14px; margin-top:30px; padding:24px 27px 0; background:#f5f5f5;}
	.portList > li .name {margin-top:14px; font-size:14px;}
	.portWrap .moreWrap.mob {padding:24px 27px 30px; margin-top:0; background:#f5f5f5;}

	/* prdPop (모바일) */
	.prdPop .popInner {width:100%; max-width:none; padding:0 16px;}
	.prdPop .popClose {top:-50px; right:16px; width:36px; height:36px;}
	.prdPop .popBox {flex-direction:column; height:auto; max-height:80vh; overflow-y:auto;}
	.prdPop .popBox .popThumb {width:100%; height:240px;}
	.prdPop .popBox .popCont {padding:30px 24px;}
	.prdPop .popBox .popHead {flex-direction:column; align-items:stretch; gap:18px;}
	.prdPop .popBox .popTit {font-size:24px;}
	.prdPop .popBox .popMoreBtn {width:100%; height:48px; font-size:16px;}
	.prdPop .popBox .popDesc {margin-top:20px; font-size:16px;}

	/* footer */
	.footer {background:#1a1b21;}
	.footer .inner {flex-direction:column; align-items:stretch; justify-content:flex-start; padding:0; gap:0; min-height:0; max-width:none; text-align:center;}
	.footer .privacyBtn {order:1; width:100%; max-width:none; height:52px; border:0; border-bottom:1px solid rgba(255,255,255,.2); border-radius:0; font-size:14px; position: static;}
	.footer .privacyBtn:hover {background:transparent; color:#fff;}
	.footer .footLogo {order:2; width:148px; margin:40px auto 0;}
	.footer .footInfo {order:3; flex:none; margin:30px 0 0; padding:0 20px;}
	.footer .footInfo .info {font-size:14px;}
	.footer .footInfo .copyright {margin-top:24px;}
	.footer .topBtn {order:4; position:relative; display:flex; align-items:center; justify-content:center; width:60px; height:60px; margin:30px auto 30px; background:#061a40; border:0; border-radius:10px; padding:0;}
	.footer .topBtn span {position:absolute; left:-9999px;}
	.footer .topBtn:after {content:""; width:60px; height:60px;  transform:rotate(180deg); background:url('../images/ico_arrow_bottom.svg') center no-repeat;}
}



/* Portfolio - Film/Equity 상하 분리 섹션 */
.portWrap .portSection + .portSection {margin-top:100px;}
.portWrap .portSecTit {font-family:'Inter','Noto Sans KR',sans-serif; font-size:28px; font-weight:700; color:#000; line-height:1.2; padding-bottom:20px; border-bottom:1px solid #000;}
.portWrap .portSection .portList {margin-top:40px;}

/* 썸네일 이미지 */
.portList > li .thumb {background:#d9d9d9; overflow:hidden;}
.portList > li .thumb img {width:100%; height:100%; object-fit:cover; display:block;}

/* Equity - 정사각형 */
.portList.equityList > li .thumb {aspect-ratio:1/1; border:1px solid #ddd}

/* 더보기 버튼 */
.portWrap .portMoreBtn {display:flex; align-items:center; justify-content:center; width:220px; height:52px; margin:40px auto 0; border:1px solid #000; background:#fff; font-family:'Inter','Noto Sans KR',sans-serif; font-size:16px; font-weight:500; color:#000; line-height:1; transition:background .2s ease, color .2s ease;}
.portWrap .portMoreBtn:hover {background:#000; color:#fff;}


/* 모바일 */
@media all and (max-width:1280px) {
	.portWrap .portSection + .portSection {margin-top:50px;}
	.portWrap .portSecTit {margin:0 28px; padding-bottom:14px; font-size:20px;}
	.portWrap .portSection .portList {margin-top:0; padding:24px 27px 50px;}
	.portWrap .portMoreBtn {width:calc(100% - 56px); height:48px; margin:16px 28px 0; font-size:14px;}
	::-webkit-input-placeholder { font-size: 14px; } 

	.subTopBg {height:310px; background:url('../images/subTop_team_mob.jpg') no-repeat center / cover; color:#fff;}
    .subTopBg.philosophy {background-image:url('../images/subTop_philosophy2.jpg');}
    .subTopBg.portfolio {background-image:url('../images/subTop_portfolio_mob.jpg');}
	.subTopBg .tit01 {font-size:36px; line-height: 26px; font-weight:900; padding:130px 20px 26px }
	.subTopBg .tit02 { font-size:16px; }


    .subTopBg.philosophy {min-height:310px;  padding-bottom: 20px; height: auto;}
    .subTopBg.philosophy .tit01 {padding:100px 0 20px 0; font-size: 25px;}
    .subTopBg.philosophy .tit02 {font-size: 13px;}

    .subTopBg .pc {display: none;}


}


/* 260605 수정 */
.mainStats .statsList li .num {color:#0a2240}
.mainStats .statsList li .num .plus{color:#0a2240}
.portList.equityList {grid-template-columns:repeat(5, 1fr)}

@media all and (max-width:1280px) { 
    .portList.equityList {grid-template-columns:1fr 1fr;}
}