@media (min-width: 992px) {
    .memberlist-row {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    .member-card {
        box-sizing: border-box !important;
        flex: 1 0 calc(50% - 20px) !important;
        max-width: calc(50% - 20px) !important;
    }
}

.memberlist-row {
    gap: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; 
}

.member-card {
    background: var(--box-background);
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

.member-user {
    display: flex;
    flex-direction: row;
    font-size: 1em;
    padding: 10px;
    font-family: "Quicksand", Helvetica, sans-serif;
    text-transform: uppercase;
    align-items: center;
    width: 100%;
}

.member-user .line {
    border-bottom: 1px dotted var(--hr-color);;
    width: 100%;
    margin-right: 10px;
}

.member-grid {
    display: grid;
    grid-template-columns: auto;
    margin-bottom: 20px;
}

.member-card .ava-con {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 20px;
    height: 125px;
    max-width: 125px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.av-backer {
    position: absolute;
    top: 0;
    left: 70%;
    right: 0;
    bottom: 0;
}

.as-accounts {
    margin: 0px 10px;
}

.stats.m-icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.prof-stats {
    min-width: 60%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 5px 35px;
    align-items: center;
    justify-content: space-between;
    font-family: inter;
    font-family: "Roboto", Helvetica, sans-serif;
}

.prof-stats span {
    height: 1px;
    background: var(--header);
    margin-top: 0px;
    width: 100%;
    opacity: 0.4;
}

.stat-a {
    min-width: fit-content;
    font-size: 0.7em;
    display: flex;
    font-weight: bold;
    align-items: center;
    gap: 10px;
    color: var(--quote-color);
}

.stat-b {
    min-width: fit-content;
    font-size: 0.7em;
}