<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">let data = Array.from(document.querySelectorAll('.reviews__row .reviews__card')),
    step = 3,
    item = 0;

data.slice(step).forEach(e =&gt; e.style.display = 'none');
item += step;

document.querySelector('.reviews__button').addEventListener('click', function(e){
  let tmp = data.slice(item, item + step);
  tmp.forEach(e =&gt; e.style.display = 'flex');
  item += step;
  
  if(tmp.length &lt; 3)
    this.remove();
});</pre></body></html>