header {
  display: none;
}

/* Green strip beneath the embed. #iframe-container spans the full viewport,
   so the green is simply its background showing through wherever the iframe
   stops short. The iframe is absolutely positioned, which means padding on
   the container would not shrink it — hence the calc() rather than padding. */
#iframe-container {
  margin-bottom: 0;
  background: #78b800;
}

/* weekend.scss sends iframes to z-index: -1, which puts them behind the
   stacking context's background and swallows every click. Any weekend with
   an interactive embed has to undo it. */
iframe {
  z-index: 1;
  height: calc(100% - 60px);
}
