.blog-post .post-thumbnail {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
}
.blog-post .post-content {
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(219, 219, 219, 1);
}
.blog-post .post-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-post .post-title a{
  display: inline !important;
    width: 100%;
    background-repeat: no-repeat;
    background-position-y: 0px;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-size: 0 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.blog-post:hover .post-title a {
    background-size: 100% 100%;
    transition-delay: 0.2s;
     color: #34CCFF;
}
.blog-post .tf-btn-read-more {
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    vertical-align: middle;
    text-transform: capitalize;
    color: #34CCFF;
    display: inline-flex;
}
.blog-post  .tf-btn-read-more i{
    font-size: 15px;
    margin-left: 7px;
    display: inline-block;
}

.blog-post  .tf-btn-read-more svg {
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    transform: translate(7px);
    display: inline-block;

}
.blog-post  .tf-btn-read-more:hover svg {
    transform: translate(10px);
}
.blog-post  .tf-btn-read-more:hover {
    color: #0A1722;
}
.blog-post .post-thumbnail img {
    height: 243px;
    object-fit: cover;
    width: 100%;
    -webkit-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
    -khtml-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
    -moz-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
    -ms-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
    -o-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
    transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.blog-post:hover .post-thumbnail img {
    scale: 1.1;
}