.usertext, .blocks {
  & > * {
    max-width: 53rem;
    font-size: clamp(1rem, 3vw, 1.25rem);
  }
	& h1 {
		font-size: clamp(1.75rem, 5vw, 3rem);
		line-height: 1;
		margin-bottom: 0.5em;
		font-weight: 600;
	}
  & h2 {
    font-size: clamp(1.3333rem, 3vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 500;
  }
	& p {
		margin-bottom: 1em;
	}

  & blockquote {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    margin: 1rem 0;
    max-width: 53rem;
    border-left: 4px solid var(--orange);
    padding-left: 1em;
    & > em {
      text-wrap: balance;
      display: block;
    }
    & footer {
      white-space: nowrap;
      display: flex;
      align-items: center;
      font-style: normal;
      font-weight: 700;
      font-size: clamp(1.1rem, 2.3vw, 1.4rem);
      &::before {
        content: "—";
        margin-right: 0.2em;
      }

    }
  }

  & > ul > li {
    margin: 1em 0 1em 1.5em;
    position: relative;
    &::before {
      position: absolute;
      left: -1.5em;
      top: 0.3em;
      content: "";
      background: url('/assets/icons/arrow-up.svg') no-repeat center center;
      background-size: contain;
      width: 0.75em;
      height: 0.75em;
      transform: rotate(90deg);
    }
  }



}


