/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.fund-manager-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 30px;
}

article.fund-manager-post .featured-image {
    background-size: cover;
    background-position: center center;
    height: 240px;
    display: block;
}

article.fund-manager-post a h3 {
    font-size: 22px !important;
    font-weight: 400;
}

article.fund-manager-post a h3:hover {
    text-decoration: underline;
}

article.fund-manager-post p {
    font-size: 17px !important;
    line-height: 1.6em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}