/* trispace-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Trispace';
    font-style: normal;
    font-weight: 500;
    src: url('/site/assets/fonts/trispace-v18-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('/site/assets/fonts/trispace-v18-latin-500.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* trispace-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Trispace';
    font-style: normal;
    font-weight: 700;
    src: url('/site/assets/fonts/trispace-v18-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('/site/assets/fonts/trispace-v18-latin-700.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }

  /* source-serif-4-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 400;
    src: url('/site/assets/fonts/source-serif-4-v7-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('/site/assets/fonts/source-serif-4-v7-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* source-serif-4-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 500;
    src: url('/site/assets/fonts/source-serif-4-v7-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('/site/assets/fonts/source-serif-4-v7-latin-500.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  
html, body{

    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.5;
    color: var(--pale);
    background-color: var(--dark);

}

a{
    text-decoration: underline;
    color:var(--primary1);
    transition: var(--transition);
}

a.link_reverse{
    color:var(--dark);
}

a:hover{
    color:var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

a.link_reverse:hover{
    color:var(--primary1);
    text-decoration: underline;
    text-decoration-color: var(--accent);
}

blockquote {
    display: block;
	font-style: italic;
	padding: 0 0.5rem;
	margin: 1rem 1rem;
    border-left: 6px solid var(--primary2);
}


caption,
.caption{
    display: block;
    font-size: 0.8rem;
    text-align: center;
    background-color: var(--dark);
    padding:0.4rem;
    color:white;
}

.text-condensed{
    font-family: 'Roboto Condensed', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.text-70{
    font-size:0.7rem !important;
}

.text-80{
    font-size:0.8rem !important;
}

.text-90{
    font-size:0.9rem !important;
}

.text-100{
    font-size:1rem;
}

.text-110{
    font-size:1.1rem;
}

.text-120{
    font-size:1.2rem;
}

.text-140{
    font-size:0.8rem;
}

.text-150{
    font-size:1.5rem;
}

.text-160{
    font-size:1.6rem;
}

.text-180{
    font-size:1.8rem;
}

.text-200{
    font-size:2rem;
}

.text-250{
    font-size:2.5rem;
}

.text-300{
    font-size:3rem;
}

.text-blue{
    color: var(--blue);
}

.text_centre,
.text-center{
    text-align: center;
}

.text-decoration-no{
    text-decoration: none;
}

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

.text_measure {
	max-width: 70ch;
}

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

.text-smaller{
    font-size:var(--smaller) !important;
} 

.text-strong,
strong{
    font-weight:var(--strong) !important
} 

.text-upper{
    text-transform: uppercase;
}

.text-white{
    color: white !important;
}

.max-copy-length{
    max-width: 560px;
}
