/* teko-regular - latin */
@font-face {
	font-display: auto; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Teko';
	font-style: normal;
	font-weight: 400;
	src: url('/site/assets/fonts/teko-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* teko-700 - latin */
  @font-face {
	font-display: auto; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Teko';
	font-style: normal;
	font-weight: 700;
	src: url('/site/assets/fonts/teko-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* finger-paint-regular - latin */
@font-face {
	font-display: auto; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Finger Paint';
	font-style: normal;
	font-weight: 400;
	src: url('/site/assets/fonts/finger-paint-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  
html, body{
    font-family: var(--font-sans);
    font-weight: 200;
    color: var(--dark);
	font-size: 16px;
}

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

.link-white{
    color:white;
}

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

a:hover,
a:focus{
	color:white;
    text-decoration: none;
}

blockquote {
    display: block;
	font-style: italic;
	padding: 0 0.5rem;
	margin: 1rem 3rem;
    border-left: 6px solid #ccc;
}


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

h1,h2,h3,h4,h5{
	margin: 0;
	text-wrap: balance;
	text-transform: uppercase;
	line-height: 1;
}

h1 {
	color: var(--buff, #FFF3E5);
	text-align: center;
	-webkit-text-stroke-width: 22px;
	-webkit-text-stroke-color: var(--dark, #273331);
	paint-order: stroke fill;
	font-size: var(--step-5);
	font-style: normal;
	font-weight: 700;
	line-height: 78%;
	text-transform: uppercase;
	letter-spacing: 0;
	max-width:20ch;
}

h2{
	font-size: var(--step-3);
}

hr {
	border: 0;
	height: 1px;
	background-color: var(--buff, #FFF3E5);
	margin: 0;
	margin-inline: auto;
	width: 100%;
}

.contented h2{
	padding:var(--gap) var(--gap) 0 var(--gap);
	border-top: 1px solid var(--buff, #FFF3E5);
}

p{
	margin:0;
	width:100%;
	max-width:var(--text-measure);
	line-height: 1.2;
}

strong, .strong{
	font-weight: var(--strong);
}

.text_centred p{
	margin-inline: auto;
}

.site-title{
    margin-top:0;
    padding-top: 1rem;
}

.has_lede > p:first-of-type{
    font-size: var(--step-40);
	text-wrap: balance;
}

@media (max-width: 768px) {
 
}

.text_centred{
    text-align: center;
}

.text-condensed{
    font-family: var(--font-condensed);
}

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

.text_measure {
	max-width: var(--text-measure)
}

.text_left{
    text-align: left;
}

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

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

.text-strong{
    font-weight:var(--strong);
} 

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

