.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1rem;
}

.staff-card {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
  transition: transform 0.2s ease;
}

.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
}

.staff-card h3 {
  color: #01efd5;
  font-size: 1.3em;
  margin-bottom: 0.3em;
}

.staff-card p span {
  color: #ff69b4;
  font-weight: bold;
  font-size: 1em;
}

.staff-lema {
  margin-top: 2rem;
  text-align: center;
  color: #fff;
  font-style: italic;
  font-size: 1.1em;
}
