.Grid-item--default {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: auto;
  min-height: 200px;
  padding: var(--spaces);
  font-size: 2.25rem;
  font-weight: 300;
}
.Grid-item--default p,
  .Grid-item--default [contenteditable] {
    z-index: 20;
    text-align: center;
  }
.Grid-item--default picture,
  .Grid-item--default video {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
  }
.Grid-item--default picture::after, .Grid-item--default video::after {
      content: '';
      position: absolute;
      z-index: 15;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
    }
.Grid-item--default img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    min-height: 100%;
  }
