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

.postListIntro__post {
    position: relative;
    background: var(--baseLight100);
    border-radius: var(--borderRadiusSmall);
    overflow: clip;
}

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

.postListIntro__title {
    margin: 0;
    color: inherit;
    font-family: var(--siteFont);
    font-size: var(--bodySize);
    font-weight: 700;
}

.postListIntro__text {
    padding: var(--marginSmall);
}

.postListIntro__showMoreWrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--marginMedium);
}


/*
 * Related posts
 */

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

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