.block-post-featured {
    padding: 4rem 0;
    background-color: #F9FAFB;
}
.block-post-featured .content h1,
.block-post-featured .content h2,
.block-post-featured .content h3,
.block-post-featured .content h4,
.block-post-featured .content h5,
.block-post-featured .content h6 {
    color: #0D2DB5;
}
.block-post-featured .post-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: stretch;
}
.block-post-featured .post-wrapper a.post {
    color: #212519;
    width: 24%;
    border: solid 1px #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
    padding: .5rem 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    transition: .5s ease-in-out;
    background-color: #fff;
}
.block-post-featured .post-wrapper a.post:hover {
    border: solid 1px #0D2DB5;
    opacity: .7;
}
.block-post-featured .post-wrapper .post picture {
    padding: 1rem;
}
@media only screen and (max-width: 768px) {
    .block-post-featured .post-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    .block-post-featured .post-wrapper a.post {
        width: 100%;
    }
}
