/* ===========================================
   BLOG FEATURED PROFILE
=========================================== */

.single-post .premium-profile-card{
    display:flex;
    align-items:stretch;
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.single-post .profile-left{
    flex:0 0 320px;
    width:320px;
}

.single-post .profile-right{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:35px;
}

.single-post .profile-buttons{
    display:flex;
    gap:15px;
    width:100%;
    margin-top:30px;
}

.single-post .profile-buttons .btn-whatsapp,
.single-post .profile-buttons .btn-view{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    height:56px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    box-sizing:border-box;
}

.single-post .profile-buttons .btn-view{
    background:#111827;
    color:#fff;
}

.single-post .profile-buttons .btn-whatsapp{
    background:#128C43;
    color:#fff;
}

@media(max-width:992px){

.single-post .premium-profile-card{
    flex-direction:column;
}

.single-post .profile-left{
    width:100%;
    flex:0 0 auto;
}

.single-post .profile-buttons{
    flex-direction:column;
}

}
