/**
 * Theme overrides
 *
 * Targeted fixes for selectors in the compiled style.css that we cannot
 * adjust at source (no SCSS in repo). Keep rules minimal and document the
 * upstream rule each override addresses.
 */

/*
 * style.css line ~1143 hides every direct child of .wp-block-embed__wrapper
 * that is not <iframe> and not .BorlabsCookie. The whitelist matches nothing
 * Borlabs actually renders, so the content blocker placeholder (the "Load
 * video" dialog) ends up at top:-1000em and is invisible.
 *
 * Borlabs v3.x markup: <div class="brlbs-cmpnt-container brlbs-cmpnt-content-blocker …">
 * Borlabs v2.x markup: <div class="_brlbs-content-blocker">
 *
 * Restore normal flow for both, so the consent placeholder stays usable.
 */
.wp-block-embed .wp-block-embed__wrapper > .brlbs-cmpnt-content-blocker,
.wp-block-embed .wp-block-embed__wrapper > ._brlbs-content-blocker {
	display: block !important;
	position: static !important;
	top: auto !important;
	z-index: auto !important;
}
