/* Wrapper generico widget utenti */
.lnv-users-widget {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    background: #ffffff;
    margin-bottom: 1.5rem;
}

/* Titolo widget */
.lnv-users-title {
    margin: 0 0 .75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

/* Lista utenti */
.lnv-users-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Singolo utente */
.lnv-users-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .45rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.lnv-users-item:last-child {
    border-bottom: none;
}

/* Avatar */
.lnv-users-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
}

/* Info utente */
.lnv-users-info {
    display: flex;
    flex-direction: column;
    font-size: .9rem;
}

/* Nome utente */
.lnv-users-name {
    margin-bottom: .1rem;
}

.lnv-users-name a {
    text-decoration: none;
    font-weight: 600;
    color: #111827;
}

.lnv-users-name a:hover {
    text-decoration: underline;
}

/* Meta (commenti, notizie, data registrazione) */
.lnv-users-meta {
    font-size: .8rem;
    color: #6b7280;
}

/* Variante "top users" */
.lnv-users-widget--top .lnv-users-title::before {
    content: "★";
    margin-right: .25rem;
    color: #f59e0b;
}

/* Variante "latest users" */
.lnv-users-widget--latest .lnv-users-title::before {
    content: "⧖";
    margin-right: .25rem;
    color: #3b82f6;
}

/* Responsive piccolo schermo */
@media (max-width: 640px) {
    .lnv-users-item {
        align-items: flex-start;
    }

    .lnv-users-avatar img {
        width: 36px;
        height: 36px;
    }
}
