
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.staff-card {
  background: #f9fbff;
  padding: 18px;
  border-radius: 14px;
  border-top: 4px solid var(--primary-blue);
  transition: 0.3s;
}
.staff-title{color:var(--primary-blue);}
.staff-card:hover {
  transform: translateY(-6px);
  border-top: 4px solid var(--accent-red);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.staff-card h4 {
  font-size: 15px;
  color: var(--primary-blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.staff-card h4 i {
  background: var(--primary-blue);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-card p {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

/* IMAGE PANEL */
.staff-image-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.staff-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  padding: 20px;
}

.staff-overlay h5 {
  margin: 0;
}

/* RESPONSIVE */
@media(max-width:768px){
  .staff-grid {
    grid-template-columns: 1fr;
  }
}