/* === Auth buttons in header === */
.user-auth.user-auth--modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.user-auth--modern .user-auth__link {
    color: #44b9d1;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 4px;
    transition: color 0.15s ease;
}

.user-auth--modern .user-auth__link:hover {
    color: #2fa3bb;
    text-decoration: none;
}

.user-auth--modern .user-auth__btn {
    display: inline-block;
    padding: 8px 18px;
    background: #44b9d1;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.user-auth--modern .user-auth__btn:hover {
    background: #2fa3bb;
    color: #ffffff;
    text-decoration: none;
}

/* === Social icons (sidebar) — shadcn ghost-button style ===
   Note: site2.css has `.sidebar .social-links a { width:29px; height:29px }`
   which would override us if we didn't match its specificity. Selectors
   below intentionally include `.sidebar` and `a` to win the cascade. */
.sidebar .social-links.social-links--modern {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 6px 0 17px 0;
    text-align: left;
}

.sidebar .social-links--modern a.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    background: transparent;
    color: #71717a; /* zinc-500 */
    border: 1px solid transparent;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

.sidebar .social-links--modern a.social-icon:hover {
    background: #f4f4f5; /* zinc-100 */
    color: #18181b; /* zinc-900 */
    text-decoration: none;
}

.sidebar .social-links--modern a.social-icon:focus-visible {
    border-color: #44b9d1;
    box-shadow: 0 0 0 2px rgba(68, 185, 209, 0.25);
}

.sidebar .social-links--modern a.social-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}
