/* BASIC css start */
.footer {
    width: 100%;
    min-width: 1230px;
    margin-top: 70px;
    border-top: 1px solid #dddddd;
} 
/* 1400px 중앙 정렬 컨테이너 */
.footer-inner { 
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* --- 상단 영역 (흰색 배경) --- */
.footer-top {
    background-color: #fff;
    padding: 48px 0 43px;
}
.footer-left {width: auto;}
.footer-right {width: auto;}

/* 로고 및 슬로건 */
.footer-logo img { height: auto; margin-bottom: 15px; }
.footer-slogan {font-size: 18px;color: #333333;margin-bottom: 52px;margin-top: 6px;}

/* 네비게이션 메뉴 */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 22px;
}
.footer-nav li a {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}
.footer-nav li a.text-black {color: #000;text-decoration: underline;text-underline-offset: 3px;}

a.fw-bold.text-black {}

/* 하단 회사 정보 */
.footer-info {font-size: 18px;color: #777777;line-height: 1.8;}
.footer-info p {}
.footer-info p.mt-15 {margin-top: 60px;}
.footer-info span {
    display: inline-block;
    position: relative;
    padding-right: 12px;
    margin-right: 10px;
}
.footer-info span::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 18px;
    background-color: #ddd;
}
.footer-info span:last-child::after { display: none; }
.footer-info span:last-child { padding-right: 0; margin-right: 0; }

.btn-cert {font-size: 13px;color: #777777;position: relative;top: -2px;}

/* 우측 고객센터 */
.cs-center { margin-bottom: 40px; }
.cs-title { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.cs-title strong {font-size: 30px;font-weight: bold;color: #000;}
.btn-cs {
    background-color: var(--maincolor);
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 400;
    width: 130px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-hours {font-size: 18px;color: #555555;line-height: 1.7;}

/* 계좌 정보 */
.bank-info {font-size: 18px;color: #000000;line-height: 1.6;font-weight: bold;}
.bank-info p {}
.bank-info strong { font-weight: 600; }
/*
.acc-holder {margin-top: 15px !important;color: #000000;font-size: 18px;font-weight: 400;}
*/
.bank-info > span {display: inline-block;width: 100%;margin-top: 15px;font-weight: normal;}

/* --- 하단 영역 (회색 배경) --- */
.footer-bottom {
    background-color: #f5f5f5;
    padding: 42px 0 75px;
    border-top: 1px solid #dddddd;
}
.footer-bottom .footer-inner { align-items: center; }
.btm-left {font-size: 18px;color: #999999;line-height: 1.6;}
.btm-left .copyright { margin-top: 5px; }
.btm-left .btn-cert {
    color: #999;
}
/* SNS 아이콘 */
.sns-links {display: flex;gap: 30px;}
.sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}












/* ========================================
   모바일 버전으로 보기
======================================== */

/* 기본: 모든 환경에서 숨김 */
.mobile-version-wrap {
    display: none;
}

/*
 * 스마트폰·태블릿처럼
 * 기본 입력장치가 터치인 환경에서만 노출
 */
@media screen and (hover: none) and (pointer: coarse) {

    .mobile-version-wrap {
        display: block;
        width: 100%;
        min-width: 1230px;
        background: #000000;
        border-top: 1px solid #222222;
    }

    .mobile-version-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        min-height: 120px;
        padding: 25px 20px;
        box-sizing: border-box;
        color: #ffffff;
        font-size: 38px;
        font-weight: 500;
        line-height: 1.4;
        letter-spacing: -0.02em;
        text-align: center;
        text-decoration: none;
    }

    .mobile-version-button__arrow {
        color: #ffffff;
        font-size: 26px;
        line-height: 1;
    }
}
/* BASIC css end */

