/* --- Kandidaten / Profile Cards --- */
.profile-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.profile-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1rem;
  width: 190px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.profile-card img {
  width: 100%;
  height: auto;
  min-height: 210px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.profile-card h3 {
  color: #5f8d44;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.profile-card p {
  font-size: 0.9rem;
  color: #444;
}

.profile-card .position {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.3rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.profile-card .age {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
}

@media (max-width: 768px) {

  /* Candidate cards in 2 columns or 1 column if too narrow */
  .profile-cards {
    gap: 1rem;
  }

  .profile-card {
    width: 45%;
  }

  @media (max-width: 500px) {
    .profile-card {
      width: 90%;
    }
  }
}

/* ----- Very Small Phones (≤ 400px) ----- */
@media (max-width: 400px) {
  .profile-card {
    width: 100%;
  }
}