/**
 * @file
 * Replacement for drupal/bootstrap's css/components/page.css.
 *
 * That file gained a `section.full-width` rule in bootstrap 5.0.2 which did not
 * exist in the 3.21 release this site ran before the Drupal 10 upgrade:
 *
 *   section.full-width {
 *     width: 100vw;
 *     position: relative;
 *     left: 50%;
 *     right: 50%;
 *     margin-left: -50vw;
 *     margin-right: -50vw;
 *   }
 *
 * Droopler renders its paragraphs as <section class="wrapper-d_p_* ... full-width">
 * when an editor sets the paragraph to full width, so every one of those now
 * matched and got pulled out to viewport width, breaking the layout.
 *
 * The rest of the upstream file is a single useful hack, kept below, so this
 * swaps the file rather than dropping it. Swapped in via
 * dxpr_theme_library_info_alter().
 *
 * @see https://www.drupal.org/project/drupal/issues/3233533
 */

/* Hack for .placeholder issue https://www.drupal.org/project/drupal/issues/3233533 */
em.placeholder {
  vertical-align: unset !important;
  cursor: unset !important;
  background-color: unset !important;
  opacity: unset !important;
}
