/*
  typography reladed styling

  body text
  links
  headings
  text variants
*/




/* body text
============================================================================ */
body {
  font-family: var(--font-content);
  color: var(--color-text-normal);
}



/* links
============================================================================ */
a {
  color: var(--color-interactive);

  transition: all .1s linear;
}

a:hover {
  color: var(--color-interactive-hover);
}



/* headings
============================================================================ */

/* heading 1 */
.heading-1 {
  text-wrap: balance;
  line-height: 1em;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-prominent);
}

  @media (max-width: 920px) {
    .heading-1 {
      line-height: 1.067em;
      font-size: 1.875rem;
    }
  }


/* heading 2 */
.heading-2 {
  text-wrap: balance;
  line-height: 1.067em;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
}
.heading-3 {
  text-wrap: balance;
  line-height: 1.067em;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
}

  @media (max-width: 920px) {
    .heading-3
    .heading-2 {
      font-size: 1.5rem;
    }
  }


/* heading 4 */
.heading-4 {
  line-height: 1.45em;
  font-size: 1.25rem;
}


/* font weight variants */
.heading-1 small
.heading-2 small {
  font-weight: 300;
}

.heading-1 strong,
.heading-2 strong {
  font-weight: 900;
}



/* text variants
============================================================================ */
strong {
  font-weight: 700;
}

.font-thin {
  font-weight: 300;
}

.text-center {
  text-align: center;
}

