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

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

}

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

}

.link-white {
	color: white;
}

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

a:hover,
a:focus {
	color: var(--red);
	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 {
	font-size: var(--step-2);
	font-style: normal;
	font-weight: 900;
	line-height: 110%; 
	text-transform: uppercase;
}

.h1_green {
	color: var(--green)
}

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

.h1_teal {
	color: var(--teal)
}

.h1_red {
	color: var(--red)
}


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

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

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

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