/***************************************************************************
* Item
****************************************************************************/
.story_item {
    padding: var(--typo-double-gap) 0;
    overflow: hidden;
}


/***************************************************************************
* Image
****************************************************************************/
.story_item .item_image {
    position: relative;
}
.story_item .item_image:before {
    content: ''; position: absolute;
    top: -999rem; bottom: -999rem;
    left: calc(var(--typo-gap) * 3); height: auto; width: 1px;
    background-color: currentColor;
}
.story_item .item_image picture.data_ratio {
    border-radius: 80px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.story_item:first-child .item_image:before { top: var(--typo-gap);}
.story_item:last-child .item_image:before { bottom: var(--typo-gap);}


@media screen and (max-width: 39.9375em){
    .story_item:first-child .item_image:before { top: var(--typo-double-gap);}
    .story_item:last-child .item_image:before { bottom: var(--typo-double-gap);}
}

@media screen and (min-width: 40em){
    .story_item .item_image:before {
        left: 50%;
    }
    
}


/***************************************************************************
* Content
****************************************************************************/
.story_item .item_content .item_content_inner, 
.story_item .item_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.story_item .item_content .item_content_inner h3 {
    font-size: var(--typo-font-size-quote);
}

.story_item .content_title > *:not(p){
    margin-bottom: 0;
}

@media screen and (max-width: 39.9375em){
    .story_item .title_year,
    .story_item .item_content {
        padding-left: calc(var(--typo-gap) * 4);
    }
}