/* Boschypaling Categorie Pills v1.0.0 */
.bp-cats-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 0;
}
.bp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid #E0D4B8;
  background: #ffffff;
  color: #1A1208;
  font-size: 13px;
  font-weight: 600;
  transition: all .18s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}
.bp-pill:hover {
  border-color: #C8891A;
  color: #C8891A;
  background: rgba(200,137,26,.06);
}
.bp-pill.bpa {
  background: #C8891A;
  border-color: #C8891A;
  color: #1A1208;
}
.bp-pi {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,137,26,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.bp-pi svg {
  width: 15px;
  height: 15px;
  stroke: #C8891A;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .18s;
}
.bp-pill.bpa .bp-pi {
  background: rgba(26,18,8,.15);
}
.bp-pill.bpa .bp-pi svg {
  stroke: #1A1208;
}
