.tier-list table{
    width:100%;
    table-layout: fixed;
}
.tier-list tbody{
    width:100%;
    display:table;
}
.tier-list tr:nth-child(n+2) td:last-child{
    table-layout: fixed;
    min-height:128px;
    display:grid;
    grid-template-columns: repeat(auto-fit, 128px);
    grid-gap: 8px;
}
.tier-list tr td:last-child>div{
    width:128px;
    table-layout: fixed
}
.tier-list tr:nth-child(n+2) td:first-child{
    width: 0;
    white-space: nowrap;
}
.tier-list th,
.tier-list td,
.tier-list table{
    border:2px solid #222;
    border-collapse:collapse;
}