.fpf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  
}

.fpf-square {
  aspect-ratio: 1 / 1;
  //background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
	background: rgba(0, 0, 0, 0.05);
	border: none !important;
	padding: 2rem;
}

.fpf-square img {
  max-width: 100%;
  max-height: 60%;
  object-fit: contain;
}

/* 3 per row */
@media (max-width: 992px) {
  .fpf-grid {
	grid-template-columns: repeat(3, 1fr);
  }
}

/* 2 per row */
@media (max-width: 576px) {
  .fpf-grid {
	grid-template-columns: repeat(2, 1fr);
  }
}