.club-pro-page { padding-bottom: 2rem; }
.club-hero {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-radius: 1.25rem;
  padding: 1.25rem 1.2rem;
  /* رنگ از theme-palette (--hero-*) */
}
.club-hero-badge {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.club-points {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
}
.club-card {
  background: var(--card, #fff);
  border: 1px solid var(--border, #eef0f5);
  border-radius: 1.1rem;
  padding: 1.1rem;
  box-shadow: 0 8px 22px rgba(15,15,40,.05);
  color: var(--text);
}
.club-tier,
.club-ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border, #eef0f5);
}
.club-tier:last-child,
.club-ledger-row:last-child { border-bottom: 0; }
.club-tier strong,
.club-ledger-row strong { display: block; }
.club-tier span,
.club-ledger-row span {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .15rem;
}
.club-tier em,
.club-ledger-row em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}
.club-tier.is-current {
  background: rgba(var(--brand-rgb), .06);
  border-radius: .8rem;
  padding: .75rem .7rem;
  border-bottom-color: transparent;
  margin-bottom: .25rem;
}
