.chat-legal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: var(--msg-lane-width);
    max-width: none;
    margin: 8px var(--msg-lane-inset) 0;
    font-size: 12px;
    color: var(--c-text-faint);
}

.chat-legal-footer a {
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.chat-legal-footer a:hover {
    color: var(--c-accent);
    text-decoration: underline;
}

.chat-legal-footer__sep {
    opacity: 0.5;
    user-select: none;
}

@media (max-width: 768px) {
    .chat-legal-footer {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        font-size: 11px;
        margin-top: 6px;
    }
}