.worksolution-image-reel {
    position: relative;
    padding: 8px 0 18px;
    background: transparent;
}

.worksolution-image-reel__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 2px 18px;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.worksolution-image-reel__track::-webkit-scrollbar {
    display: none;
}

.worksolution-image-reel.is-dragging-range .worksolution-image-reel__track {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.worksolution-image-reel__slide {
    flex: 0 0 clamp(200px, 40vw, 360px);
    scroll-snap-align: start;
}

.worksolution-image-reel__card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.worksolution-image-reel__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.worksolution-image-reel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.worksolution-image-reel__label {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-family: "PingFang SC", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    z-index: 2;
}

.worksolution-image-reel__controller {
    position: relative;
    width: 260px;
    height: 36px;
    margin: 16px auto 0;
    background: #2b2b2b;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worksolution-image-reel__controller.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.worksolution-image-reel__controller-line {
    position: absolute;
    left: 10%;
    width: 80%;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    z-index: 1;
    pointer-events: none;
}

.worksolution-image-reel__controller-thumb {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffbe00 !important;
    border: none;
    padding: 0;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    z-index: 2;
    touch-action: none;
}

.worksolution-image-reel__controller-thumb:hover,
.worksolution-image-reel__controller-thumb:focus,
.worksolution-image-reel__controller-thumb:active {
    background-color: #ffbe00 !important;
    box-shadow: none !important;
    outline: none;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
}

.worksolution-image-reel__controller .worksolution-image-reel__controller-thumb:hover,
.worksolution-image-reel__controller .worksolution-image-reel__controller-thumb:focus,
.worksolution-image-reel__controller .worksolution-image-reel__controller-thumb:active {
    background-color: #ffbe00 !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .worksolution-image-reel__slide {
        flex-basis: 80vw;
    }
}
