.story-block {
    padding: 5px;
    padding-bottom: 45px;
}

@media(max-width: 991px) {
    .story-block {
        padding-bottom: 10px;
    }
}

.story {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 5px rgba(0,0,0,0.12);
    margin-top: 12px;
}

.story-text {
    min-height: 350px;
    position: relative;
    width: 100%;
    flex: 1 1;
    padding: 30px 25px;
    padding-bottom: 70px;
}


@media(max-width: 991px) {
    .story-text {
        min-height: auto;
        flex: none;
        padding: 30px 35px 35px 35px;
    }
}

@media(max-width: 767px) {
    .story-text {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.comment-block {
    padding-left: 25px;
    padding-right: 25px;
}

@media(max-width: 991px) {
    .comment-block {
        padding: 0;
    }
}

.story-text p {
    font-size: 16px;
    margin-top: 20px;
}

.comment-block p {
    font-size: 15px;
}

.story-text p:first-child {
    margin-top: 0;
}

.story-images {
    position: relative;
    width: 410px;
}

.story-image {
    position: relative;
    width: 50%;
    height: 100%;
    border-radius: 15px;
    background-color: red;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 4px rgba(0,0,0,0.25);
}

.image1 {
    top: 40px;
    z-index: 300;
}

.image2 {
    position: absolute;
    z-index: 500;
    right: 25px;
    bottom: 25px;
    background-color: gray;
}

@media(max-width: 991px) {
    .story-images { 
        height: 400px;
        padding: 0 15px;
    }
    .story-image { 
        width: 50%;
    }
    .story-images {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 75%;
        order: -1;
        margin: 0 auto;
        margin-top: 30px;
    }
    .image1, .image2 {
        top: auto;
        bottom: auto;
        right: auto;
    }
    .image1 {
        left: 6%;
    }
    .image2 {
        right: 6%;
        top: -10%;
        position: relative;
    }
}

@media(max-width: 767px) {
    .story-images {
        width: 100%;
        height: 350px;
    }
    .image1 {
        left: 1%;
    }
    .image2 {
        right: 1%;
        top: -15%;
    }
}

@media(max-width: 460px) {
    .story-images {
        height: 85vw;
    }
}

.comment-block {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -35px;
}

@media(max-width: 991px) {
    .comment-block {
        position: relative;
        bottom: auto;
        margin-top: 30px;
    }
}

.story-comment {
    width: 100%;
    background-color: #fff5d5;
    border: 2px solid #ead9a3;
    border-radius: 70px;
    text-align: center;
    padding: 20px;
}

.story-comment p {
    line-height: 1.4;
}

@media(max-width: 767px) {
    .story-comment {
        border-radius: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }
}