.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 19.5px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pill:hover {
  background: #000000;
  color: #FFFFFF;
}


.pill__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill__icon svg {
  width: 100%;
  height: 100%;
  stroke: #3F3F46;
}

.pill:hover .pill__icon svg {
  stroke: #FFFFFF;
}

.pill__text {
  font-family: 'Funnel Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
}

.pill:hover .pill__text {
  color: #FFFFFF;
}
