.postListIntro__posts {
    display: grid;
    grid-template-columns: var(--grid3col);
    grid-gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    clear: both;
}

.postListIntro__post {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--borderRadius);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.postListIntro__image {
    display: block;
    width: 100%;
    border-radius: 0;
    margin: 0 0 1.5em 0;
}

.postListIntro__contentWrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    height: 100%;
    padding: 0 1.5rem 1.5rem;
}

.postListIntro__title {
    margin: 0;
    color: inherit;
}

.postListIntro__intro {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.postListIntro__metaWrapper {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
}


/*
 * Related posts
 */

.Article__title + .postList.--related {
    margin-top: var(--marginSmall);
}

.--related .postListIntro__title {
    line-height: 1.1;
}
