.user-thumb {
    width: 40px;
    height: 40px;
    border-radius: var(--ins-radius-s);
    object-fit: cover;
    background: var(--bg-tertiary);
    flex-shrink: 0;
    cursor: pointer;
}

.user-name {
    line-height: 40px;
    cursor: pointer;
}

.-user-menu {
    position: absolute;
    top: 42px;
    width: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
}

picture:hover~.-user-menu,
.user-name:hover~.-user-menu,
.-user-menu:hover {
    opacity: 1;
    max-height: 400px;
}

.nav-auth {
    position: relative;
}

.-logout-btn {
    background: var(--danger);
    color: white;
}

.btn-login {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--weight-semibold);
    padding: 0.6rem 1.5rem;
    transition: color var(--transition-base) ease;
}

.btn-login:hover {
    color: var(--primary);
}

.btn-signup {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--weight-semibold);
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--ins-radius-m);
    transition: all var(--transition-base) ease;
}

.btn-signup:hover {
    background: var(--primary);
    color: white;
}