/* Portfolio Tabs */
.pf-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.pf-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid #E5E3D6;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(20, 20, 20, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.pf-tab:hover {
  border-color: #4E7C72;
  color: #4E7C72;
}

.pf-tab.active {
  background: #4E7C72;
  border-color: #4E7C72;
  color: #fff;
}

/* Portfolio Cards */
.pf-card:hover {
  transform: scale(1.02);
}

.pf-card.pf-hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 767px) {
  .pf-card {
    width: 100% !important;
    min-height: 220px !important;
  }
  .pf-tabs {
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pf-card {
    width: calc(50% - 8px) !important;
  }
}
