.related-stories-container {
    display: block;
    width: 100%;
}

.related-stories-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}

.stories-section {
    width: calc(50% - 20px);
    margin: 15px;
}

.stories-section-heading {
    color: var(--color-green)
}

.related-card {
    width: 100%;
    border: 1px solid #e1e1e1;
    -webkit-box-shadow: 2px 4px 6px rgb(100,100,100);
    box-shadow: 2px 4px 6px rgb(100,100,100);
    padding: 10px 15px;
    background: var(--light);
    margin: 5px 0;
    max-width: 600px;
}

.card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}

.card-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33.33%;
}

.card-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 65%;
    height: 100%;
    min-height: 150px;
}

.card-title {
    color: var(--color-green);
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
}

.card-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.related-link {
    text-decoration: none !important;
    padding: 8px 24px;
    background: transparent;
    font-weight: 600;
    color: var(--color-green);
    border-radius: 5px;
    border: 1px solid var(--color-green);
}

.related-link:hover {
    color: var(--light);
    background: var(--color-green);
    -webkit-transition: color 250ms, background 250ms;
    -o-transition: color 250ms, background 250ms;
    transition: color 250ms, background 250ms;
}

@media only screen and (max-width: 1260px) {
    .stories-section {
        width: calc(50% - 15px);
        margin: 10px;
    }

    .related-card {
        padding: 10px;
    }
}

@media only screen and (max-width: 900px) {
    .stories-section {
        width: 100%;
        margin: 15px;
    }

    .related-stories-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }

    .related-card {
        margin: 10px auto;
    }
}
