/**
 * @file
 * Hides nestable drop placeholders on public (non-editing) pages.
 *
 * Loaded on every page so placeholder markup never leaks when the editor
 * library is not attached. Edit-mode show rules live in drag-and-drop.css.
 */

.nestable-placeholder {
  display: none !important;
}

body:not(.editing-mode) [data-drop-container="true"]::after {
  content: none !important;
  display: none !important;
}
