/* Grid Configuration */
/* Not sure why variables can't be used for media queries */
body.debug {
  position: relative;
}
body.debug::before {
  content: " s ";
  position: absolute;
  z-index: 2000;
  top: 4px;
  left: 4px;
  padding: 4px;
  background: #fff;
  color: #000;
  font-size: 10px;
}
@media screen and (min-width: 35.5em) {
  body.debug::before {
    content: " m ";
  }
}
@media screen and (min-width: 48.0625em) {
  body.debug::before {
    content: " l ";
  }
}
