/* Small, homepage-only decoration for the original Academic Pages template.
   Loaded conditionally in head/custom.html; additions stay within the page content. */
html,
body,
.masthead {
  background-color: #fcfbf8;
}

/* Decorative artwork stays out of the document's reading order. */
.page__content::before {
  content: "";
  display: block;
  height: 76px;
  margin: 8px 0 24px;
  border-radius: 3px;
  background: #eeefea url("../../images/research-wash.svg") center / cover no-repeat;
  pointer-events: none;
}

.research-comic {
  display: block;
  width: 100%;
  max-width: 840px;
  margin: 1.5em auto;
}

.research-comic img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.research-comic figcaption {
  margin: 10px 0 0;
  text-align: center;
}

.research-comic__credit {
  font-size: .85em;
}

@media (max-width: 600px) {
  .page__content::before {
    height: 52px;
    margin-bottom: 20px;
  }
}

@media print {
  html,
  body {
    background: #fff;
  }

  .page__content::before {
    display: none;
  }
}
