#news .blog-title{
    font-size: 30px;
    line-height: 1.3;
    color: #343f52;
}
#news .image-wrapper{
    margin-bottom: 1rem;
    border-radius: 30px;
    position: relative;
    display: block;
}
#news .image{
    height: 215px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    transition: .35s ease-in-out;
}
#news .image:hover{
    transform: scale(1.05);
}
#news .image .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background-color: rgba(30, 34, 40, .6); */
    background-color: rgb(35 35 77 / 70%);
    opacity: 0;
    transition: .35s ease-in-out;
    border-radius: 7px;
}
#news .image .read-more{
    padding: .74rem 1rem;
    top: 50%;
    width: 100%;
    left: 0;
    text-align: center;
    transform: translateY(-80%);
    transition: .35s ease-in-out;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    font-weight: 500;
}
#news .image:hover .read-more{
    opacity: 1;
    transform: translateY(-50%);
}
#news .image:hover .overlay{
    opacity: 1;
}
#news .post-content .post-title{
    font-size: 20px;
    overflow: hidden;
    max-height: 65px;
}
#news .post-content .post-title a{
    color: #343f52;
    transition: all .2s ease-in-out;
    font-weight: 500;
}
#news .post-content .post-title a:hover{
    color: #015385;
}
#news .post-content .text-line{
    position: relative;
    display: inline-flex;
    vertical-align: top;
    padding-left: 1.4rem;
}
#news .post-content .text-line::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    left: 0;
    width: .75rem;
    height: .07rem;
    display: inline-block;
    background-color: #015385;
}
#news .post-content .post-category a{
    font-weight: 500;
    font-size: 15px;
    color: #015385;
}
#news .post-content .post-category a:hover{
    color: #015385;
}
#news .post-content .post-category .hover::before{
    content: '';
    transform-origin: 100% 50%;
    transform: scale3d(0,1,1);
    transition: transform .3s cubic-bezier(.7,0,.2,1);
    position: absolute;
    width: 100%;
    height: 1px;
    background: #015385;
    top: 100%;
    left: 0;
    pointer-events: none;
}
#news .post-content .post-category .hover:hover::before{
    transform-origin: 0 50%;
    transform: scale3d(1,1,1);
    transition-timing-function: cubic-bezier(.4,1,.8,1);
}
#news .post-information .post-comments-wrapper::before{
    content: '';
    display: inline-block;
    width: .2rem;
    height: .2rem;
    border-radius: 50%;
    margin: 0 .6rem 0;
    vertical-align: .15rem;
    background-color: #aab0bc;
    opacity: .5;
}
#news .post-information i,
#news .post-information p{
    color: #aab0bc;
}
#news .post-information i{
    font-size: 13px;
    margin-right: .4rem;
}
#news .post-information p{
    font-size: 15px;
}