﻿
.storySuggestionWrapper {
    display: flex;
    flex-flow: row wrap;
    background-color: white;
}

.storySuggestionBlock {
    width: 33.33%;
    position: relative;
}

.storySuggestionInnerWrap {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.storySuggestionImgWrap {
    width: 100%;
}

.storySuggestionCategory {
    text-transform: uppercase;
    letter-spacing: 0.0px;
    font-size: 12px;
    color: gray;
}

.storySuggestionImgWrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    height: 120px;
}

.storySuggestionInfoWrap {
    display: flex;
    flex-direction: column;
}

.storySuggestionTitle {
    font-size: 16px;
    padding: 5px 0px 5px 0px;
}

    .storySuggestionTitle:hover {
        color: #3c8ed2;
    }


@media only screen and (max-width: 600px) {
    .storySuggestionWrapper {
        flex-direction: column;
        padding: 5px 0px 0px 0px;
    }

    .storySuggestionBlock {
        width: 100%;
        border-bottom: solid 1px gainsboro;
        height: 90px;
    }

    .storySuggestionInnerWrap {
        display: flex;
        flex-direction: row;
        height: 100%;
        width: 100%;
        padding: 0px;
    }

    .storySuggestionImgWrap {
        width: 40%;
        height: 100%;
    }

        .storySuggestionImgWrap img {
            object-fit: cover;
            height: auto;
            max-height: 100%;
        }

    .storySuggestionInfoWrap {
        width: 100%;
        padding: 0px 10px 10px 10px;
    }

    .storySuggestionCategory {
        /* white-space: nowrap;
    overflow: hidden;*/
        color: #3c8ed2;
    }

    .storySuggestionTitle {
        font-weight: 500;
        height: 38px;
        overflow: hidden;
    }
}

@media only screen and (max-width: 400px) {
    .storySuggestionBlock {
        height: auto;
    }

    .storySuggestionImgWrap {
        width: 50%;
        height:100%;
    }
    .storySuggestionTitle {
        height:auto;
    }
    }
