 
  /* atkinson-hyperlegible-regular - latin */
  @font-face {
	font-family: 'Atkinson Hyperlegible';
	font-style: normal;
	font-weight: 400;
	src: local(''),
		 url('/site/assets/fonts/atkinson-hyperlegible/atkinson-hyperlegible-v1-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('/site/assets/fonts/atkinson-hyperlegible/atkinson-hyperlegible-v1-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* atkinson-hyperlegible-700 - latin */
  @font-face {
	font-family: 'Atkinson Hyperlegible';
	font-style: normal;
	font-weight: 700;
	src: local(''),
		 url('/site/assets/fonts/atkinson-hyperlegible/atkinson-hyperlegible-v1-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('/site/assets/fonts/atkinson-hyperlegible/atkinson-hyperlegible-v1-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  
  
  

html,
body {
	font-family: var(--font-sans);
	font-weight: 400;
	color: var(--dark);
}

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

a {
	text-decoration: underline;
	color: var(--accent);
	transition: var(--transition);
	text-decoration: underline;
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;

}


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

a:focus {
	color: var(--theme);
}

blockquote {
	font-size: var(--step-0);
	padding: 2rem;
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: calc(0.5 * var(--gap));
	background-color: var(--orange);
}

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

.break_word {
	overflow-wrap: break-word;
}

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

h1,h2,h3,h4,h5,h6{
	color: var(--theme);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: transparent;
	font-weight: 800;
}

h1 {
	font-size: var(--step-3);
	font-style: normal;

	line-height: 100%; /* 96px */
	padding-top: var(--gap);
}

.app_home h1 {
	font-size: var(--step-6);
}

.cta {
	display: flex;
	width: fit-content;
	padding: 4px 24px;
	margin-inline: auto;
	background-color: var(--theme);
	color: var(--white);
	border-radius: 1rem;
	box-shadow: var(--shadow);
	text-decoration: none;
	font-weight: var(--strong);
	margin-top: 2rem;
}

.cta:hover {
	background-color: var(--dark);
	color:white;
}

.has_lede > p:first-of-type {
	font-size: var(--step-1);
	font-style: normal;
	font-weight: var(--strong);
	line-height: 130%; /* 31.2px */
	max-width: 48ch;
}

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

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

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

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

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

.text_centre hr{
	width: 40%;
	max-width: 28ch;
	margin-inline: auto;
}

.text_centre p {
	margin-inline: auto;
}

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

.text_measure {
	max-width: 64ch;
}

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

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

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

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


.text_white {
	color: var(--white);
}

.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);
}