/* ══════════════════════════════════════════════════
   Staff listing page (staff.php)
   .page-hero / .sec-wrap / .sec-inner / .sec-head / .sec-tag-pill /
   .sec-rule / .sec-title / .sec-sub live in the sitewide
   assets/css/style.css (shared across several page-listing templates).
   This file only has what's unique to the staff filter/grid.
   ══════════════════════════════════════════════════ */

/* FILTER BUTTONS */
.staff-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.sf-btn {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid oklch(88% 0.01 90);
  background: white;
  color: var(--text-600);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.sf-btn:hover { border-color: var(--green-600); color: var(--green-700); }
.sf-btn.active { background: var(--green-700); border-color: var(--green-700); color: white; }

/* GRID */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

/* CARD */
.staff-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(90% 0.01 90);
  transition: transform 0.25s, box-shadow 0.25s;
}
.staff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.staff-card-bar { height: 5px; background: linear-gradient(90deg, var(--green-700), var(--gold-500)); }

.staff-photo-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-100), var(--gold-100));
}
.staff-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

.staff-info { padding: 18px 16px 20px; text-align: center; }
.staff-name { font-size: 16px; font-weight: 700; color: var(--green-900); }
.staff-role { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--gold-500); margin-top: 4px; text-transform: uppercase; }
.staff-divider { width: 40px; height: 3px; background: var(--gold-500); border-radius: 2px; margin: 12px auto; }
.staff-dept { font-size: 13px; color: var(--text-600); }

.staff-contact { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; }
.staff-contact a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-700);
  text-decoration: none;
  transition: all 0.2s;
}
.staff-contact a:hover { background: var(--green-700); color: white; transform: translateY(-2px); }
.staff-contact a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* RESPONSIVE */
@media (max-width: 560px) {
  .staff-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .staff-info { padding: 14px 10px 16px; }
  .sf-btn { padding: 7px 14px; font-size: 12.5px; }
}
