/* ── GEO LAYER PILL BUTTON (toggleable — replaces plain face-geo-label) ── */
.geo-layer-pill {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 9px;
  background: rgba(30, 30, 40, .06);
  color: rgba(30, 30, 40, .5);
  border: 1px solid rgba(30, 30, 40, .14);
  border-radius: 999px;
  font-family: var(--font-hook);
  font-size: var(--fs-t2);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 1;
  min-width: 0;
  line-height: 1;
  letter-spacing: .01em;
  max-width: 100%
}

.geo-layer-pill:hover {
  border-color: rgba(30, 30, 40, .3);
  color: #1a1a22
}

.geo-layer-pill.on {
  background: #1a1a22;
  color: #fff;
  border-color: #1a1a22
}

.geo-layer-pill.on:hover {
  opacity: .85
}

.dfc .geo-layer-pill {
  font-size: 11px;
  height: 18px
}
