.relatedPosts {
    margin: 10px 0;
    padding: 20px 0 0;
    border-top: 2px solid #16a2a1;
}

.relatedPosts__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.relatedPosts__story {
    display: flex;
    position: relative;
    margin-bottom: 20px;
    background-color: #346565;
}

.relatedPosts__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    width: 100%;
    padding-top: 35%;
}

@media screen and (min-width: 720px) {
    .relatedPosts__list {
        display: flex;
        flex-wrap: wrap;
    }

    .relatedPosts__story {
        width: calc(33.3334% - 13.5px);
        margin-right: 20px;
    }

    .relatedPosts__story:nth-child(3n) {
        margin-right: 0;
    }

    .relatedPosts__inner {
        padding-top: 30%;
    }
}

.relatedPosts__imageContainer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

.relatedPosts__body {
    position: relative;
    padding: 20px;
    max-width: 32em;
}

.relatedPosts__title {
    margin: 0;
    color: #fff;
}