/* Premium Home Moving Results Gallery - V1 */
.hair-result-marquee{
    position:relative;
    overflow:hidden;
    padding:74px 0 82px;
    background:
        radial-gradient(circle at 12% 0%, rgba(212,167,127,.20), transparent 28%),
        radial-gradient(circle at 88% 100%, rgba(255,245,232,.14), transparent 30%),
        linear-gradient(135deg, #080706 0%, #15100d 42%, #080706 100%);
    color:#fff;
    border-top:1px solid rgba(212,167,127,.26);
    border-bottom:1px solid rgba(212,167,127,.20);
}
.hair-result-marquee:before,
.hair-result-marquee:after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:min(14vw,190px);
    z-index:4;
    pointer-events:none;
}
.hair-result-marquee:before{
    left:0;
    background:linear-gradient(90deg,#080706 0%,rgba(8,7,6,0) 100%);
}
.hair-result-marquee:after{
    right:0;
    background:linear-gradient(270deg,#080706 0%,rgba(8,7,6,0) 100%);
}
.hair-result-marquee__head{
    width:min(1100px,calc(100% - 44px));
    margin:0 auto 34px;
    text-align:center;
    position:relative;
    z-index:5;
}
.hair-result-marquee__kicker{
    margin:0 0 12px;
    color:#d4a77f;
    font-size:12px;
    letter-spacing:.22em;
    font-weight:800;
    text-transform:uppercase;
}
.hair-result-marquee__head h2{
    margin:0;
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(30px,4vw,56px);
    line-height:1.06;
    font-weight:400;
    letter-spacing:-.035em;
    color:#fff7ef;
}
.hair-result-marquee__head p{
    max-width:720px;
    margin:16px auto 0;
    color:rgba(255,247,239,.76);
    font-size:16px;
    line-height:1.7;
}
.hair-result-marquee__viewport{
    position:relative;
    z-index:2;
    width:100%;
    overflow:hidden;
}
.hair-result-marquee__track{
    width:max-content;
    display:flex;
    align-items:stretch;
    gap:24px;
    padding:10px 24px;
    animation:hairResultMarqueeLtr 95s linear infinite;
    will-change:transform;
}
.hair-result-marquee__viewport:hover .hair-result-marquee__track{
    animation-play-state:paused;
}
.hair-result-marquee__card{
    width:clamp(230px,24vw,380px);
    aspect-ratio:3/4;
    flex:0 0 auto;
    margin:0;
    border-radius:30px;
    overflow:hidden;
    background:#050505;
    border:1px solid rgba(212,167,127,.34);
    box-shadow:
        0 22px 60px rgba(0,0,0,.38),
        inset 0 0 0 1px rgba(255,255,255,.05);
}
.hair-result-marquee__card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
@keyframes hairResultMarqueeLtr{
    from{transform:translateX(-50%);}
    to{transform:translateX(0);}
}
@media (max-width:820px){
    .hair-result-marquee{
        padding:58px 0 62px;
    }
    .hair-result-marquee__head{
        text-align:left;
        width:calc(100% - 42px);
        margin-bottom:24px;
    }
    .hair-result-marquee__head h2{
        font-size:34px;
    }
    .hair-result-marquee__head p{
        margin-left:0;
        font-size:15px;
    }
    .hair-result-marquee__track{
        gap:16px;
        padding:8px 18px;
        animation-duration:85s;
    }
    .hair-result-marquee__card{
        width:245px;
        border-radius:22px;
    }
    .hair-result-marquee:before,
    .hair-result-marquee:after{
        width:42px;
    }
}
@media (max-width:420px){
    .hair-result-marquee__card{
        width:220px;
    }
}
@media (prefers-reduced-motion:reduce){
    .hair-result-marquee__track{
        animation:none;
        overflow-x:auto;
        transform:none;
    }
}
