.featured-creations-container{
    width: 100%;
    border-radius: var(--border-radius);
    flex-wrap: nowrap;
    overflow: hidden;
    background: var(--fill-1);
    box-shadow: var(--box-shadow);
}

.creation-carousel-titles{
    display: inline-block;
    text-align: left;
}

.creation-carousel-titles > span{
    margin: 0 5px 0 0;
}

[data-shell] .horizontal-scroller-shell{
    background: -webkit-linear-gradient(#ff5100, #ff00bf);
    border-radius: var(--border-radius);
}

[data-shell] .creation-carousel-titles > span{
    background: -webkit-linear-gradient(#ff5100, #ff00bf);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

[data-featured] .horizontal-scroller-shell{
    background: -webkit-linear-gradient(#ff5100, #ff00bf);
}

[data-featured] .creation-carousel-titles > span{
    background: -webkit-linear-gradient(#ff5100, #ff00bf);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.creations-container{
    display: grid;
    padding: 20px;
    width: 100%;
    justify-items: center;
    justify-content: center;
    grid-gap:30px;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
}

div:has(.creations) > div{
    -webkit-mask-image: -webkit-linear-gradient(to bottom, black 50%, transparent);
    mask-image: linear-gradient(to bottom, black 75%, transparent);
}

.creations{
    width: 300px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: translate .25s ease-in-out, filter .15s ease-in-out, scale .25s ease-in-out;
}
@media (pointer: fine){
    .creations:hover{
        translate: 0 -5px;
    }
    .creations:hover .creations-title:not(i){
        translate: 5px 3.5px;
        scale:1.04;
    }
}

.creations-container > .creations{
    width: 100%;
}

.creations[data-disabled]{
    pointer-events: none!important;
    border: 2px dashed white;
    opacity: .5;
}
.creations[data-disabled]::before{
    content: "";
}

.creations-media-containers{
    overflow: hidden;
    width: 100%;
    /*
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    */
    aspect-ratio: 1/1;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.creations-media-containers > img{
    width: 102%;
    aspect-ratio: 1/1;
}

.creations-info-container{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    justify-content: center;
    align-items: flex-start;
    color: var(--light-grey);
    color: white;
    position: relative;
}

.creations-title{
    text-wrap: nowrap;
    font-weight: 600;
    transition: .25s ease-in-out;
}

@media only screen and (min-width: 600px){
    .creations{
        width: 325px;
    }
}