.staff-member {
  background: white;
  padding: 2rem 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
  margin: 10rem auto;
  width: 70%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* .staff-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100%;
} */

.staff-member img {
  width: 50%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #007bff;
}

.name {
  font-size: 2.75rem;
  color: #333;
  margin-top: 10px;
}

.position {
  font-size: 2.5rem;
  color: #555;
  margin: 5px 0;
}

.quote {
  font-style: italic;
  color: #777;
  margin: 10px 0;
}

.links {
  margin-top: 15px;
}

.links a {
  display: inline-block;
  margin: 5px;
  text-decoration: none;
  color: white;
  background: #007bff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.links a:hover {
  background: #0056b3;
}
