/* BASIC css start */
/* 공통 */
body .h-white {display:block;}
body .h-black {display:none;}

/* 헤더 */
body #header {background: none;}
body #header .inner {border:none;}
body #header .inner .all-menu .gnb {border-top:1px solid var(--color_grey);}

/* 메인배너 */
.banner-cont {position:relative;}
.banner-cont img {max-width:100%;}
.banner-cont .info {position:absolute; width:100%; bottom:50px; text-align:center;}
.banner-cont .info h3 {font-weight: 500; font-size: 13px; line-height: 16px; color:var(--color_white); margin-bottom:2px;}
.banner-cont .info a {font-weight: 500; font-size: 13px; line-height: 16px; color:var(--color_white); display:inline-block; border-bottom:1px solid var(--color_white); text-decoration:underline; text-underline-position: under;}

/* 푸터 */
body #footer {margin:0;}


/* 공통 */
body .h-white {
    display: block;
}

body .h-black {
    display: none;
}

/* 헤더 */
body #header {
    background: none;
}

body #header .inner {
    border: none;
}

body #header .inner .all-menu .gnb {
    border-top: 1px solid var(--color_grey);
}

/* 메인 전체 */
.main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* 공통 배너 */
.banner-cont {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.banner-cont img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* 배너 텍스트 */
.banner-cont .info {
    position: absolute;
    width: 100%;
    bottom: 50px;
    left: 0;
    text-align: center;
    box-sizing: border-box;
}

.banner-cont .info h3 {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: var(--color_white);
    margin-bottom: 2px;
}

.banner-cont .info a {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: var(--color_white);
    display: inline-block;
    border-bottom: 1px solid var(--color_white);
    text-decoration: underline;
    text-underline-position: under;
}

/* 서브배너 2개 가로 100% 정렬 */
.sub-banner-row {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* 서브배너 각각 정확히 50% */
.sub-banner-row .banner-cont {
    flex: 0 0 50%;
    width: 50% !important;
    max-width: 50% !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    overflow: hidden;
}

/* 서브배너 이미지 */
.sub-banner-row .banner-cont img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
}

/* 서브배너 텍스트 위치 */
.sub-banner-row .banner-cont .info {
    bottom: 25px;
}

/* 푸터 */
body #footer {
    margin: 0;
}


/* 하단 100% 배너 */
.full-banner {
    width: 100% !important;
    max-width: 100% !important;
    clear: both;
}

.full-banner img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
}

/* BASIC css end */

