/* Leaderboard label — subtitle under the main "Company Sales Leaderboard"
   title indicating which tab/leaderboard is currently active.

   Hidden by default; revealed only when body.broadcast-active is set
   (Broadcast mode). Pairs with js/leaderboard-label.js which injects the
   DOM element and updates its text as tabs change.

   Styling chosen to match the brand: same letter-spacing as the existing
   h1.main-title so the leading character visually lines up, brand dark
   colour, regular weight.
*/
.leaderboard-label-row {
  display: none;
  text-align: left;
  margin-top: -9px;
  margin-bottom: 24px;
  padding-top: 0;
  padding-bottom: 0;
}
.leaderboard-label {
  font-size: 28px;
  font-weight: 400;
  color: #231F20;
  margin: 0;
  padding: 0;
  line-height: 1.1;
  letter-spacing: -0.72px;
  text-indent: 0;
}
body.broadcast-active .leaderboard-label-row {
  display: block;
}
