.text {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  padding-left: var(--space-medium);
  padding-right: var(--space-medium);
  position: relative;
  text-align: center;
  width: min(100%, 30em);
}

.text__card {
  padding: var(--space-large);
}

.text__card .badge {
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
}

.text article {
  font-size: var(--font-size-x-small);
  letter-spacing: -0.0125em;
  margin-bottom: -0.365em;
  margin-top: -0.2925em;
}

.text article > * + * {
  margin-top: var(--spacing, 1.4em);
}

.text article h1,
.text article h2,
.text article h3,
.text article h4,
.text article h5,
.text article h6 {
  font-family: 'Really Sans Large';
  font-feature-settings: 'case', 'liga';
  letter-spacing: normal;
  line-height: 1.1;
}

.text article h1 a,
.text article h2 a,
.text article h3 a,
.text article h4 a,
.text article h5 a,
.text article h6 a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.text article h1 + *,
.text article h2 + *,
.text article h3 + *,
.text article h4 + *,
.text article h5 + *,
.text article h6 + * {
  --spacing: 0.325em;
}

.text article h1,
.text article h2 {
  font-size: var(--font-size-xx-large);
  font-weight: 900;
}

.text article h1 + *,
.text article h2 + * {
  --spacing: 1.3em;
}

.text article h3 {
  font-size: var(--font-size-x-large);
  font-weight: 850;
  padding-top: 0.075em;
}

.text article h3 + * {
  --spacing: 0.55em;
}

.text article h4 {
  font-size: var(--font-size-large);
  font-weight: 850;
  padding-top: 0.125em;
}

.text article h5,
.text article h6 {
  font-size: var(--font-size-medium);
  font-weight: 850;
  padding-top: 0.15em;
}

.text article ul,
.text article ol {
  padding-left: 1.1em;
}

.text article ul li ul,
.text article ul li ol {
  margin-top: 0.2em;
}

.text article ul li + li {
  margin-top: 0.2em;
}

.text article ul {
  list-style: disc;
}

.text article ol {
  list-style: decimal;
}

.text article figure {
  display: flex;
  flex-direction: column;
}

.text article figure picture,
.text article figure video {
  border-radius: 0.6em;
  box-shadow: 0 0 0 2px rgba(var(--rgb-black), 0.08);
  overflow: hidden;
  position: relative;
}

.text article figure + * {
  --spacing: 2.4em;
}

.text--align-left {
  text-align: left;
}

.text--framed {
  width: min(100%, 36em);
}

.text--h-blurbalt article h1,
.text--h-blurbalt article h2 {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-blurple) 0,
    var(--color-cobalt) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text--h-sunset article h1,
.text--h-sunset article h2 {
  display: inline;
  background: linear-gradient(
    135deg,
    var(--color-blurple) 0,
    var(--color-salmon) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media(min-width: 64em) {

  .text {
    padding-left: var(--space-x-large);
    padding-right: var(--space-x-large);
  }

  .text article ul,
  .text article ol {
    padding-left: 0;
  }

}
