/* playfair-display-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: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('/site/assets/fonts/playfair-display-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* playfair-display-600 - 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: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    src: url('/site/assets/fonts/playfair-display-v36-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* open-sans-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: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/site/assets/fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* open-sans-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: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    src: url('/site/assets/fonts/open-sans-v40-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* open-sans-600 - 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: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: url('/site/assets/fonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

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


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

a{
    text-decoration: underline;
    color: var(--accent, #BD2125);
    transition: var(--transition);
}

.link-white{
    color:white;
}

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

a:hover,
a:focus{
    color: var(--dark);
    transition: var(--transition);
}

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

    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
}

blockquote strong{
    font-family: var(--font-sans);
    font-style: normal;
    font-size: var(--step--1);
}

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

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, .title{
    font-family: var(--heading-font);
    font-weight: 600;
}

h1{
    font-size: var(--step-05);
    font-style: normal;
    line-height: 120%; /* 2.4rem */
    font-variant: small-caps;
    letter-spacing: 2.56px;
}

.was_hero h1{
    color: var(--white, #FFF);
    font-size: var(--step-1);
}

#was_main h1{
    margin-bottom: 1.1em;
    letter-spacing: 0;
}

#was_main h2{
    margin-bottom: 1em;
}

#was_main p{
    margin-bottom: var(--gap-small);
}

#was_main figure p:last-of-type{
	margin-bottom: 0;
}

.text-measure p{
    max-width: 72ch;
}

h1.page_title{
    color: var(--dark, #181818);
    font-size: 36px;
    font-variant: normal;
    margin-bottom: var(--gap-small);
}

.title{
    font-size: var(--step-1);
    font-variant: normal;
    margin-bottom: var(--gap-small);
}

.panel_title{
    color: var(--dark, #181818);
    text-align: center;
    font-family: var(--font-sans);
    font-size: var(--step-0);
    font-style: normal;
    font-weight: var(--heavy);
    line-height: 120%;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    margin-bottom: var(--gap);
}

.has_lede > p:first-of-type{
    font-size: 18px;
    line-height: 160%; /* 28.8px */
}

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

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

.text-70{
    font-size:0.7rem !important;
}

.text-80{
    font-size:0.8rem !important;
}

.text-90{
    font-size:0.9rem !important;
}

.text-100{
    font-size:1rem;
}

.text-110{
    font-size:1.1rem;
}

.text-120{
    font-size:1.2rem;
}

.text-140{
    font-size:0.8rem;
}

.text-150{
    font-size:1.5rem;
}

.text-160{
    font-size:1.6rem;
}

.text-180{
    font-size:1.8rem;
}

.text-200{
    font-size:2rem;
}

.text-250{
    font-size:2.5rem;
}

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

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

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

.text_balanced{
text-wrap: balance;
}

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

.text_measure {
	max-width: 64ch;
}

.text_measure p{
    margin-bottom: 1em;
}

.text-right,
p.align_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);
}

