.brandedContent {
    margin-bottom: 20px;
}

.brandedContent__list {
    position: relative;
    margin: 0 -0.6em;
    padding: 0;
    list-style: none;
}

.brandedContent__story {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 0.6em 0;
    padding: 0 0.6em;
}

.brandedContent__image {
    display: block;
}

.brandedContent__body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0.8em;
    background-color: #edf5f5;
}

.brandedContent__title {
    margin: 0;
    font-size: 1em;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.3;
    color: #222;
    transition: color 0.3s;
}

.brandedContent__story:hover .brandedContent__title {
    color: #4ba0a0;
}

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

@media screen and (min-width: 580px) {
    .brandedContent__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: wrap;
        flex-flow: wrap;
    }

    .brandedContent__list:first-child {
        margin-top: -0.6em;
    }

    .brandedContent__list:after {
        content: '';
        position: absolute;
        display: block;
        bottom: 0;
        left: 0.6em;
        width: calc(100% - 1.2em);
        border-bottom: 1px solid #444;
    }

    .brandedContent__story + .brandedContent__story {
        border-left: 1px solid #444;
    }

    .brandedContent__story--small {
        width: 33.334%;
    }

    .brandedContent__story--medium {
        width: 50%;
    }

    .brandedContent__story--large {
        width: 66.667%;
    }
}
