
/* Consultant grid cards */
.staff {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.staff:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

/* Cover image */
.staff .img-wrap {
  height: 220px;
}
.staff .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Card content */
.staff .card-body {
  padding: 16px 18px;
  text-align: center;
}
.staff h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.staff p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
}
.staff .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 6px;
}
.badge-premium {
  background: linear-gradient(45deg, #ff8a00, #e52e71);
  color: #fff;
}
.badge-expert {
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  color: #fff;
}

/* Appoint button */
.staff .appoint-btn {
  display: inline-block;
  background: linear-gradient(45deg, #06beb6, #48b1bf);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background .3s ease;
}
.staff .appoint-btn:hover {
  background: linear-gradient(45deg, #43cea2, #185a9d);
  text-decoration: none;
}
.staff {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform .3s ease;
  text-align: center;
}
.staff:hover {
  transform: translateY(-5px);
}
.staff .img-wrap {
  padding: 20px;
}
.staff img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.staff h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.staff .badge {
  background: linear-gradient(45deg,#ff8a00,#e52e71);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  margin-left: 6px;
}
.staff .meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}
.staff p.desc {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.staff .appoint-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ce434f, #dc3545);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
  transition: background .3s;
}
.staff .appoint-btn:hover {
  background: linear-gradient(45deg,#06beb6,#48b1bf);
  text-decoration: none;
}