.scroll-section {
    max-width: 1600px;
    margin: auto;
    /* padding: 20px 15px; */
}

.scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    padding: 10px;
}

/* Left stacked videos */
.uni-col-3 {
    flex: 0 0 280px;
    display: flex;
}

.stack-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.uni-card-small {
    height: 180px;
}

/* Image Cards */
.uni-col-3-wide {
    flex: 0 0 320px;
}

.uni-image-card {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.media-wrapper {
    width: 100%;
    height: 100%;
}

.media-wrapper img,
.media-wrapper iframe,
.media-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
}

/* Desktop */
@media (min-width:992px){

    .uni-col-3{
        flex:0 0 280px;
    }

    .uni-col-3-wide{
        flex:0 0 320px;
    }

    .uni-image-card{
        height:420px;
    }

    .uni-card-small{
        height:200px;
    }

}

/* Tablet */
@media (max-width:991px){

    .scroll-track{
        gap:16px;
    }

    .uni-col-3{
        flex:0 0 240px;
    }

    .uni-col-3-wide{
        flex:0 0 280px;
    }

    .uni-image-card{
        height:340px;
    }

    .uni-card-small{
        height:160px;
    }

}

/* Mobile */
@media (max-width:576px){

    .scroll-section{
        padding:15px 10px;
    }

    .scroll-track{
        gap:12px;
        padding:0;
    }

    .uni-col-3{
        flex:0 0 180px;
    }

    .uni-col-3-wide{
        flex:0 0 230px;
    }

    .uni-image-card{
        height:310px;
    }

    .uni-card-small{
        height:120px;
    }

    .scroll-header{
        display:none;
    }

}