/* ============================================================
   Tier Lists hub: the three voted community lists as big
   preview cards, plus the "create your own" button.
   Reuses the leaderboard hero + theme tokens.
   ============================================================ */

.tls-topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: clamp(14px, 2vw, 22px);
}

.tls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 940px) { .tls-grid { grid-template-columns: 1fr; } }

.tls-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  color: var(--text);
  text-decoration: none;
}

/* mini fake tier rows that make the card read as a preview */
.tls-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.tls-prow {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgba(255,255,255,.02);
}
.tls-pt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 22px;
  border-radius: 5px;
  font-size: 12px; font-weight: 900;
  color: #0a1320;
  background: var(--tc, #888);
}
.tls-pc {
  width: 54px; height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.tls-name { font-size: 21px; line-height: 1.15; }
.tls-desc { color: var(--text-dim); font-size: 14px; line-height: 1.55; flex: 1; }
.tls-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ice-200, var(--accent));
}
.tls-cta svg { width: 15px; height: 15px; }
