/* Can't use CSS vars in media declarations, but sass-like variables */
/* DO work, so this is the only place they are used (postcss-simple-vars) */
/* 20em */
/* 48em */
/* 64em */
/* 52em */
/* 58.25em */
/* 90em */
/* 106.25em */
/* 120em */
/* Uses postcss-custom-media and postcss-media-minmax */
/* singles */
/* ups */
/* downs */
.c-masthead {
  --max-width--text: 100%;
  padding-top: var(--spacer);
}
@media (min-width: 768px) {
.c-masthead {
    padding-top: var(--spacer3)
}
  }
.c-masthead h1 {
    text-align: center;
  }
.path-frontpage .c-masthead h1 {
      margin-top: 0;
      margin-bottom: 0.25em;
    }
.c-masthead a {
    --link: var(--headings);
    --link-hfa: var(--headings);
  }

