/* Portfolio Gallery styles */
.pg-filters {
  margin-bottom: 20px;
  text-align: center;
}
.pg-filters button {
  margin: 0 6px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: #e9ecef;
  cursor: pointer;
}
.pg-filters button.active { outline: 2px solid #333; }
.pg-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.pg-item {
  width: calc(33.333% - 11px);
}
@media (max-width: 992px){
  .pg-item { width: calc(50% - 8px); }
}
@media (max-width: 600px){
  .pg-item { width: 100%; }
}
.pg-item img, .pg-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.pg-title {
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
}