.profile-card {
    position: relative;
    overflow: hidden;
    width: auto;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
    margin: 10px;
  }
  .profile-bg {
    width: 100%;
    display: block;
  }
  .profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    z-index: 3;
  }
  .profile-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), #d9d9d9);
    transition: opacity 0.3s ease-in-out;
  }
  
  .profile-card:hover .profile-overlay-top {
    opacity: 0;
  }
  .profile-img {
    position: relative;
    z-index: 2;
  }
  .profile-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 7/8;
    object-position: bottom;
  }
  