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

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

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

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

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

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

.pnpost-title {
    margin-top: 10px;
    font-weight: bold;
    display: block;
}

.pnpost-date {
    position: absolute;
    top: -30px;
    float: right;
    margin-bottom: 15px;
    margin-top: 5px;
    font-size: 80%;
    font-style: italic;
    margin-right: 5px;
    font-weight: 100;
}

.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 15px;
    }
    

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

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

}

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

    .pnposts {
        padding: 0 0;
    }

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

    

}