.header-profile-link {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 8px 5px 5px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 13px;
    background: rgba(255,255,255,.07);
    transition: .18s ease;
}

    .header-profile-link:hover {
        background: rgba(255,255,255,.14);
        border-color: rgba(255,255,255,.24);
    }

.header-profile-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .4px;
}

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

.header-profile-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

    .header-profile-copy strong {
        max-width: 160px;
        overflow: hidden;
        color: #fff;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-profile-copy small {
        margin-top: 3px;
        color: rgba(255,255,255,.62);
        font-size: 10px;
    }

@media(max-width:900px) {
    .header-profile-copy {
        display: none;
    }

    .header-profile-link {
        padding: 4px;
        border: 0;
        background: transparent;
    }
}

@media(max-width:600px) {
    .account-area {
        gap: 7px;
    }

        .account-area .btn-ghost {
            padding: 8px 9px;
        }
}
