.stories {
    margin-bottom: 20px;
}

.stories__list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.stories__story {
    position: relative;
    float: left;
    width: 100%;
    padding: 0 10px;
    margin: 10px 0;
}

.stories__story--large::after {
    content: '';
    position: absolute;
    display: block;
    bottom: -10px;
    width: calc(100% - 20px);
    border-bottom: 1px solid #e5e5e5;
}

.stories__list--small .stories__imageContainer {
    float: left;
    width: 80px;
    margin-right: 10px;
}

.stories__list--small .stories__body {
    margin-left: 90px;
}

.stories__story--small::after {
    content: '';
    position: absolute;
    display: block;
    top: -10px;
    width: calc(100% - 20px);
    border-bottom: 1px solid #e5e5e5;
}

@media screen and (min-width: 580px) {
    .stories__list--large {
        display: flex;
        flex-flow: wrap;
    }

    .stories__story--large {
        width: 50%;
    }

    .stories__story--large:nth-child(2n - 1) {
        border-right: 1px solid #e5e5e5;
    }

    .stories__story--medium .stories__imageContainer {
        float: left;
        width: 50%;
        margin-right: 10px;
    }

    .stories__list--small {
        display: flex;
        flex-flow: wrap;
    }

    .stories__story--small {
        width: 50%;
    }

    .stories__story--small:nth-child(2n - 1) {
        border-right: 1px solid #e5e5e5;
    }
}

@media screen and (min-width: 960px) {
    .stories__list--large:after {
        content: '';
        position: absolute;
        display: block;
        bottom: 0;
        left: 10px;
        width: calc(100% - 20px);
        border-bottom: 1px solid #e5e5e5;
    }

    .stories__story--large {
        width: 25%;
        border-right: 1px solid #e5e5e5;
    }

    .stories__story--large:last-child {
        border-right: 0;
    }

    .stories__story--large::after {
        content: none;
    }

    .stories__list--medium,
    .stories__list--small {
        float: left;
        width: 50%;
    }

    .stories__story--medium {
        border-right: 1px solid #e5e5e5;
    }

    .stories__story--small:nth-child(1)::after,
    .stories__story--small:nth-child(2)::after {
        content: none;
    }
}

.stories__imageContainer {
    overflow: hidden;
    margin-bottom: 0.3em;
}

.stories__image {
    display: block;
}

.stories__title {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.3;
    color: #222;
    transition: color 0.3s;
}

.stories__intro {
    overflow: hidden;
    margin-top: 0.4em;
    line-height: 1.3;
    max-height: 3.9em; /** limit to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/**
 * Hover
 */

.stories__story:hover .stories__title {
    color: #4BA0A0;
}
