.top-hero {
  padding-bottom: 34px;
}

.section--compact {
  padding-top: 36px;
  padding-bottom: 18px;
}

.section--compact-top {
  padding-top: 18px;
}

.focus-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.top-subtitle {
  margin-top: 16px;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.meta-row {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 44, 37, 0.18);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.leader-card {
  border-radius: 18px;
  border: 1px solid rgba(76, 105, 74, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 16px;
}

.leader-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.leader-rank {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: #edf8da;
  color: #29411f;
}

.leader-rank--1 { background: #ffe88f; color: #5d4300; }
.leader-rank--2 { background: #dce4ef; color: #364454; }
.leader-rank--3 { background: #f3dfcf; color: #5a3f24; }

.leader-name {
  font-weight: 700;
  font-size: 1.03rem;
}

.leader-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.leader-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.leader-stat {
  border-radius: 12px;
  padding: 10px;
  background: #f4f9eb;
}

.leader-stat b {
  display: block;
  font-size: 1.06rem;
  line-height: 1.15;
}

.leader-stat span {
  font-size: 0.76rem;
  color: var(--muted);
}

.table-shell {
  border: 1px solid rgba(56, 80, 56, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  overflow: auto;
  box-shadow: var(--shadow);
}

.leaders-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.leaders-table th,
.leaders-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(56, 80, 56, 0.14);
  text-align: left;
  font-size: 0.92rem;
}

.leaders-table tbody tr:hover {
  background: #f8fce8;
}

.leaders-table tbody tr:nth-child(1) td:first-child,
.leaders-table tbody tr:nth-child(2) td:first-child,
.leaders-table tbody tr:nth-child(3) td:first-child {
  font-weight: 800;
}

.leaders-table tbody tr:nth-child(1) td:first-child::after {
  content: " 🥇";
}

.leaders-table tbody tr:nth-child(2) td:first-child::after {
  content: " 🥈";
}

.leaders-table tbody tr:nth-child(3) td:first-child::after {
  content: " 🥉";
}

.leaders-table th {
  position: sticky;
  top: 0;
  background: #f0f7e5;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.empty-state {
  padding: 30px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .leaders-grid { grid-template-columns: 1fr; }
  .focus-grid--two { grid-template-columns: 1fr; }
}
