.nb4fpcs{ width:100%; }

/* Filters */
.nb4fpcs__filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.nb4fpcs__filter{
  appearance:none;
  cursor:pointer;
  line-height:1;
}

/* Grid */
.nb4fpcs__grid{
  display:grid;
  grid-template-columns:repeat(var(--nb4fpcs-cols, 3), minmax(0, 1fr));
  gap:var(--nb4fpcs-gap, 18px);
}

.nb4fpcs__card{
  min-width:0;
}

/* Make the whole card clickable */
.nb4fpcs__link{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* Image */
.nb4fpcs__media{
  width:100%;
  aspect-ratio: 4 / 3;
  background: rgba(0,0,0,.04);
  overflow:hidden;
}

.nb4fpcs__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.nb4fpcs__placeholder{
  width:100%;
  height:100%;
}

.nb4fpcs__title{
  margin: 12px 0 0;
}

.nb4fpcs__empty{ padding:12px 0; }

.nb4fpcs__card.is-hidden{ display:none !important; }
