/* ─── Chips (filter pills) ─── */
.chips {
  display: flex;
  gap: var(--sp-8);
}

.chips--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.chips--scroll::-webkit-scrollbar {
  display: none;
}

.chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);

  width: fit-content;
  height: 36px;
  padding: 0 var(--sp-12);

  background: var(--color-white);
  border: 1px dashed rgba(0, 0, 0, 0.32);
  border-radius: var(--radius-sm);
  
  cursor: pointer;
  white-space: nowrap;
}

.chip__label {
  margin-bottom: -3px;
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  line-height: var(--lh-15);
  color: var(--color-black);
  
  pointer-events: none;
}

.chip--active {
  border: 1px solid rgba(0, 0, 0, 0.48);
  background: var(--color-white);
}

.chip--active .chip__label {
  font-weight: var(--fw-semibold);
}