.post-list-container__wrapper {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.post-container {
    margin: 5px;
    border: 1px solid #333333;
    width: calc(100% / 3 - 10px);
    min-width: 190px;
    max-width: 450px;
}

.post-header-blue {
    background-color: #000099;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    width: 100%;
}

.post-header-red {
    background-color: #990000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    width: 100%;
}

.post-picture {
    margin-top: 5px;
    overflow: hidden;
}

.post-picture img {
    object-fit: cover;
    object-position: center;
    height: 200px;
    width: 150px;
}

.post-button {
    background-color: #ffffff;
    border: 1px solid #333333;
    padding: 1px;
    text-decoration: none;
    margin: 20px 10px 10px 10px;
    display: flex;
}

.post-button .button-content {
    background-color: #99cc99;
    color: #ffffff;
    min-width: 120px;
    padding: 3px 5px;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

.post-infor {
    padding: 10px;
}

.infor-group {
    min-height: 22px;
}

.name-infor {
    line-height: 1.25rem;
    color: #333333;
    white-space: nowrap;
}

.value-infor-number {
    color: #ff3333;
    font-size: 1.125rem;
    line-height: 1.25rem;
}

.value-infor {
    line-height: 1.25rem;
    color: #333333;
    font-size: 0.875rem
}

@media only screen and (max-width: 950px){
    .post-container {
        width: calc(100% / 2 - 10px);
    }
}

@media only screen and (max-width: 850px){
    .post-container {
        width: calc(100% / 3 - 10px);
    }
}

@media only screen and (max-width: 630px){
    .post-container {
        width: calc(100% / 2 - 10px);
    }
}

@media only screen and (max-width: 430px){
    .post-container {
        width: 100%;
    }
}
