.md-grid-post-img {
    height: 250px;
    object-fit: cover;
}
.md-grid-post-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 63px;
    font-size: 20px !important;
    line-height: 1.5 !important;
}
.md-grid-post-subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.md-post-date {
    display: flex;
    align-items: center;
}
.grid-post {
    height: 100%;
}

.authorImage img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    object-fit: cover;
}
.authorContent p {
    font-size: 12px;
}
.authorTitle {
    margin: 0 !important;
    font-size: 14px !important;
}


@media (max-width:767px){
    .md-grid-post-title {
        min-height: auto;
    }
    .md-grid-post-img{
        height: auto;
    }
    .grid-post{
        height: auto;
    }
}