/**
 * inline-preview-contract.css
 *
 * Nested persistent inline preview surfaces (.post-inline inside .inline-wrap).
 * Themes override --theme-inline-preview-overlay in :root (declared in style.css).
 * Alpha compositing stacks by depth via semi-transparent overlays.
 *
 * Loaded after theme CSS (see generic_page.html).
 * .post-hover and .highlighted are excluded — they keep existing semantics.
 */
.post-inline:not(.highlighted):not(.post-hover) {
	background-color: var(--theme-inline-preview-overlay, transparent) !important;
}
