.c-notification {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
@media (min-width: 48.0625em) {
  .c-notification {
    aspect-ratio: 16/9;
  }
}
.c-notification__inner {
  --minmax: max(
    calc(var(--content-min-margin, 24) * 1px),
    calc(
      var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw
    )
  );
  max-width: var(--content-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-notification__inner > *:not(:last-child) {
  margin-bottom: var(--stack-space, 0.5em);
}
.c-notification__category {
  font-size: clamp(0.75em, 0.9722222222vw, 0.875em);
}
.c-notification__heading {
  font-size: clamp(2em, 3.3333333333vw, 3em);
  font-weight: normal;
}
.c-notification__text {
  font-size: clamp(0.875em, 1.25vw, 1.125em);
}
.c-notification__text a {
  text-decoration: underline;
}
.c-notification__text a:hover {
  text-decoration: none;
}
.c-notification__text > * + * {
  margin-top: var(--stack-space, 1.5em);
} /*# sourceMappingURL=error.css.map */
