.lovestory-section{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
}

.lovestory-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:680px;
    min-height:100vh;
    margin:0 auto;
    padding:40px 28px;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.lovestory-header{
    margin-bottom:40px;
}

.lovestory-header-image{
    width:200px;
    margin-bottom:20px;
    display:block;
    filter:grayscale(100%) contrast(1.07);
}

.lovestory-title{
    color: #fff;
    font-family: var(--heading);
    font-size: 3rem;
    line-height: 1;
}

.lovestory-card-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

.lovestory-card-title{
    color: #fff;
}

.lovestory-next{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:.75rem;
    color:rgba(255,255,255,.7);
    letter-spacing:.5px;
    text-transform:uppercase;
    white-space:nowrap;
}

.lovestory-next i{
    font-size:18px;
}

.lovestory-card-text{
    color:#fff;
    line-height:1.8;
    margin-top: 10px;
}

.lovestory-slider{
    display:flex;
    gap:40px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    margin-top: 80px;
}

.lovestory-slider::-webkit-scrollbar{
    display:none;
}

.lovestory-card{
    flex:0 0 100%;
    scroll-snap-align:start;
}

.lovestory-image{
    width:120px;
    display:block;
}

/* ========================================
   LOVE STORY ANIMATION
======================================== */
.lovestory-header,
.lovestory-card{
    opacity:0;
    transform:translateY(35px);
    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

.lovestory-section.is-visible .lovestory-header{
    opacity:1;
    transform:translateY(0);
    transition-delay:.2s;
}

.lovestory-section.is-visible .lovestory-card{
    opacity:1;
    transform:translateY(0);
}

.lovestory-section.is-visible .lovestory-card:nth-child(1){
    transition-delay:.4s;
}

.lovestory-section.is-visible .lovestory-card:nth-child(2){
    transition-delay:.5s;
}

.lovestory-section.is-visible .lovestory-card:nth-child(3){
    transition-delay:.6s;
}