.story-intro{
    position: relative;
    z-index: 1;
    >.bg{
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    >.cover{
        position: absolute;
        z-index: -1;
        inset: 0;
        background: linear-gradient(180deg, #FFFFFF 10%, #FFFFFF00 80%);
    }
    >.container{
        padding-top: 80px;
        padding-bottom: 80px;
        >h3{
            font-size: 60px;
            font-weight: 400;
            font-family: "Homemade Apple", cursive;
            line-height: 1;
            letter-spacing: 2px;
            color: var(--color-secondary-1);
            &:nth-of-type(1){
                margin-bottom: 80px;
            }
            &:nth-of-type(2){
                text-align: end;
                margin-top: 80px;
            }
        }
        >h2{
            text-align: center;
            margin-bottom: 40px;
        }
        >p{
            text-align: center;
            white-space: pre-line;
        }
    }
}

@media screen and (width < 1024px) {
    .story-intro > .container{
        >h3{
            font-size: 40px;
            letter-spacing: 1px;
            &:nth-of-type(1){
                margin-bottom: 60px;
            }
            &:nth-of-type(2){
                margin-top: 60px;
            }
        }
    }
}
@media screen and (width < 768px) {
    .story-intro > .container{
        >h2{
            margin-bottom: 24px;
        }
    }
}
@media screen and (width < 576px) {
    .story-intro{
        >.bg{
            object-position: 12% center;
        }
        > .container{
            padding-top: 60px;
            padding-bottom: 60px;
            >h3{
                font-size: 26px;
                &:nth-of-type(1){
                    margin-bottom: 40px;
                }
                &:nth-of-type(2){
                    margin-top: 40px;
                }
            }
        }
    }
}