.postList__posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: var(--columnGutter);
}

.postList__post {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.postList__title {
    color: #303030;
    font-size: 1.125rem;
    font-weight: bold;
}

.postList__text {
    flex-grow: 1;
    padding: 1rem;
    background-color: #e6ddd2;
}

.postList__image {
    display: block;
    width: 100%;
}

.postList__tag {
    position: absolute;
    top: .5rem;
    left: .5rem;
    display: inline-block;
    padding: 2px 5px;
    border: 1px solid #009fe3;
    color: #009fe3;
    font-weight: normal;
    font-size: .75rem;
    background-color: #fff;
}

.postList__showMore {
    margin-top: 2rem;
}

.postList__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.postList__readMore {
    display: block;
    margin-top: 4px;
    font-size: .875rem;
    font-weight: normal;
    text-decoration: none;
    color: #313131;
}

.postList__readMore::before {
    content: '+';
    display: inline-block;
    margin-right: 4px;
}
