.contact-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -10px;
  user-select: none;
  line-height: 1;
}

.contact-card {
  border: 1px solid rgb(212, 212, 212);
  width: 300px;
  background-color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: border 0.2s, box-shadow 0.2s;
  margin: 10px;
}

.contact-card:hover {
  border: 1px solid rgb(196, 196, 196);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.contact-card-header {
  position: relative;
}

.contact-profile-banner {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.contact-profile-picture {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(60%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.contact-card-content {
  padding: 18px;
  margin-top: -10px;
}

.contact-card-content h2 {
  margin-top: 0;
  font-weight: bold;
}

.contact-card-content p {
  margin-bottom: 12px;
  color: #222;
  margin-top: 0;
}

@media (max-width: 500px) {
  .contact-card {
    margin: 10px auto;
  }
}
