#blog_post_conteudo {
    width: 100%;
    height: auto;
    padding-right: 50px;
    font-size: 16px;
    
}

.blog_post_conteudo_revert * {
    all: revert;
    img {
        max-width: 100%;
    }
}

/* compartilhamento */
.links_share {
    width: 100%;
    display: block;
    height: auto;
    padding: 20px 0;
    margin: 20px 0;
}

.links_share strong {
    margin-bottom: 10px;
    display: block;
    width: 100%;
    font-weight: 700;
}

.a2a_kit {display: flex;}

.a2a_kit a {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    padding: 12px 5px 0px 5px;
}
.a2a_button_whatsapp {background-color: rgb(18, 175, 10);}
.a2a_button_facebook {background-color: rgb(24, 119, 242);}
.a2a_button_twitter {background-color: rgb(29, 155, 240);}
.a2a_button_linkedin {background-color: rgb(0, 123, 181);}
.a2a_button_telegram {background-color: rgb(44, 165, 224);}
.a2a_button_pinterest {background-color: rgb(230, 0, 35);}

/* CSS RESPONSIVE */
@media (max-width: 900px) {
    #blog_post_conteudo {
        padding-right: 0;
    }

    .mobile_post .flex {
        flex-wrap: wrap;
    }

    .mobile_post .col_9,
    .mobile_post .col_3 {
        width: 100%;
    }    
}

@media (max-width: 600px) {

    .mobile_post .col_4 {
        width: 100%;
    }
    
}

/* ----------------------- */

.box_list_post {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #EEE;
}

.box_list_post .tag {
    display: block;
    font-size: 16px;
    color: var(--color-primary);
}

.box_list_post .tag a {
    display: inline-block;
    line-height: 18px;
    color: var(--color-primary);
    border-left: 1px solid var(--color-border);
    padding-left: 7px;
    padding-right: 5px;
}

.box_list_post .tag a:first-child {
    border-left: 0;
    padding-left: 0;
}

.box_list_post .cover {
    width: 100%;
    max-width: 15%; 
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
}

.box_list_post .text {
    width: calc(100% - 15% - 30px);
}

.box_list_post .text h3 {
    margin-top: 10px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    transition: .5s;
}

.box_list_post:hover h3 {
    color: var(--color-primary);
}

.box_list_post:hover .cover img {
    transform: scale(1.05);
}

/* CSS RESPONSIVE */
@media (max-width: 900px) {
    .mobile_blog .flex {
        flex-wrap: wrap;
    }

    .mobile_blog {
        width: 100%;
        margin-bottom: 30px;
    }

    .box_list_post {
        padding-right: 0;
    }
}


@media (max-width: 600px) {
    .box_list_post .cover {
        width: 100%;
        max-width: 35%; 
    }

    .box_list_post .text {
        width: calc(100% - 35% - 30px);
    }
}

@media (max-width: 460px) {
    .box_list_post .cover {
        width: 100%;
        max-width: 100%; 
        max-height: 250px;
        margin-bottom: 20px;
    }

    .box_list_post .text {
        width: 100%;
    }
}