.post-posts {
    border: var(--wp--custom--border-width--small) solid var(--wp--preset--color--grey);
    padding: var(--wp--custom--layout--block-gap);
    margin: var(--wp--custom--layout--block-gap) auto;
}
.post-posts .section-title {
    font-size: var(--wp--preset--font-size--medium);
    text-transform:none;
    letter-spacing:0;
    color: var(--wp--preset--color--purple);
    margin: 0 0 var(--wp--custom--layout--block-gap);
}
.post-posts .section-posts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--wp--custom--layout--block-gap-small);
}
@media (max-width: 800px) {
   .post-posts .section-posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    } 
}