.wins h2 {
    margin-bottom: 12px;
}

.wins-wrap {
    margin-bottom: 24px;
    overflow-x: auto;
}

.wins-table {
    min-width: 768px;
}

.wins-table-tr {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 16px;
    white-space: nowrap;
}

.wins-table-tr:nth-child(odd) {
    background-color: var(--border);
}

.wins-table-tr:first-child {
    font-weight: 700;
}

.wins-table-td:nth-child(1) {
    width: 30%;
    flex: 0 0 30%;
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--font);
}

.wins-table-td:nth-child(1) img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    overflow: hidden;
    flex: 0 0 24px;
    margin: 0;
}

.wins-table-td:nth-child(2),
.wins-table-td:nth-child(3) {
    width: 20%;
    flex: 0 0 20%;
}

.wins-table-td:nth-child(4),
.wins-table-td:nth-child(6) {
    width: calc(10% - 30px);
    flex: 0 0 calc(10% - 30px);
}

.wins-table-td:nth-child(5) {
    text-align: center;
    width: 10%;
    flex: 0 0 10%;
}

.wins-table-td:nth-child(6) {
    text-align: right;
    color: var(--button-primary);
    font-weight: 700;
}