/*
 * YMCA of Greater Tulsa — branch-staff.css
 * Branch staff 4-column card grid
 */

.staff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.staff-card {
  border-radius: 10px; overflow: hidden; border: 0.5px solid #e8e8e8;
  background: #fff; display: flex; flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}
.staff-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); transform: translateY(-2px); }
.staff-photo {
  width: 100%; aspect-ratio: 1/1; background: #f0f0ee;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.staff-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.staff-photo-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #ccc; }
.staff-photo-placeholder span { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.staff-body  { padding: 18px 18px 20px; }
.staff-name  { font-weight: 600; font-size: 15px; color: #1a1a1a; margin-bottom: 4px; }
.staff-title { font-size: 12.5px; color: var(--green); font-weight: 600; margin-bottom: 6px; }
.staff-contact { font-size: 12px; color: #888; text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.15s; }
.staff-contact:hover { color: var(--blue); }

@media (max-width: 1024px) { .staff-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .staff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px)  { .staff-grid { grid-template-columns: 1fr; } }
