.ml-card {
    width: 260px;
    background: var(--mittel);
    border: 1px solid var(--gold);
    border-radius: 18px;
    padding: 18px;
    font-family: "Nunito", sans-serif;
    color: var(--gold);
}

/* 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: #e07b63;
    margin-bottom: 12px;
}

/* Avatar */
.ml-avatar {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 14px;
}

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

/* kleine Kästchen */
.ml-box.small {
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 6px 10px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 6px;
    background: var(--mittel);
}

/* Beschreibung */
.ml-text {
    border: 1px solid var(--gold);
    border-radius: 14px;
    padding: 12px;
    font-size: 13px;
    line-height: 1.4;
    background: var(--mittel);
    margin: 12px 0;
	overflow: scroll;
  max-height: 150px;
  margin-top: 0.5rem;
}

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

.ml-tags span {
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    background: var(--mittel);
}
.memberlist-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 40px auto;
    max-width: 1000px;
}
