.pageBGC{
    background-color: #f1f1f1;
}
#bsWrapper{
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    row-gap: 32px;
}
.bsBox{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 20px 12px;
    height: 100%;
    font-size: 16px;
}
.bsBox-img {
    text-align: center;
}
.bsBox-img img{
    border-radius: 50%;
    width: 220px;
    aspect-ratio: 1 / 1;
}
.bsBox-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0 0;
    color: #333;
}
.bsBox-name{
    font-family: 'UTM AvoBold';
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.bsBox-name span{
    color: #1b9564;
}
.bsBox-mota ul{
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 8px;
    list-style: none;
}
.bsBox-info ul li{
    padding: 5px 0;
    text-align: center;
}
.bsBox-info ul li:not(:last-child){
    border-bottom: 1px solid #ccc;
}
.bsBox-link{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    background: #1b9564;
    background: linear-gradient(90deg, #46bc8d, #1b9564);
}
.bsBox-link i {
    margin-left: 10px;
    font-size: 20px;
}






#bsHead{
    display: flex;
    align-items: center;
    max-width: 750px;
    margin: auto;
    padding: 25px 40px;
    gap: 32px;
    border-radius: 20px;
    position: relative;
    background: #1b9564;
    background: linear-gradient(90deg, #46bc8d, #1b9564);
    
}
#bsHead:before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../../images/bs-info-bg.png);
    background-position: right top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
#bsHead > div{
    position: relative;
    z-index: 1;
}
.postBs-img{
    width: 220px;
    aspect-ratio: 1 / 1;
    position: relative;
}
.postBs-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.postBs-text{
    flex: 1;
    color: #fff;
    font-size: 15px;
}
.postBs-name{
    font-family: 'UTM AvoBold';
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 400;
}
.postBs-ck{
    margin-bottom: 12px;
}
.postBs-mota ul{
    margin-top: 7px;
    margin-bottom: 7px;
    padding-left: 18px;
    list-style: disc;
}
.postBs-mota ul li{
    padding: 4px 0;
}
.postBs-inf {
    margin: 0;
    padding-left: 0;
}
.postBs-inf li {
    display: flex;
    align-items: center;
    padding: 4px 0;
}
.postBs-inf li span {
    display: inline-block;
    width: 155px
}
.postBs-inf li span i {
    font-size: 18px;
    margin-right: 5px
}
.postBs-inf li b{
    flex: 1;
}
.postBs-inf li b i{
    color: #ffe400;
    margin-right: 3px;
}
#bsDetail{
    background-color: #fff;
    border-radius: 20px;
    margin-top: 32px;
    padding: 10px 20px;
}
#bsDetail ul{
    padding-left: 25px !important;
}
#bsDetail p, #bsDetail li{
    text-align: justify;
}
#bsDetail-btn{
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
#bsDetail-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 7px);
    max-width: 200px;
    height: 45px;
    border-radius: 10px;
    color: #fff;
    margin: 0 15px;
    text-transform: uppercase;
    font-weight: 700;
}
.postBs-book{
    background: rgb(26, 141, 164);
    background: linear-gradient(240deg, rgba(26, 141, 164, 1) 0%, rgba(29, 158, 133, 1) 100%);
}
.postBs-live{
    background: rgb(255, 51, 51);
    background: linear-gradient(240deg, rgba(255, 51, 51, 1) 0%, rgba(246, 127, 35, 1) 100%);
}
#bsDetail-btn a i{
    font-size: 20px;
    margin-right: 5px;
}



@media screen and (max-width: 767.98px) {
    #bsWrapper{
        margin-left: 12px;
        margin-right: 12px;
        row-gap: 16px;
    }

    #bsHead{
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }
    .postBs-name, .postBs-ck{
        text-align: center;
    }
    #bsDetail-btn{
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    #bsDetail-btn a{
        width: 100%;
        
    }
    .postDetail{
        font-size: 16px;
        line-height: 1.5;
    }

}

@media screen and (max-width: 575.98px) {
    
}