.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    background-color: #ddd88a;
    padding: 20px 0;
}
.slider-wrapper::after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 125px;
    height: 100%;
    transform: rotateZ(180deg);
    background: linear-gradient(to right, #ddd88a 0%, rgba(255, 255, 255, 0) 100%);
}
.slider-wrapper::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 125px;
    height: 100%;
    /*transform: rotateZ(180deg);*/
    background: linear-gradient(to right, #ddd88a 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 20;
}
.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.winner-item {
    min-width: 220px; /* фикс ширина карточки */
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.winner-image{
    max-width: 130px;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
}
.winner-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.winner-name{
    display: flex;
    flex-direction: column;
}