/* quattrocento-sans-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: 'Quattrocento Sans';
	font-style: normal;
	font-weight: 400;
	src: url('/site/assets/fonts/quattrocento-sans-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* quattrocento-sans-italic - 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: 'Quattrocento Sans';
	font-style: italic;
	font-weight: 400;
	src: url('/site/assets/fonts/quattrocento-sans-v21-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* quattrocento-sans-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: 'Quattrocento Sans';
	font-style: normal;
	font-weight: 700;
	src: url('/site/assets/fonts/quattrocento-sans-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* quattrocento-sans-700italic - 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: 'Quattrocento Sans';
	font-style: italic;
	font-weight: 700;
	src: url('/site/assets/fonts/quattrocento-sans-v21-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  
  /* quattrocento-sans-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: 'Quattrocento Sans ';
	font-style: normal;
	font-weight: 700;
	src: url('/site/assets/fonts/quattrocento-sans-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* quattrocento-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: 'Quattrocento';
	font-style: normal;
	font-weight: 400;
	src: url('/site/assets/fonts/quattrocento-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  
  

html, body{
    font-family: var(--font-sans);
    font-weight: 400;
	background-color: var(--dark);
    color: var(--off-white);
	scrollbar-color: var(--accent) var(--dark); /* Two valid colors.
	The first applies to the thumb of the scrollbar, the second to the track. */

}

#app{
	font-size: var(--step-0);
}

a{
    text-decoration: underline;
    color:var(--accent);
    transition: var(--transition);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.link-white{
    color:white;
}

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

a:hover,
a:focus{
	color: var(--accent);
    transition: var(--transition);
	text-decoration: none;
}

blockquote {
    font-size: var(--step-0);
    max-width:calc(72px + 60ch);
    margin:auto;
    padding:1rem 2rem;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: calc(0.5 * var(--gap));
}

blockquote:before {
    display: inline-block;
    content: '';
    width:72px;
    height:60px;
    background: url(/site/assets/images/quote_mark.svg) no-repeat;
}

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


h1{
	font-family: 'Quattrocento';
	font-size: 72px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 72px */
	margin-bottom: var(--gap);
}

h1 a{
	text-decoration: none;
	color: var(--primary-mustard, #E19E38);
}

.has_lede > p:first-of-type{
    font-size: var(--step-05);
    line-height: 1.4;
}

.has_paragraphs p{
    margin-bottom: 1.2rem;
}

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

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

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

.text_measure {
	max-width: 40ch;
}

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

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

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

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


.pink{
    color:var(--pink);
}

.violet{
    color:var(--violet);
}

.underlined{
    text-decoration: underline;
}

.step-05{
    font-size: var(--step-05);
}


.step-1{
    font-size: var(--step-1);
}

.step-2{
    font-size: var(--step-2);
}

