.ml-card {
    width: 280px;
    background: rgba(200, 195, 180, 0.6);
    border: 1px solid #8b7d6b;
    border-radius: 18px;
    padding: 18px;
    font-family: "Nunito", sans-serif;
    color: #3f3a34;
}

/* Name */
.ml-name {
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #b56d52;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

/* Avatar */
.ml-avatar {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 14px;
    border: 1px solid #8b7d6b;
}

.ml-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* kleine Kästchen */
.ml-box.small {
    border: 1px solid #7b6e5e;
    border-radius: 20px;
    padding: 6px 10px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 6px;

    background: radial-gradient( ellipse at top, #e3ddd2 0%, #d4cec1 60%, #c9c2b4 100% );
    color: #4c443c;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Beschreibung */
.ml-text {
    border: 1px solid #7b6e5e;
    border-radius: 14px;
    padding: 12px;
    font-size: 13px;
    line-height: 1.6;

     background: radial-gradient( ellipse at top, #e3ddd2 0%, #d4cec1 60%, #c9c2b4 100% );
    color: #3f3a34;

    margin: 12px 0;
    overflow: auto;
    max-height: 150px;
}

/* Scrollbar */
.ml-text::-webkit-scrollbar {
    width: 4px;
}

.ml-text::-webkit-scrollbar-track {
    background: #b7aa98;
}

.ml-text::-webkit-scrollbar-thumb {
    background: #7b6e5e;
    border-radius: 10px;
}

/* Tags unten */
.ml-tags {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.ml-tags span {
    border: 1px solid #7b6e5e;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;

    background: radial-gradient( ellipse at top, #e3ddd2 0%, #d4cec1 60%, #c9c2b4 100% );
    color: #4c443c;
}

/* Wrapper */
.memberlist-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 40px auto;
    max-width: 1000px;
}