/* ========================================
   STAFF CARDS
   ======================================== */
.staff-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}
.staff-card .card-title {
  color: var(--bs-dark);
  font-weight: 600;
}
.staff-card .card-subtitle {
  font-size: 0.9rem;
}
.card-img-top-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-img-top-wrapper .staff-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.placeholder-avatar {
  height: 200px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.placeholder-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
}
.placeholder-avatar .avatar-placeholder i {
  font-size: 2.5rem !important;
}
.contact-info {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 0.75rem;
}
.contact-info a {
  color: var(--bs-dark);
  font-size: 0.85rem;
}
.contact-info a:hover {
  color: var(--color-primary, var(--bs-primary));
}
.contact-info i {
  font-size: 0.9rem;
}

@media only screen and (max-width: 991px) {
  .staff-card .card-img-top-wrapper, .placeholder-avatar {
    height: 320px;
  }
}
@media only screen and (min-width: 992px) {
  .staff-card .card-img-top-wrapper, .placeholder-avatar {
    height: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .staff-card .card-img-top-wrapper, .placeholder-avatar {
    height: 240px;
  }
}


/* Staff email icon */
.staff-email-link {
  font-size: 0.8rem;
}

/* Staff phone icon hover effect */
.staff-phone-link {
  font-size: 0.8rem;
}

/* Default was 1020 but interferes with Tracy info box (106) */
.sticky-top {
    z-index: 100!important; 
}