.blog_list_content{
    margin-bottom: 10rem;
    
}
.sk_blogs {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem;
    color: rgb(60, 60, 60);
    margin-top: 3rem;

}
.sk_blogs a{
    color: rgb(60, 60, 60);

} 
.sk_blogs .sk_blog a {
    display: block;
    box-shadow: 0px 4px 16px 0px rgb(217, 217, 217);
    overflow: hidden;
    min-height: 396px;
}
.sk_blogs .sk_blog .image{
    display: block;
    width: 382px;
    height: 215px;
    overflow: hidden;
}
.sk_blogs .sk_blog .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sk_blogs .sk_blog .post_info{
    padding: 20px;
}
.sk_blogs .sk_blog .tag_list{
    display: flex;
    gap: 1rem;
    align-items: center;
}
.sk_blogs .sk_blog .tag_list > div{
    display: flex;
    align-items: center;
}
.sk_blogs .sk_blog .tag_list > div.category img{
    width: 25px;
    height: 24px;
    margin-right: .5rem;
}
.sk_blogs .sk_blog .tag_list > div.category span{
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
} 
.sk_blogs .sk_blog .big_title{
      font-size: 22px;
    margin: .8rem 0 0;
    font-weight: bold;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 84px;
    color: #0165EE;
}
.sk_blogs .sk_blog .big_title:hover{
    text-decoration: underline;
}
.sk_blogs .sk_blog .blog_foter{
    display: flex;
    justify-content: right;
}
.sk_blogs .sk_blog .blog_foter .read_time{
    font-weight: 500;
}
.blog_list_content .sytech_custom_pagination_bar{
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}
.blog_list_content .sytech_custom_pagination_bar a{
    color: #0165EE;
}
.blog_list_content .sytech_custom_pagination_bar a,
.blog_list_content .sytech_custom_pagination_bar span
{
    display: inline-block;
    padding: .5rem;

}
.single-post .sk_blogs{
	margin-top: 1rem;
}
div[data-widget_type="theme-post-content.default"] p{
    font-size: 1rem !important;
    line-height: 1.75rem;
    font-weight: 500 !important;
    margin-bottom: 1.25rem;
}
div[data-widget_type="theme-post-content.default"] li{
    font-size: 1rem !important;
    line-height: 1.75rem;
    font-weight: 500 !important;
    margin-bottom: .5rem;
}
.sk_blogs .sk_blog .tag_list > div.category:nth-child(2){
	position: relative;
}
.sk_blogs .sk_blog .tag_list > div.category:nth-child(2):before {
    vertical-align: middle;
    height: 6px;
    width: 6px;
    margin-right: 10px;
    display: inline-block;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    content: "";
    background-color: #0165EE;
}

@media screen and (max-width: 786px) {
    .sk_blogs{
        grid-template-columns: repeat(1, 1fr);
    }
}