/* Prévisualisation (hover) des liens internes vers d'autres articles */
.recode-preview {
    position: fixed;
    z-index: 5000;
    width: min(40rem, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
    max-height: min(24rem, calc(100vh - 24px));
    display: flex;
    align-items: stretch;
    background: var(--background-contrast-grey);
    box-shadow: var(--lifted-shadow);
    border: 1px solid var(--border-default-grey);
    border-radius: .5rem;
    overflow: hidden;
    transform: none !important;
    box-sizing: border-box;
}
.recode-preview .recode-preview__accent {
    flex: 0 0 6px;
    background: var(--border-action-high-blue-france);
}
.recode-preview .recode-preview__content {
    padding: 1rem 1.75rem;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}
.recode-preview p {
    text-align: justify;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
    max-width: 100%;
    min-width: 0;
}
.recode-preview #recodePreviewMeta,
.recode-preview #recodePreviewExcerpt {
    display: block;
    overflow: visible;
    min-width: 0;
}
