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

  /* allerta-stencil-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: 'Allerta Stencil';
	font-style: normal;
	font-weight: 400;
	src: url('/site/assets/fonts/allerta-stencil-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  
html,
body {
	font-family: var(--font-mono);
	font-weight: 500;
	color: var(--dark);
	font-size:16px;
}

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;

}

.link-white {
	color: white;
}

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

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

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{
	font-family: var(--heading-font);
	color: var(--pale);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: transparent;
}

h1 {
	font-size: var(--step-3);
	font-style: normal;
	padding: 1rem 20px 27px 20px;
	line-height: 100%; /* 96px */
	background:url('/site/assets/images/photocopy_dark_background_640.jpg') repeat 0 0 var(--dark);
	background-size: 640px 360px;
	background-position: center;
}

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

h2{
	color: var(--white, #FFF);
	font-size: 40px;
	padding:16px 24px;
	background:url('/site/assets/images/photocopy_dark_background_640.jpg') repeat 0 0 var(--dark);
	background-size: 640px 360px;
	background-position: center;
}

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

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

.footer{
	padding-top: var(--gap);
	color: var(--photocopy-toner, #232323);
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 140%; /* 19.6px */
	text-wrap: balance;
}