section.featured_blog .content,
section.other_blogs .content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

section.featured_blog .main_content,
section.other_blogs .main_content {
    padding: 20px;
    border: 1px solid #E7E7E7;
    background: #FFF;
    height: 100%;
}

section.featured_blog .main_content p,
section.other_blogs .main_content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

section.featured_blog .main_content h3,
section.other_blogs .main_content h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.featured_blog .content img,
section.other_blogs .content img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}