.his-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.his-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.his-track {
    display: flex;
    gap: 18px;
    align-items: center;
    height: 100%;
    min-width: 100%;
    box-sizing: border-box;
}

.his-slide {
    flex: 0 0 auto;
    display: block;
    min-width: 260px;
    max-width: 320px;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    background: #111;
}

.his-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(0.9);
    transition: transform 0.35s ease, filter 0.35s ease;
    display: block;
}

.his-slide:hover img,
.his-slide:focus-within img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.08);
}

.his-wrapper:hover .his-slide img {
    opacity: 0.92;
}

.his-wrapper {
    scrollbar-width: none;
}

.his-wrapper::-webkit-scrollbar {
    display: none;
}

@media (max-width: 860px) {
    .his-slide {
        min-width: 200px;
        max-width: 240px;
    }
}

@media (max-width: 600px) {
    .his-slide {
        min-width: 170px;
        max-width: 210px;
    }
}
