.list-page{
  max-width:1100px;
  margin:0 auto;
  padding:20px 16px 40px;
}

.list-page-head{
  margin-bottom:16px;
}

.list-results{
  display:grid;
  gap:14px;
}

.list-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.list-card h3{
  margin:0 0 6px 0;
  font-size:18px;
}

.list-segment-list{
  display:grid;
  gap:10px;
  margin-top:12px;
}

.list-segment-item{
  border:1px solid rgba(11,13,18,.10);
  border-radius:12px;
  background:rgba(255,255,255,.65);
  padding:10px 12px;
}
.list-segment-link{
  display:block;
  text-decoration:none;
  color:inherit;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.list-segment-link:hover{
  background:rgba(11,107,181,.08);
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.list-status-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
  border:1px solid rgba(11,13,18,.12);
}

.list-status-badge.is-applied{
  background:rgba(11,107,181,.10);
  border-color:rgba(11,107,181,.18);
  color:var(--gvb-blue);
}

.list-status-badge.is-empty{
  background:rgba(11,13,18,.06);
  color:rgba(11,13,18,.72);
}

.list-status-badge.is-locked{
  background:rgba(191,62,15,.10);
  border-color:rgba(191,62,15,.18);
  color:#9b3b12;
}

.list-status-badge.is-unknown{
  background:rgba(120,120,120,.10);
  color:rgba(11,13,18,.6);
}