.tags-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;

  label {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.15s, color 0.15s;

    &:hover {
      color: #666;
    }

    &:has(input[type="checkbox"]:checked) {
      background: #e9e9e9;
      font-weight: 500;
      padding: 0.2rem 0.45rem;
    }
  }

  input[type="checkbox"] {
    position: absolute;
    opacity: 0;
  }
}
