/* ── Profile Card (shared component) ── */
.profile-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
    padding: 0;
    border-radius: 40px;
    transition: background 0.15s;
}
.profile-card:hover {
    background: var(--bg-subtle);
}
.profile-card__pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.profile-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}
.profile-card__name {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}
.profile-card__handle {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.profile-card__followers {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.profile-card__niche {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: capitalize;
}
.card-profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    margin-bottom: 8px;
    max-height: 80px;
    overflow: hidden;
}
.profile-card--sm {
    gap: 0.5rem;
    padding: 0;
}
.profile-card--sm .profile-card__pic {
    width: 36px;
    height: 36px;
}
.profile-card--sm .profile-card__handle {
    font-size: 0.85rem;
}
.profile-card--gl {
    gap: 0.4rem;
    padding: 0;
}
.profile-card--gl .profile-card__pic {
    width: 28px;
    height: 28px;
}
.profile-card--gl .profile-card__handle {
    font-size: 0.75rem;
}
