.posts-container{
    padding: 0 5%;
}
.post-wrapper{
    background: #eee;
    margin-bottom: 20px;
    border-radius: 3px;
    text-align: center;
    padding: 15px;
    overflow: hidden;
}
.post-wrapper:hover{
    cursor: pointer;
}
.post-title{
    color: #C12258;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    padding-bottom: 10px;
    letter-spacing: 2px;
    text-align: left;
    text-transform: uppercase; 
}
.post-date{
    text-align: left;
    font-size: 14px;
    padding-top: 10px;
    margin: 0;
}
.post-content{
    text-align: left;
}
.post-content p{
    margin: 0;
    color: #555;
}
.post-thumbnail{
    max-height: 140px;
    border-radius: 3px;
}
.posts-section-heading{
    color: #C12258;
    font-weight: 500;
    margin: 20px 0 20px 0;
    font-size: 30px;
    padding-bottom: 0;
    letter-spacing: 2px;
    text-align: center;
}
.pagination{
    display: inline-block;
}
.pagination .page-item{
    display: inline-block;
}
.page-link,
.page-link:hover{
    color: #555;
}
.page-item.active .page-link{
    background-color: #C12258;
    border-color: #dee2e6;
}

/* Post Edit modal */
.modal.post-edit{
    overflow-y: scroll;
    background: rgba(0,0,0,0.7);
}
.modal.post-edit .modal-dialog{
    max-width: none;
    width: 90%;
}
.modal.post-edit .close-modal:hover{
    cursor: pointer;
}
.modal.post-delete{
    background: rgba(0,0,0,0.7);
}

/* Mobile styles */
@media only screen and (max-width: 430px) {
    .post-wrapper, .post-title, .post-date{
        text-align: center;
    }
    .post-thumbnail{
        margin-bottom: 15px;
    }
}