/* 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;
}

.layout--threecol-33-67,
.layout--threecol-67-33 {
  display: flex;
  flex-wrap: wrap;
}

.layout--threecol-33-67 > .layout__region,
.layout--threecol-67-33 > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout--threecol-33-67 > .layout__region--first {
    flex: 0 1 33%;
  }
  .layout--threecol-33-67 > .layout__region--second {
    flex: 0 1 67%;
  }
  .layout--threecol-67-33 > .layout__region--first {
    flex: 0 1 67%;
  }
  .layout--threecol-67-33 > .layout__region--second {
    flex: 0 1 33%;
  }
}