/* Tierlist page */
.meta-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.meta-bar__left{
  display:flex;
  align-items:center;
}

.meta-title{
  color:#ffffff;
  font-size:18px;
  font-weight:800;
}

.meta-bar__right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.search,
.select,
.btn{
  height:42px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(20,30,56,0.95);
  color:#ffffff;
}

.search{
  min-width:220px;
  padding:0 14px;
  outline:none;
}

.select{
  min-width:140px;
  padding:0 12px;
  outline:none;
}

.btn{
  padding:0 16px;
  cursor:pointer;
  font-weight:700;
}

.card{
  background:transparent;
  border:none;
  box-shadow:none;
}

.table{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.table__head,
.table__row{
  display:grid;
  grid-template-columns:minmax(280px, 1.8fr) 120px 120px 120px 120px;
  align-items:center;
  gap:14px;
}

.table__head{
  padding:0 14px 10px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:#d8e4ff;
  font-size:14px;
  font-weight:800;
}

.table__row{
  padding:12px 14px;
  border-radius:14px;
  background:rgba(17,25,46,0.92);
  border:1px solid rgba(255,255,255,0.07);
  color:#ffffff;
  text-decoration:none;
  transition:0.18s ease;
}

.table__row:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,0.14);
  box-shadow:0 8px 20px rgba(0,0,0,0.22);
}

.tchamp{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.tchamp__img{
  width:58px;
  height:58px;
  border-radius:12px;
  object-fit:cover;
  flex:0 0 58px;
  display:block;
}

.tchamp__name{
  color:#ffffff;
  font-size:16px;
  font-weight:800;
  line-height:1.2;
}

.muted{
  color:rgba(255,255,255,0.78);
  font-weight:700;
}

.win{
  color:#ffffff;
  font-weight:800;
}

/* tablet */
@media (max-width: 1100px){
  .table__head,
  .table__row{
    grid-template-columns:minmax(220px, 1.6fr) 90px 90px 90px 90px;
    gap:10px;
  }

  .meta-title{
    font-size:16px;
  }
}

/* mobile */
@media (max-width: 768px){
  .meta-bar{
    gap:12px;
  }

  .meta-title{
    font-size:15px;
  }

  .meta-bar__right{
    width:100%;
  }

  .search{
    min-width:0;
    width:100%;
  }

  .select{
    min-width:0;
    flex:1 1 140px;
  }

  .btn{
    flex:0 0 auto;
  }

  .table__head{
    display:none;
  }

  .table__row{
    grid-template-columns:1fr;
    gap:10px;
    padding:12px;
  }

  .tchamp__img{
    width:52px;
    height:52px;
    flex-basis:52px;
  }

  .tchamp__name{
    font-size:15px;
  }

  .table__row > div:nth-child(2),
  .table__row > div:nth-child(3),
  .table__row > div:nth-child(4),
  .table__row > div:nth-child(5){
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding-top:6px;
    border-top:1px solid rgba(255,255,255,0.06);
    font-size:14px;
  }

  .table__row > div:nth-child(2)::before{
    content:"Role";
    color:rgba(255,255,255,0.65);
    font-weight:700;
  }

  .table__row > div:nth-child(3)::before{
    content:"Ban Rate";
    color:rgba(255,255,255,0.65);
    font-weight:700;
  }

  .table__row > div:nth-child(4)::before{
    content:"Pick Rate";
    color:rgba(255,255,255,0.65);
    font-weight:700;
  }

  .table__row > div:nth-child(5)::before{
    content:"Win Rate";
    color:rgba(255,255,255,0.65);
    font-weight:700;
  }
}