.lm-panel {
  display: grid;
  gap: 14px;
}

.lm-panel .panel__title::before {
  content: "\e91c";
}

.lm-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lm-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.lm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.72);
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.lm-pill [class^="icon-"] {
  font-size: 14px;
}

.lm-pill--good {
  border-color: rgba(0, 182, 109, 0.22);
  background: rgba(0, 182, 109, 0.10);
  color: rgba(0, 182, 109, 0.98);
}

.lm-pill--good [class^="icon-"] {
  color: rgba(0, 182, 109, 0.98);
}

.lm-pill--mid {
  border-color: rgba(41, 28, 91, 0.18);
  background: rgba(41, 28, 91, 0.06);
  color: rgba(41, 28, 91, 0.86);
}

.lm-pill--mid [class^="icon-"] {
  color: rgba(41, 28, 91, 0.86);
}

.lm-chart {
  position: relative;
  min-height: 0;
}

.lm-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.lm-foot {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.lm-src {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.50);
}

.lm-src strong {
  color: rgba(41, 28, 91, 0.72);
}

