/* Team filter (people-wall block) */
.team-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 0 50px;
}

.team-filter__btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--border-radius-regular, 1em) 0 var(--border-radius-regular, 1em) 0;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-family-secondary, inherit);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.6;
  padding: 12px 24px;
  text-transform: uppercase;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    background-color 0.2s ease, border-radius 0.2s ease;
}

.team-filter__btn:hover {
  border-radius: var(--border-radius-regular, 1em);
  opacity: 1;
}

.team-filter__btn.active {
  background-color: var(--color-gold, #ddc67a);
  border-color: transparent;
  border-radius: var(--border-radius-regular, 1em);
  color: var(--color-pushing-noir, #1a1a1a);
  font-weight: var(--font-weight-bold, 700);
  opacity: 1;
}

.component.people .data-feed-list .item.is-hidden {
  display: none;
}

@media (max-width: 767px) {
  .team-filter {
    gap: 8px;
    margin-bottom: 35px;
  }

  .team-filter__btn {
    font-size: 12px;
    padding: 10px 18px;
  }
}
