.member-card {
    position: relative;
    box-shadow: 0 0 5px 5px #dedede;
    border-radius: 10px;
}

.member-card img {
  width: 100%;
  border-radius: 10px;
    
}
.member-card .nomEl {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.63) 38%,rgba(0,0,0,0.65) 39%);
    border-radius: 0 0 6px 6px;
    height: 50px;
}
.member-card .nom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}
.badges {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.badge {
    background: rgba(0,47,71,.9);
    color: #fff;
    padding: 6px 20px;
    border-radius: 6px;
    text-align: center;
}

.badge strong {
    display: block;
    font-size: 15px;
}

.badge span {
    font-size: 10px;
    opacity: .85;
}
