/*
|--------------------------------------------------------------------------
| FAQ Client Page
|--------------------------------------------------------------------------
*/

.data-faq,
.data-faq-detail{
    background:#fff;
}

.faq-inner,
.faq-detail-inner{
    padding-bottom:60px;
}

.faq-search-box{
    margin-bottom:30px;
}

.faq-search-form{
    display:flex;
    gap:12px;
    align-items:center;
    max-width:820px;
}

.faq-search-form input{
    flex:1;
    height:52px;
    border:1px solid #d6dfec;
    border-radius:12px;
    padding:0 16px;
    font-size:16px;
    outline:none;
}

.faq-search-form input:focus{
    border-color:#006837;
    box-shadow:0 0 0 3px rgba(0,104,55,.1);
}

.faq-search-form button{
    height:52px;
    border:0;
    border-radius:12px;
    padding:0 22px;
    background:#006837;
    color:#fff;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
}

.faq-search-form button i{
    margin-right:6px;
}

.faq-search-reset{
    height:52px;
    display:inline-flex;
    align-items:center;
    padding:0 18px;
    border-radius:12px;
    background:#f3f5f7;
    color:#555;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
}

.faq-main{
}

.faq-list{
    display:block;
}

.faq-item{
    border-bottom:1px solid #e6e6e6;
    background:#fff;
}

.faq-item details{
    display:block;
}

.faq-question{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:22px 0;
    font-size:20px;
    line-height:1.45;
    font-weight:800;
    color:#163f74;
}

.faq-question::-webkit-details-marker{
    display:none;
}

.faq-question i{
    font-size:15px;
    color:#006837;
    transition:transform .2s ease;
}

.faq-item details[open] .faq-question i{
    transform:rotate(180deg);
}

.faq-answer{
    padding:0 0 24px;
    font-size:17px;
    line-height:1.75;
    color:#444;
}

.faq-answer p{
    margin:0 0 14px;
}

.faq-answer p:last-child{
    margin-bottom:0;
}

.faq-detail-link{
    margin-top:16px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#006837;
    font-weight:800;
    text-decoration:none;
}

.faq-detail-link:hover{
    text-decoration:underline;
}

.faq-empty{
    padding:28px 0;
    font-size:17px;
    color:#666;
}

.faq-pagination{
    margin-top:30px;
}

.faq-detail-box{
    max-width:920px;
}

.faq-detail-content-html{
    font-size:18px;
    line-height:1.8;
    color:#444;
}

.faq-detail-content-html p{
    margin:0 0 16px;
}

.faq-detail-back{
    margin-top:32px;
}

.faq-detail-back a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#006837;
    font-weight:800;
    text-decoration:none;
}

.faq-detail-back a:hover{
    text-decoration:underline;
}

@media(max-width:900px){
    .faq-inner,
    .faq-detail-inner{
        padding-left:15px;
        padding-right:15px;
    }

    .faq-search-form{
        flex-direction:column;
        align-items:stretch;
    }

    .faq-search-form button,
    .faq-search-reset{
        width:100%;
        justify-content:center;
    }

    .faq-main,
    .faq-detail-box{
        max-width:100%;
    }
}

@media(max-width:640px){
    .faq-question{
        font-size:18px;
        padding:18px 0;
    }

    .faq-answer,
    .faq-detail-content-html{
        font-size:16px;
    }
}



.faq-show-wrap{
    max-width:920px;
}

.faq-show-card{
    background:#fff;
    border:1px solid #e6ecf3;
    border-radius:18px;
    padding:32px;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.faq-show-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:20px;
    padding:8px 14px;
    border-radius:999px;
    background:#f2faf5;
    color:#006837;
    font-size:15px;
    font-weight:800;
}

.faq-show-content{
    font-size:18px;
    line-height:1.85;
    color:#3f4650;
}

.faq-show-content p{
    margin:0 0 16px;
}

.faq-show-content p:last-child{
    margin-bottom:0;
}

.faq-show-content-blocks{
    margin-top:34px;
}

.faq-detail-back{
    margin-top:28px;
}

.faq-detail-back a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#006837;
    font-weight:800;
    text-decoration:none;
}

.faq-detail-back a:hover{
    text-decoration:underline;
}