.stories {
    margin-bottom: 30px;
}

.stories_space{
    margin-bottom: 15px;
    margin-top: 15px;
}

.stories_item {
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 25%);
    height: 100%;
}

.stories_content {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stories_image {
    height: 230px;
    margin: 0 0 20px 0;
    width: 100%;
}

.stories_image img {
    object-fit: cover;
    object-position: top;
    height: 100%;
    width: 100%;
}

.stories_info {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    padding: 0 20px 20px 20px;
}

.stories_title {
    color: #241F18;
    font-family: 'Montserrat', sans-serif;
    flex-grow: 1;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-align: center;
    text-transform: uppercase;
}

.stories.outstanding .stories_title {
    font-size: 18px;
}

.stories_info p,
.stories_info div:first-of-type,
.stories_info div:first-of-type p {
    color: #241F18;
    font-family: 'Roboto Slab';
    flex-grow: 1;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 5px 0;
}

.stories_share {
    margin: 20px 0 20px 0;
}

.stories_share__link{
    background: #241F18;
    border: 1px solid #241F18;
    border-radius: 0;
    color: #fff;
    display: table;
    font-family: 'Roboto Slab';
    font-size: 16px;
    letter-spacing: 3px;
    margin: 0 auto;
    padding: 5px 30px 5px 30px;
    text-align: center;
    text-decoration: none;
    transition: 0.4s;
}

.stories_share__link:hover {
    background: none;
    color: #241F18;
    text-decoration: none;
}

.stories_share__link svg,
.stories_share__link svg path,
.stories_share__link svg g{
    transition: 0.4s;
}

.stories_share__link:hover svg{
    fill: #241F18;
}

.stories_share__link:hover svg,
.stories_share__link:hover svg g {
    stroke: #241F18;
}

.stories_share__link:hover svg path {
    fill: #241F18;
}

.stories_view {
    text-align: right;
}

.stories_link{
    border-bottom: 1px solid #241F18;
    color: #241F18;
    font-family: 'Roboto Slab';
    font-size: 16px;
    letter-spacing: 4px;
    padding: 0 0 2px 0;
}

.stories_link:hover{
    color: #241F18;
    text-decoration: none;
}

.stories_link i {
    transition: all 0.6s;
}

.stories_link:hover i {
    transform: translateX(-7px);
}

.stories.outstanding .stories_content{
    display: block;
}

.stories.outstanding .stories_image {
    height: auto;
    margin: 0 0 20px 0;
}


@media(min-width: 768px){

    .stories_title {
        font-size: 18px;
    }

    .stories_info {
        padding: 0 10px 20px 10px;
    }

    .stories_info p,
    .stories_info div:first-of-type,
    .stories_info div:first-of-type p {
        margin: 0 0 10px 0;
    }

    .stories_link{
        font-size: 18px;
    }

    .stories_share__link{
        padding: 5px 10px 5px 10px;
    }

}

@media(min-width: 1024px){
    
    .stories_info {
        padding: 0 20px 20px 20px;
    }

    .stories_share__link{
        padding: 5px 50px 5px 50px;
    }
}