* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-y: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 100%;
    width: 100%;
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper .image-list {
    display: grid;
    gap: 20px;
    font-size: 0;
    margin-top: 3%;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(4, 1fr);
}

.slider-wrapper .image-list .card {
    width: 100vw;
}

.slider-wrapper .image-list .card .image-item {
    width: 100%;
}

.container .slider-scrollbar {
    height: 24px;
    width: 80%;
    display: flex;
    align-items: center;
    margin: 0 10%;
}

.slider-scrollbar .scrollbar-track {
    height: 4px;
    width: 100%;
    background: #d9d9d9;
    position: relative;
    border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track {
    height: 5px;
}

.slider-scrollbar .scrollbar-thumb {
    position: absolute;
    height: 100%;
    width: 25%;
    background: #72253D;
    border-radius: 4px;
    cursor: grab;
}

.slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 5px;
    top: -1px;
}

.slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}