/* Faculty photo thumbnails */
.faculty-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #dee2e6;
}

/* Larger photo for the Faculty & Staff list so faces are easy to scan.
   The exact width/height is set inline from the admin "photo size" setting;
   these rules provide the shared framing and a default. */
.faculty-photo-lg {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #dee2e6;
}
.faculty-photo-lg-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  border: 2px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f5;
  color: #adb5bd;
}

/* Female gender badge — Bootstrap doesn't have pink */
.badge.bg-pink {
  background-color: #d63384;
  color: #fff;
}

/* Extra-small button */
.btn-xs {
  padding: 0.15rem 0.4rem;
  font-size: 0.75rem;
  border-radius: 0.2rem;
}

/* Tighten navbar on small screens */
@media (max-width: 768px) {
  .navbar-brand { font-size: 1rem; }
}

/* Sticky filter sidebar future-proofing */
.filter-panel {
  position: sticky;
  top: 1rem;
}
