/* Compact secondary entry beside feedback; the full target remains touch-friendly. */
.site-changelog-launcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--bg-color);
    color: var(--text-secondary);
    text-decoration: none;
    touch-action: manipulation;
}
.site-changelog-launcher:hover {
    color: var(--brand-primary-hover);
    border-color: var(--brand-primary);
}
.site-changelog-launcher:focus-visible {
    outline: 3px solid var(--brand-primary);
    outline-offset: 3px;
}
.site-changelog-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--brand-primary);
}
.site-changelog-dot[hidden] { display: none; }
