/* WYSIWYG editor */
iframe.cke_wysiwyg_frame {
  padding: 5px;
}

/* Checkerboard Piece custom layout */
.checkerboard-piece {
  display: flex;
  flex-wrap: wrap;
}
.checkerboard-piece .layout-paragraphs-layout-region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .checkerboard-piece .layout-paragraphs-layout-region {
    flex: 0 1 50%;
    max-width: 50%;
  }
}

/* Content width override */
.layout-region--node-main .layout-region__content,
.layout-region--node-footer .layout-region__content {
  max-width: none !important;
}

/* Fix an issue where Linkit would appear behind the WYSIWYG form */
.ck-balloon-panel_visible {
  z-index: 9999 !important;
}

/* Fix overflow issue while editing 'Sport Carousel Hero' Paragraph content */
[data-drupal-selector="edit-field-sport-carousel-hero"] {
  overflow-x: scroll;
}