.postListIntro__posts,
.relatedPosts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: var(--articleMarginBottomSmall);
    margin: 0;
    padding: 0;
    list-style: none;
}

.postListIntro__post,
.relatedPosts__post {
    position: relative;
}

.postListIntro__image,
.relatedPosts__image {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

.postListIntro__title,
.relatedPosts__title {
    margin: 0;
    font-size: var(--h5Size);
}

.postListIntro__post:hover .postListIntro__title,
.postListIntro__authors,
.relatedPosts__post:hover .relatedPosts__title {
    color: var(--primaryColor500);
}

.postListIntro__link,
.relatedPosts__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.postListIntro__showMoreLink {
    margin-top: var(--articleMarginBottomSmall);
}
