.story-loop-wrapper {
    padding: 0 7px;
    margin-bottom: 14px;
}

.story-loop-inner {
    background-color: var(--white);
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(247, 244, 234, 1);
}

.story-loop-wrapper a:hover .story-loop-inner {
    border-color: var(--orange);
}

.story-loop-bottom {
    margin-top: auto;
}


.story-loop-top {
    padding: 30px 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.story-loop-top .image-wrapper {
    border-radius: 100px;
    border: 1px solid #e7d3af;
    padding: 11px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -webkit-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    margin-top: 8px;
    margin-bottom: 25px;
}

.story-loop-top .image-inner {
    width: 186px;
    height: 245px;
    border-radius: 87px;
    /* background-color: #000000; */
    border: 1px solid #e7d3af;
    padding: 11px;
    position: relative;
    overflow: hidden;
}

.story-loop-top .image-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-info-wrapper {
    width: 100%;
    flex-basis: 100%;
}

.story-info-wrapper .story-title {
    margin-bottom: 0;
}

.story-info-wrapper .story-subtitle {
    font-size: 14px;
    line-height: 24px;
    color: var(--grey);
    font-weight: 300;
    margin-bottom: 0;
}

.story-loop-bottom {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 575.8px) {
    .story-loop-top {
        padding: 15px;
    }

    .story-loop-top .image-wrapper {
        border-radius: 95px;
        margin-bottom: 15px;
    }

    .story-loop-top .image-inner {
        width: 140px;
        height: 200px;
    }
}

@media (max-width: 400px) {
    .story-loop-wrapper {
        padding: 0 15px;
        width: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}