.tournaments-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(352px, 1fr));
    gap: 10px;
}
.tournaments-list-item {
    background: var(--color-bg);
    border: 1px solid var(--color-secondary-2);
    border-radius: 8px;
    margin: 0 0 6px;
    max-height: 232px;
    min-height: 232px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}
.tournament-banner {
    width: 352px;
    display: block;
    margin: 0 auto;
}
.tournament-provider-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    max-height: 50px;
    min-height: 50px;
    padding: 1px 16px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}
.tournament-provider {
    max-height: 100%;
}
.tournament-info {
    text-align: center;
    background: linear-gradient(180deg,#0b156900,#0b1569),linear-gradient(180deg,#01001d00,#01001db3 25%,#01001d);
    bottom: -4px;
    box-shadow: 0 4px 4px #00000040;
    justify-content: space-between;
    min-height: 75px;
    padding: 24px 16px 16px;
    position: absolute;
    width: 100%;
    z-index: 3;
}

.tournament-prize, .tournament-name {
    color: #fff;
    font-family: Open Sans,sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}
.tournament-prize {
    color: #ffd200;
}
