@import url('https://fonts.googleapis.com/css2?family=Chau+Philomene+One&family=Open+Sans:wght@300;600&display=swap');

.personen-karten-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.personen-karte {
  width: 260px;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #f0faff; 
  border: 2px solid #bef0ff; 
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 4px 6px rgba(0, 139, 182, 0.1);
}

.personen-karte:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 139, 182, 0.2);
}

.personen-karte img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.personen-name {
  font-family: 'Chau Philomene One', sans-serif;
  font-size: 1.25rem;
  color: #b4eeff;
  margin-bottom: 0.3rem;
}

.personen-description {
  font-size: 0.95rem;
  color: #333;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.personen-email a {
  font-size: 0.85rem;
  color: #cbca00;
  font-weight: 600;
  text-decoration: none;
}

.personen-email a:hover {
  text-decoration: underline;
  color: #a8a600;
}
