
@media (min-width:768px){
    .blog_posts_container .blog_post_item{
        width: 24%;
        max-width: 300px;
        
    }
    .blog_posts_container{
        --gap:4px;
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }
}
@media (min-width:1500px){
    .blog_detail_container{
        width: 1500px;
        margin: auto;
    }
}

.post_description h2{
    font-size: 20px;
    /* color: #545453; */
    padding-bottom: 10px;
    border-bottom: 1px solid #dfdedd;
    padding-left: 9px;
    padding-top: 10px;
    font-weight: 500;
    text-transform: uppercase;

}

.post_description h2::before{
    content: '';
    position: relative;
    display: block;
    top: 0;
    width: 50px;
    height: 4px;
    margin-bottom: 5px;
    background-color: #e3403e;
}

.post_description ul{
    list-style: circle;
    padding-left: 20px;
}
.post_description ul li{
    color: #434343;
    margin: 0;
    padding: 2px 0;
    text-indent: 0;
    list-style: none;
    list-style-type: inherit;
    font-family: Lato, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: normal;
}
.post_description pre a{
    color: #e3403e;
    text-decoration: none;
}
.post_description p{
    color: #434343;
    font-size: 15px;
    line-height: 1.5;
    hyphens: auto;
    text-align: justify;
    margin: 0;
    padding: 6px 0;
    font-family: Lato, sans-serif;
    font-style: normal;
    font-weight: normal;
}
.post_description table{
    white-space: nowrap;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: auto;
    width: 100% !important;
    display: block;
}
.post_description td{
    padding: 5px;
}
.post_description  tr:nth-child(2n+1) {
    background: #f5f5f5;
}
.post_description td strong{
    font-size: 16px;
    color: #585858;
}

/* blog post */
.blog_post_content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.navigation_btn .back_to_main_btn,
.navigation_btn .next_article_btn{
    background-color: #bdc3c7;
    border-radius: 2px;
}
.navigation_btn .back_to_main_btn:hover, 
.navigation_btn .next_article_btn:hover{
    background-color: #d13232;
    cursor: pointer;
}

.tags_container .tags_content ._tag_link{
    position: relative;
    display: block;
    float: left;
    margin: 3px 5px 3px 15px;
    padding: 0 27px 0 10px;
    padding-right: 27px;
    font-size: 12px;
    line-height: 24px;
    text-decoration: none;
    border: 0 none;
    background: #e6e6e6;
    color: #676767;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}
.tags_container .tags_content ._tag_link::before{
    position: absolute;
    top: 50%;
    left: -14px;
    float: left;
    margin-top: -12px;
    width: 0;
    height: 0;
    border-width: 12px 14px 12px 0;
    border-style: solid;
    border-color: transparent #e6e6e6 transparent transparent;
    content: "";
}
.tags_container .tags_content ._tag_link::after{
    position: absolute;
    top: 50%;
    left: 0;
    float: left;
    margin-top: -2px;
    width: 4px;
    height: 4px;
    background: #fff;
    content: "";
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.tags_container .tags_content ._tag_link:hover{
    background: #0c8012;
    color: #fff;
}
.tags_container .tags_content ._tag_link:hover::before{
    border-color: transparent #0c8012 transparent transparent;
}
.name_descript {
    transition: all 0.2s ease-in-out;
}

.name_descript .name_descrip_content {
    height: fit-content;
}

._product-item:hover .name_descript {
    transform: translateY(-10%);
    cursor: pointer;

}