/* Climb badges — same visual language as the food maps' award-badge, sized
   a bit bigger since they carry a number (elevation gain) instead of a symbol. */
.climb-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.climb-easy { background: #2f8f4e; }
.climb-moderate { background: #d67a3a; }
.climb-steep { background: var(--red); }
.climb-rolling { background: #4a6fa5; }
.climb-offroad { background: #8b5e34; }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
