@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: 10px;
    padding-left: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.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-left: 10px;
}

.member-grid {
    display: flex;
    margin-bottom: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}

.as-accounts {
    margin: 0px;
    width: 100%;
    box-sizing: border-box !important;
}

.stats.m-icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.prof-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 5px 35px;
    align-items: flex-start;
    font-family: "Roboto", Helvetica, sans-serif;
}

.prof-stats span.line {
    display: none;
}

.stat-a {
    font-size: 0.7em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--quote-color);
}

.stat-a i {
    color: var(--hr-color) !important;
}

.stat-b {
    font-size: 0.7em;
    word-break: break-word;
}

@media (min-width: 992px) {
    .prof-stats {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .prof-stats span.line {
        display: block;
    }

    .stat-a {
        min-width: fit-content;
    }

    .stat-b {
        min-width: fit-content;
        white-space: nowrap !important;
        word-break: normal !important;
    }
    .stat-b span {
        white-space: nowrap !important;
        word-break: normal !important;
    }
}