/* celebrity.css */
.filters{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.chip{
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: rgba(237,239,243,.78);
  cursor:pointer;
  transition: border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease), background .18s var(--ease);
}
.chip:hover{ transform: translateY(-1px); border-color: rgba(255,216,0,.35); color: rgba(255,216,0,.9); }
.chip.is-on{
  border-color: rgba(255,216,0,.55);
  color: rgba(255,216,0,.95);
  background: rgba(255,216,0,.07);
}

.gallery{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.gThumb{
  height: 380px;
  background: linear-gradient(135deg, rgba(255,216,0,.10), rgba(255,255,255,.02));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.gBody{ padding: 14px; }
.gTitle{ font-weight: 750; }
.gMeta{ margin-top:6px; font-size:13px; color: rgba(237,239,243,.62); }

@media (max-width: 980px){
  .gallery{ grid-template-columns: 1fr; }
}
.gThumb{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}