/* Linkosaurus -- injected internal link styles
 * Inherits all theme typography and color.
 * Only provides focus accessibility override.
 */
.linkosaurus-link {
    /* No color override -- inherit from theme */
    /* No font override -- inherit from theme */
    /* No margin/padding -- inline element, no layout change */
}

.linkosaurus-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    border-radius: 2px;
}
