/* =========================================================
   PN — Archives Articles : Bulles de filtres
   Fichier provisoire à fusionner plus tard dans pn-archives-articles.css
   ========================================================= */

.pn-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 18px;
}

.pn-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(117, 153, 57, 0.35);
  background: #fff;
  color: #1f2937;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: .85rem;
  line-height: 1;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
  text-decoration: none;
}

.pn-chip:hover {
  background: #f6f9f1;
  border-color: rgba(117, 153, 57, 0.55);
  transform: translateY(-1px);
}

.pn-chip-label {
  font-weight: 600;
}

.pn-chip-x {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #759739;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.pn-chip-reset .pn-chip-x {
  background: #1f2937;
}

/* =========================================================
   PN — Exclusion des chips des styles Elementor
   ========================================================= */

.elementor-kit-11 button.pn-chip,
.elementor-kit-11 .pn-chip,
.elementor-kit-11 .pn-active-filters .pn-chip {
  background-color: transparent;
  background-image: none;
  color: #1f2937;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  text-transform: none;
  line-height: 1;
  box-shadow: none;
  border: 1px solid rgba(117, 153, 57, 0.35);
}