.winners__wrap {
    background-color: #000;
    padding: 120px 80px 90px;
    transform: translateY(-1px);
}

.winners__wrap::after {
    content: '';
    position: absolute;
    top: -98px;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100px;
    background: linear-gradient(transparent, #000);
    z-index: 2000;
}

.winners__content {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 3000;
}

.winners__title {
    font-size: 48px;
    text-align: center;
    display: block;
    margin-bottom: 32px;
}

.winners__content span {
    color: #fff;
    text-align: center;
    font-size: 16px;
}

.winners__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.winners__header,
.winners__item {
    list-style: none;
    display: grid;
    gap: 14px;
    grid-template-columns: 50px 130px 220px 1fr;
}

.winners__item span {
    background: rgb(44, 1, 95);
    background: linear-gradient(180deg, #3FD62B 0%, #093a07 100%);
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (max-width: 850px) {
    .winners__wrap {
        background: transparent;
        padding: 20px 20px 60px;
    }

    .winners__wrap::after {
        background: unset;
    }

    .winners__title {
        font-size: 7vw;
    }

    .winners__list {
        gap: 8px;
        overflow-x: scroll;
        padding-bottom: 8px;
    }

    .winners__list::-webkit-scrollbar {
        height: 4px;
    }

    .winners__header,
    .winners__item {
        list-style: none;
        display: grid;
        gap: 8px;

        grid-template-columns: 40px 80px 120px 1fr;
    }

    .winners__item {
        min-width: 520px;
    }

    .winners__content span {
        font-size: 12px;
        height: 36px;
    }
}

@media screen and (max-width: 380px) {
    .winners__content span {
        height: 32px;
    }
}
