.pnposts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.pnpost {
    width: 32%;
    margin-right: 2%;
    margin-bottom : 20px;
    background-color: #D8D5CD;
}

.pnpost:nth-child(3n) {
    margin-right: 0;
}

.pnpost-cover a {
    height: 250px;
    display: flex;
    background-size: cover;
}

.pnpost-cover img {
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    height: unset !important;
}

.pnpost-info {
    position: relative;
    padding: 5px 5px 15px;
    padding-left: 10px;
    padding-right: 10px;
}

.pnpost-title {
    font-weight: bold;
    display: block;
}

.pnpost-date {
    margin-bottom: 10px;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    display: block;
}

.pnpost-info p {
    font-size: 14px;
}

.wrap-pagi {
    display: block;
    margin: auto;
    width: 100%;
}

@media screen and (max-width:1160px) {
    .pnpost {
        width: 48%;
        margin: 0 4% 30px 0;
    }

    .pnposts {
        padding: 0;
    }
    

    .pnpost:nth-child(3n) {
        margin-right: 4%;
    }

    .pnpost:nth-child(2n) {
        margin-right: 0;
    }

}
@media screen and (max-width:991px){
    /* .pnpost {
        width: calc(98% / 3);
        margin: 0 4% 30px 0;
        margin-right: 0;
        margin-right: auto !important;
        margin-left: auto !important;
    } */
    .pnpost {
        width: 32%;
        margin-right: 2%;
        margin-bottom : 20px;
        background-color: #D8D5CD;
    }
    .pnposts {
        justify-content: space-between;
    }
    .pnpost:nth-child(3n){
        margin-right: 0;
    }
    .pnpost:nth-child(2n){
        margin-right: 2%;
    }
}
@media screen and (max-width:767px){
    .pnpost {
        width: calc(98%/2);
        margin-right: 0 !important;
    }
    .pnposts{
        justify-content: space-between;
    }
}
@media screen and (max-width:600px) {
    .pnpost {
        width: 100%;
        margin: 0 0 30px; 
    }

    .pnposts {
        padding: 0 0;
    }
    .pnpost:nth-child(3n) {
        margin-right: 0;
    }
}