/* leaderboard.css */
/* Extracted from templates/pages/leaderboard.html */

/* ─── Leaderboard Hero Banner ─── */
.lb-hero {
  position: relative;
  height: 160px;
  border-radius: var(--border-radius, 16px);
  overflow: hidden;
  margin-bottom: 16px;
}

.lb-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.lb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--bg-body, #F5F7FA) 100%);
}

.leaderboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.leaderboard-title {
  color: var(--text-white);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}


/* Voting section styles */
.voting-section {
  margin-top: 24px;
}

.voting-items {
  padding: 4px 0;
}

.voting-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.voting-item:last-child {
  border-bottom: none;
}

.voting-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-section-alt, #EEF1F5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.voting-info {
  flex: 1;
}

.voting-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.voting-subtitle {
  font-size: 13px;
  color: var(--text-white-muted);
}

.voting-btn {
  padding: 8px 18px;
  background: var(--lime-primary);
  color: var(--navy-dark);
  border-radius: var(--border-radius-pill, 100px);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.voting-btn:hover {
  background: var(--lime-hover);
}