/* Inter, self-hosted. Both subsets are declared but a browser only fetches
   the ranges a page actually uses, so an English page pulls the 47 KB latin
   file and never touches latin-ext. */
@font-face {
	font-family: 'InterPT';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('fonts/inter-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
		U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'InterPT';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('fonts/inter-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
		U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
		U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
	--pt-font: 'InterPT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Helvetica, Arial, sans-serif;

	/* Every design token lives here. They were previously declared on a
	   .pt-breed wrapper that was never added to any markup, so every rule
	   referencing them silently collapsed to its initial value. */
	--pt-ink-900: #172234;
	--pt-ink-600: #4B5768;
	--pt-ink-300: #B8C2D0;

	--pt-brand-900: #14213D;
	--pt-brand-700: #1E3A6E;
	--pt-brand-600: #2D4F8C;
	--pt-brand-500: #3E68B0;
	--pt-brand-100: #E8EEF9;
	--pt-brand-50:  #F5F8FD;

	--pt-line: #E2E7EF;

	--pt-c1: #2D4F8C;  --pt-c1-bg: #E4ECFA;
	--pt-c2: #C9642F;  --pt-c2-bg: #FCEADC;
	--pt-c3: #1F8F62;  --pt-c3-bg: #DDF3E9;
	--pt-c4: #6D53A0;  --pt-c4-bg: #EDE7F8;
}

html body,
body button,
body input,
body select,
body textarea,
body .wp-block-button__link {
	font-family: var(--pt-font);
}

/* Headings scale with the viewport so a 46px h1 does not overwhelm a phone. */
html body h1,
html body .entry-title {
	font-family: var(--pt-font);
	font-size: clamp(32px, 4.6vw, 46px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

html body h2 {
	font-family: var(--pt-font);
	font-size: clamp(25px, 3.2vw, 34px);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.3px;
}

html body h3 {
	font-family: var(--pt-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
}

html body {
	font-size: 17px;
	line-height: 1.68;
}

/* The opening paragraph carries the pitch, so it sits a step above body copy.
   Restricted to unclassed paragraphs: utility lines injected ahead of the
   content would otherwise inherit the lede size simply for being first. */
.entry-content > p:first-of-type:not([class]) {
	font-size: 19px;
	line-height: 1.6;
	color: #3A4658;
}
