/* 고객센터 */

#jb-help{
    padding:40px 0 80px;
    background:#f5f7fb;
    min-height:calc(100vh - 120px);
}

/* 헤더 */

.jb-help-header{
    margin-bottom:32px;
}

.jb-help-header h2{
    font-size:34px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    letter-spacing:-1px;
}

.jb-help-header p{
    font-size:16px;
    color:#666;
    line-height:1.6;
}

/* 그리드 */

.jb-help-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

/* 카드 */

.jb-help-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:26px;
    transition:all .2s;
}

.jb-help-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.jb-help-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.jb-help-icon.danger{
    background:#fef2f2;
    color:#ef4444;
}

.jb-help-icon i{
    width:24px;
    height:24px;
}

.jb-help-card h3{
    font-size:20px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    letter-spacing:-0.5px;
}

.jb-help-card p{
    font-size:15px;
    color:#666;
    line-height:1.6;
    word-break:keep-all;
}

/* 안내 */

.jb-help-info{
    margin-top:28px;
    padding:22px;
    border-radius:16px;
    background:#fff;
    border:1px solid #e5e7eb;
}

.jb-help-info strong{
    display:block;
    font-size:17px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
}

.jb-help-info p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

/* 모바일 */

@media (max-width:768px){

    #jb-help{
        padding:24px 0 50px;
    }

    .jb-help-header{
        margin-bottom:24px;
    }

    .jb-help-header h2{
        font-size:28px;
    }

    .jb-help-header p{
        font-size:14px;
    }

    .jb-help-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .jb-help-card{
        padding:22px 18px;
        border-radius:16px;
    }

    .jb-help-icon{
        width:46px;
        height:46px;
        border-radius:12px;
        margin-bottom:16px;
    }

    .jb-help-icon i{
        width:22px;
        height:22px;
    }

    .jb-help-card h3{
        font-size:18px;
        margin-bottom:8px;
    }

    .jb-help-card p{
        font-size:14px;
    }

    .jb-help-info{
        margin-top:20px;
        padding:18px;
        border-radius:14px;
    }

}