.make-page-wrapper-font-variant(@font-variant) {
  p, blockquote, pre,
  abbr, address, cite, code,
  del, dfn, em, img, ins, kbd, q, samp,
  table, caption, tbody, tfoot, thead, tr, th, td,
  canvas, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section, summary,
  time, mark, audio, video {
    font-family: @font-variant[body-font-family] !important;
    color: @theme-secondary-base-color;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: @font-variant[header-font-family] !important;
    color: @theme-secondary-base-color;
  }

  h1 {
    font-size: @base-heading-1-font-size;
    line-height: @base-heading-1-line-height;
    margin-bottom: @base-heading-1-margin-bottom;
  }

  h2 {
    font-size: @base-heading-2-font-size;
    line-height: @base-heading-2-line-height;
    margin-bottom: @base-heading-2-margin-bottom;
  }

  h3 {
    font-size: @base-heading-3-font-size;
    line-height: @base-heading-3-line-height;
    margin-bottom: @base-heading-3-margin-bottom;
  }

  h4 {
    font-size: @base-heading-4-font-size;
    line-height: @base-heading-4-line-height;
    margin-bottom: @base-heading-4-margin-bottom;
  }

  h5 {
    font-size: @base-heading-5-font-size;
    line-height: @base-heading-5-line-height;
    margin-bottom: @base-heading-5-margin-bottom;
  }

  h6 {
    font-size: @base-heading-6-font-size;
    line-height: @base-heading-6-line-height;
    margin-bottom: @base-heading-6-margin-bottom;
  }

  p {
    margin-bottom: @base-paragraph-margin-bottom;
  }
}

.cr-ct-page-wrapper {
  &--font-variant-1 {
    .make-page-wrapper-font-variant(@theme-font-variants[@variant-1]);
  }

  &--font-variant-2 {
    .make-page-wrapper-font-variant(@theme-font-variants[@variant-2]);
  }

  &--font-variant-3 {
    .make-page-wrapper-font-variant(@theme-font-variants[@variant-3]);
  }

  a {
    color: @theme-secondary-base-color;
    text-decoration: none;
    font-weight: 600;
    &:hover {
      color: @theme-secondary-color-40;
      text-decoration: underline;
    }
  }

  .cr-ct-font-variant-1-heading {
    font-family: @theme-font-variants[@variant-1][header-font-family] !important;
  }

  .cr-ct-font-variant-1-body {
    font-family: @theme-font-variants[@variant-1][body-font-family] !important;
  }

  .cr-ct-font-variant-2-heading {
    font-family: @theme-font-variants[@variant-2][header-font-family] !important;
  }

  .cr-ct-font-variant-2-body {
    font-family: @theme-font-variants[@variant-2][body-font-family] !important;
  }

  .cr-ct-font-variant-3-heading {
    font-family: @theme-font-variants[@variant-3][header-font-family] !important;
  }

  .cr-ct-font-variant-3-body {
    font-family: @theme-font-variants[@variant-3][body-font-family] !important;
  }
}