.feedback-list-post-text-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.feedback-image{
    width: 100%;
    margin: 0 auto;
}
.feedback-list-post {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    height: 100%;
    width: 47%;
}
.feedback-link{
    margin-bottom: 2rem;
}
/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 50%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 1149px) {
    .feedback-list-post {
        width: 100%;
    }
}