@font-face {
	font-family: "Borna Regular";
	src: url("assets/fonts/Borna/borna-regular-webfont.eot");
	src: url("assets/fonts/Borna/borna-regular-webfont.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Borna/borna-regular-webfont.woff") format("woff"), url("assets/fonts/Borna/borna-regular-webfont.ttf") format("truetype"), url("assets/fonts/Borna/borna-regular-webfont.svg#webfont") format("svg");
	font-display: swap;
	font-weight: normal;
}

@font-face {
	font-family: "Borna Medium";
	src: url("assets/fonts/Borna/borna-medium-webfont.eot");
	src: url("assets/fonts/Borna/borna-medium-webfont.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Borna/borna-medium-webfont.woff") format("woff"), url("assets/fonts/Borna/borna-medium-webfont.ttf") format("truetype"), url("assets/fonts/Borna/borna-medium-webfont.svg#webfont") format("svg");
	font-display: swap;
	font-weight: normal;
}

/* Variables */
:root {

	/* Font Family */
	--global--font-primary: "Borna Regular", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
	--global--font-secondary: "Borna Regular", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;

	/* Font Size */
	--global--font-size-base: 1rem;
	--global--font-size-xxs: 0.75rem;
	--global--font-size-xs: 1rem;
	--global--font-size-sm: 1.125rem;
	--global--font-size-md: 1.25rem;
	--global--font-size-lg: 1.5rem;
	--global--font-size-xl: 2.25rem;
	--global--font-size-xxl: 4rem;
	--global--font-size-xxxl: 5rem;
	--global--font-size-page-title: var(--global--font-size-xxl);
	--global--letter-spacing: normal;

	/* Line Height */
	--global--line-height-body: 1.7;
	--global--line-height-heading: 1.3;
	--global--line-height-page-title: 1.1;

	/* Headings */
	--heading--font-family: var(--global--font-primary);
	--heading--font-size-h6: var(--global--font-size-xs);
	--heading--font-size-h5: var(--global--font-size-sm);
	--heading--font-size-h4: var(--global--font-size-lg);
	--heading--font-size-h3: calc(1.25 * var(--global--font-size-lg));
	--heading--font-size-h2: var(--global--font-size-xl);
	--heading--font-size-h1: var(--global--font-size-page-title);
	--heading--letter-spacing-h6: 0.05em;
	--heading--letter-spacing-h5: 0.05em;
	--heading--letter-spacing-h4: var(--global--letter-spacing);
	--heading--letter-spacing-h3: var(--global--letter-spacing);
	--heading--letter-spacing-h2: var(--global--letter-spacing);
	--heading--letter-spacing-h1: var(--global--letter-spacing);
	--heading--line-height-h6: var(--global--line-height-heading);
	--heading--line-height-h5: var(--global--line-height-heading);
	--heading--line-height-h4: var(--global--line-height-heading);
	--heading--line-height-h3: var(--global--line-height-heading);
	--heading--line-height-h2: var(--global--line-height-heading);
	--heading--line-height-h1: var(--global--line-height-page-title);
	--heading--font-weight: normal;
	--heading--font-weight-page-title: normal;
	--heading--font-weight-strong: normal;

	/* Block: Latest posts */
	--latest-posts--title-font-family: var(--heading--font-family);
	--latest-posts--title-font-size: var(--heading--font-size-h3);
	--latest-posts--description-font-family: var(--global--font-secondary);
	--latest-posts--description-font-size: var(--global--font-size-sm);
	--list--font-family: var(--global--font-secondary);
	--definition-term--font-family: var(--global--font-primary);

	/* Colors */
	--global--color-black: #000;
	--global--color-dark-gray: #28303d;
	--global--color-gray: #b2b2b2;
	--global--color-light-gray: #f0f0f0;
	--global--color-green: #d1e4dd;
	--global--color-blue: #0028ff;
	--global--color-purple: #d1d1e4;
	--global--color-red: #ff4000;
	--global--color-orange: #e4dad1;
	--global--color-yellow: #eeeadd;
	--global--color-white: #fff;
	--global--color-white-50: rgba(255, 255, 255, 0.5);
	--global--color-white-90: rgba(255, 255, 255, 0.9);
	--global--color-primary: var(--global--color-black); /* Body text color, site title, footer text color. */
	--global--color-secondary: var(--global--color-gray); /* Headings */
	--global--color-primary-hover: var(--global--color-primary);
	--global--color-background: var(--global--color-white); /* Mint, default body background */
	--global--color-border: var(--global--color-primary); /* Used for borders (separators) */

	/* Spacing */
	--global--spacing-unit: 20px;
	--global--spacing-measure: unset;
	--global--spacing-horizontal: 25px;
	--global--spacing-vertical: 30px;

	/* Elevation */
	--global--elevation: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);

	/* Forms */
	--form--font-family: var(--global--font-secondary);
	--form--font-size: var(--global--font-size-sm);
	--form--line-height: var(--global--line-height-body);
	--form--color-text: var(--global--color-dark-gray);
	--form--color-ranged: var(--global--color-secondary);
	--form--label-weight: 500;
	--form--border-color: var(--global--color-secondary);
	--form--border-width: 3px;
	--form--border-radius: 0;
	--form--spacing-unit: calc(0.5 * var(--global--spacing-unit));

	/* Cover block */
	--cover--height: calc(15 * var(--global--spacing-vertical));
	--cover--color-foreground: var(--global--color-white);
	--cover--color-background: var(--global--color-black);

	/* Buttons */
	--button--color-text: var(--global--color-background);
	--button--color-text-hover: var(--global--color-secondary);
	--button--color-text-active: var(--global--color-secondary);
	--button--color-background: var(--global--color-secondary);
	--button--color-background-active: var(--global--color-background);
	--button--font-family: var(--global--font-primary);
	--button--font-size: var(--global--font-size-base);
	--button--font-weight: 500;
	--button--line-height: 1.5;
	--button--border-width: 3px;
	--button--border-radius: 0;
	--button--padding-vertical: 15px;
	--button--padding-horizontal: calc(2 * var(--button--padding-vertical));

	/* entry */
	--entry-header--color: var(--global--color-primary);
	--entry-header--color-link: currentcolor;
	--entry-header--color-hover: var(--global--color-primary-hover);
	--entry-header--color-focus: var(--global--color-secondary);
	--entry-header--font-size: var(--heading--font-size-h2);
	--entry-content--font-family: var(--global--font-secondary);
	--entry-author-bio--font-family: var(--heading--font-family);
	--entry-author-bio--font-size: var(--heading--font-size-h4);

	/* Header */
	--branding--color-text: var(--global--color-primary);
	--branding--color-link: var(--global--color-primary);
	--branding--color-link-hover: var(--global--color-secondary);
	--branding--title--font-family: var(--global--font-primary);
	--branding--title--font-size: var(--global--font-size-lg);
	--branding--title--font-size-mobile: var(--heading--font-size-h4);
	--branding--title--font-weight: normal;
	--branding--title--text-transform: uppercase;
	--branding--description--font-family: var(--global--font-secondary);
	--branding--description--font-size: var(--global--font-size-sm);
	--branding--logo--max-width: 300px;
	--branding--logo--max-height: 100px;
	--branding--logo--max-width-mobile: 96px;
	--branding--logo--max-height-mobile: 96px;

	/* Main navigation */
	--primary-nav--font-family: var(--global--font-secondary);
	--primary-nav--font-family-mobile: var(--global--font-primary);
	--primary-nav--font-size: var(--global--font-size-md);
	--primary-nav--font-size-sub-menu: var(--global--font-size-xs);
	--primary-nav--font-size-mobile: var(--global--font-size-sm);
	--primary-nav--font-size-sub-menu-mobile: var(--global--font-size-sm);
	--primary-nav--font-size-button: var(--global--font-size-xs);
	--primary-nav--font-style: normal;
	--primary-nav--font-style-sub-menu-mobile: normal;
	--primary-nav--font-weight: normal;
	--primary-nav--font-weight-button: 500;
	--primary-nav--color-link: var(--global--color-primary);
	--primary-nav--color-link-hover: var(--global--color-primary-hover);
	--primary-nav--color-text: var(--global--color-primary);
	--primary-nav--padding: calc(0.66 * var(--global--spacing-unit));
	--primary-nav--border-color: var(--global--color-primary);

	/* Pagination */
	--pagination--color-text: var(--global--color-primary);
	--pagination--color-link-hover: var(--global--color-primary-hover);
	--pagination--font-family: var(--global--font-secondary);
	--pagination--font-size: var(--global--font-size-lg);
	--pagination--font-weight: normal;
	--pagination--font-weight-strong: normal;

	/* Footer */
	--footer--color-text: var(--global--color-primary);
	--footer--color-link: var(--global--color-primary);
	--footer--color-link-hover: var(--global--color-primary-hover);
	--footer--font-family: var(--global--font-primary);
	--footer--font-size: var(--global--font-size-sm);

	/* Block: Pull quote */
	--pullquote--font-family: var(--global--font-primary);
	--pullquote--font-size: var(--heading--font-size-h3);
	--pullquote--font-style: normal;
	--pullquote--letter-spacing: var(--heading--letter-spacing-h4);
	--pullquote--line-height: var(--global--line-height-heading);
	--pullquote--border-width: 3px;
	--pullquote--border-color: var(--global--color-primary);
	--pullquote--color-foreground: var(--global--color-primary);
	--pullquote--color-background: var(--global--color-background);
	--quote--font-family: var(--global--font-secondary);
	--quote--font-size: var(--global--font-size-md);
	--quote--font-size-large: var(--global--font-size-xl);
	--quote--font-style: normal;
	--quote--font-weight: 700;
	--quote--font-weight-strong: normal;
	--quote--font-style-large: normal;
	--quote--font-style-cite: normal;
	--quote--line-height: var(--global--line-height-body);
	--quote--line-height-large: 1.35;
	--separator--border-color: var(--global--color-border);
	--separator--height: 1px;

	/* Block: Table */
	--table--stripes-border-color: var(--global--color-light-gray);
	--table--stripes-background-color: var(--global--color-light-gray);
	--table--has-background-text-color: var(--global--color-dark-gray);

	/* Widgets */
	--widget--line-height-list: 1.9;
	--widget--line-height-title: 1.4;
	--widget--font-weight-title: 700;
	--widget--spacing-menu: calc(0.66 * var(--global--spacing-unit));

	/* Admin-bar height */
	--global--admin-bar--height: 0px;
}

.admin-bar {
	--global--admin-bar--height: 32px;
}
@media only screen and (max-width: 782px) {

	.admin-bar {
		--global--admin-bar--height: 46px;
	}
}

@media only screen and (min-width: 652px) {

	:root {
		--global--font-size-xl: 2.5rem;
		--global--font-size-xxl: 6rem;
		--global--font-size-xxxl: 9rem;
		--heading--font-size-h3: 2rem;
		--heading--font-size-h2: 3rem;
	}
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration-style: dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-family: "Borna Medium";
	font-weight: normal;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/**
 * Responsive Styles
 */

/**
 * Required Variables
 */

/**
 * Root Media Query Variables
 */
:root {
	--responsive--spacing-horizontal: calc(2 * var(--global--spacing-horizontal) * 0.6);
	--responsive--aligndefault-width: calc(100vw - var(--responsive--spacing-horizontal));
	--responsive--alignwide-width: calc(100vw - var(--responsive--spacing-horizontal));
	--responsive--alignfull-width: 100%;
	--responsive--alignright-margin: var(--global--spacing-horizontal);
	--responsive--alignleft-margin: var(--global--spacing-horizontal);
}

@media only screen and (min-width: 482px) {

	:root {
		--responsive--aligndefault-width: min(calc(100vw - 4 * var(--global--spacing-horizontal)), 610px);
		--responsive--alignwide-width: calc(100vw - 4 * var(--global--spacing-horizontal));
		--responsive--alignright-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
		--responsive--alignleft-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
	}
}
@media only screen and (min-width: 822px) {

	:root {
		--responsive--aligndefault-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 610px);
		--responsive--alignwide-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 1240px);
	}
}

/**
 * Extends
 */
.default-max-width {
	max-width: var(--responsive--aligndefault-width);
	margin-left: auto;
	margin-right: auto;
}

.wide-max-width {
	max-width: var(--responsive--alignwide-width);
	margin-left: auto;
	margin-right: auto;
}

.full-max-width {
	max-width: var(--responsive--alignfull-width);
	width: var(--responsive--alignfull-width);
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 482px) {

	.full-max-width {
		max-width: var(--responsive--alignfull-width);
		width: auto;
		margin-left: auto;
		margin-right: auto;
	}
}

/**
 * Site Structure
 *
 * - Set vertical margins and responsive widths on
 *   top-level wrappers and content wrappers
 * - `--global--width-content` is a responsive variable
 * - See: globals/_global-width-responsive.scss
 */

/**
 * Top Level Wrappers (header, main, footer)
 * - Set vertical padding and horizontal margins
 */
.site-header,
.site-main,
.widget-area,
.site-footer {
	padding-top: var(--global--spacing-vertical);
	padding-bottom: var(--global--spacing-vertical);
	margin-left: auto;
	margin-right: auto;
}

.site-header {
	padding-top: calc(0.75 * var(--global--spacing-vertical));
	padding-bottom: calc(2 * var(--global--spacing-vertical));
}
@media only screen and (min-width: 482px) {

	.site-header {
		padding-bottom: calc(3 * var(--global--spacing-vertical));
	}
}

/**
 * Site-main children wrappers
 * - Add double vertical margins here for clearer hierarchy
 */
.site-main > * {
	margin-top: calc(3 * var(--global--spacing-vertical));
	margin-bottom: calc(3 * var(--global--spacing-vertical));
}

.site-main > *:first-child {
	margin-top: 0;
}

.site-main > *:last-child {
	margin-bottom: 0;
}

/**
 * Set the default maximum responsive content-width
 */

/**
 * Set the wide maximum responsive content-width
 */

/**
 * Set the full maximum responsive content-width
 */

/*
 * Block & non-gutenberg content wrappers
 * - Set margins
 */
.entry-header,
.post-thumbnail,
.entry-content,
.entry-footer,
.author-bio {
	margin-top: var(--global--spacing-vertical);
	margin-right: auto;
	margin-bottom: var(--global--spacing-vertical);
	margin-left: auto;
}

/*
 * Block & non-gutenberg content wrapper children
 * - Sets spacing-vertical margin logic
 */
.site-main > article > *,
.site-main > .not-found > *,
.entry-content > *,
[class*=inner-container] > *,
.wp-block-template-part > *,
.wp-block-post-template :where(li > *) {
	margin-top: calc(0.666 * var(--global--spacing-vertical));
	margin-bottom: calc(0.666 * var(--global--spacing-vertical));
}
@media only screen and (min-width: 482px) {

	.site-main > article > *,
	.site-main > .not-found > *,
	.entry-content > *,
	[class*=inner-container] > *,
	.wp-block-template-part > *,
	.wp-block-post-template :where(li > *) {
		margin-top: var(--global--spacing-vertical);
		margin-bottom: var(--global--spacing-vertical);
	}
}

.site-main > article > *:first-child,
.site-main > .not-found > *:first-child,
.entry-content > *:first-child,
[class*=inner-container] > *:first-child,
.wp-block-template-part > *:first-child,
.wp-block-post-template :where(li > *):first-child {
	margin-top: 0;
}

.site-main > article > *:last-child,
.site-main > .not-found > *:last-child,
.entry-content > *:last-child,
[class*=inner-container] > *:last-child,
.wp-block-template-part > *:last-child,
.wp-block-post-template :where(li > *):last-child {
	margin-bottom: 0;
}

.site-footer > *,
.widget-area > * {
	margin-top: calc(0.666 * var(--global--spacing-vertical));
	margin-bottom: calc(0.666 * var(--global--spacing-vertical));
}
@media only screen and (min-width: 482px) {

	.site-footer > *,
	.widget-area > * {
		margin-top: var(--global--spacing-vertical);
		margin-bottom: var(--global--spacing-vertical);
	}
}

/*
 * Block & non-gutenberg content wrapper children
 * - Sets spacing-unit margins
 */
.entry-header > *,
.post-thumbnail > *,
.page-content > *,
.comment-content > *,
.widget > * {
	margin-top: var(--global--spacing-unit);
	margin-bottom: var(--global--spacing-unit);
}

.entry-header > *:first-child,
.post-thumbnail > *:first-child,
.page-content > *:first-child,
.comment-content > *:first-child,
.widget > *:first-child {
	margin-top: 0;
}

.entry-header > *:last-child,
.post-thumbnail > *:last-child,
.page-content > *:last-child,
.comment-content > *:last-child,
.widget > *:last-child {
	margin-bottom: 0;
}

/*
 * .entry-content children specific controls
 * - Adds special margin overrides for alignment utility classes
 */
.entry-content > * {

	/* Reset alignleft and alignright margins after alignfull */
}

.entry-content > *.alignleft,
.entry-content > *.alignright,
.entry-content > *.alignleft:first-child + *,
.entry-content > *.alignright:first-child + *,
.entry-content > *.alignfull.has-background {
	margin-top: 0;
}

.entry-content > *:last-child,
.entry-content > *.alignfull.has-background {
	margin-bottom: 0;
}

.entry-content > *.alignfull + .alignleft,
.entry-content > *.alignfull + .alignright {
	margin-top: var(--global--spacing-vertical);
}

/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

/**
 * Apply generic border-box to all elements.
 * See:
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {

	/* Apply border-box across the entire page. */
	box-sizing: border-box;
	font-family: var(--global--font-secondary);
	line-height: var(--global--line-height-body);
}

/**
 * Relax the definition a bit, to allow components to override it manually.
 */
*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	font-size: var(--global--font-size-base);
	font-weight: normal;
	color: var(--global--color-primary);
	text-align: left;
	background-color: var(--global--color-background);
}

button {
	cursor: pointer;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	word-break: normal;
}

.skip-link:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

.has-black-color[class] {
	color: var(--global--color-black);
}

.has-black-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-black, #000);
	color: var(--local--color-primary);
}

.has-gray-color[class] {
	color: var(--global--color-gray);
}

.has-gray-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-gray, #000);
	color: var(--local--color-primary);
}

.has-dark-gray-color[class] {
	color: var(--global--color-dark-gray);
}

.has-dark-gray-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-dark-gray, #000);
	color: var(--local--color-primary);
}

.has-green-color[class] {
	color: var(--global--color-green);
}

.has-green-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-green, #fff);
	color: var(--local--color-primary);
}

.has-blue-color[class] {
	color: var(--global--color-blue);
}

.has-blue-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-blue, #fff);
	color: var(--local--color-primary);
}

.has-purple-color[class] {
	color: var(--global--color-purple);
}

.has-purple-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-purple, #fff);
	color: var(--local--color-primary);
}

.has-red-color[class] {
	color: var(--global--color-red);
}

.has-red-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-red, #fff);
	color: var(--local--color-primary);
}

.has-orange-color[class] {
	color: var(--global--color-orange);
}

.has-orange-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-orange, #fff);
	color: var(--local--color-primary);
}

.has-yellow-color[class] {
	color: var(--global--color-yellow);
}

.has-yellow-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-yellow, #fff);
	color: var(--local--color-primary);
}

.has-white-color[class] {
	color: var(--global--color-white);
}

.has-white-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-white, #fff);
	color: var(--local--color-primary);
}

.has-background a,
.has-background p,
.has-background h1,
.has-background h2,
.has-background h3,
.has-background h4,
.has-background h5,
.has-background h6 {
	color: currentcolor;
}

.has-black-background-color[class] {
	background-color: var(--global--color-black);
}

.has-black-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-black, #000);
	background-color: var(--local--color-background);
}

.has-dark-gray-background-color[class] {
	background-color: var(--global--color-dark-gray);
}

.has-dark-gray-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-dark-gray, #000);
	background-color: var(--local--color-background);
}

.has-gray-background-color[class] {
	background-color: var(--global--color-gray);
}

.has-gray-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-gray, #000);
	background-color: var(--local--color-background);
}

.has-light-gray-background-color[class] {
	background-color: var(--global--color-light-gray);
}

.has-light-gray-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-light-gray, #fff);
	background-color: var(--local--color-background);
}

.has-green-background-color[class] {
	background-color: var(--global--color-green);
}

.has-green-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-green, #fff);
	background-color: var(--local--color-background);
}

.has-blue-background-color[class] {
	background-color: var(--global--color-blue);
}

.has-blue-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-blue, #fff);
	background-color: var(--local--color-background);
}

.has-purple-background-color[class] {
	background-color: var(--global--color-purple);
}

.has-purple-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-purple, #fff);
	background-color: var(--local--color-background);
}

.has-red-background-color[class] {
	background-color: var(--global--color-red);
}

.has-red-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-red, #fff);
	background-color: var(--local--color-background);
}

.has-orange-background-color[class] {
	background-color: var(--global--color-orange);
}

.has-orange-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-orange, #fff);
	background-color: var(--local--color-background);
}

.has-yellow-background-color[class] {
	background-color: var(--global--color-yellow);
}

.has-yellow-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-yellow, #fff);
	background-color: var(--local--color-background);
}

.has-white-background-color[class] {
	background-color: var(--global--color-white);
}

.has-white-background-color[class] > [class*=__inner-container] {
	--local--color-background: var(--global--color-white, #fff);
	background-color: var(--local--color-background);
}

.has-background:not(.has-text-color).has-black-background-color[class],
.has-background:not(.has-text-color).has-gray-background-color[class],
.has-background:not(.has-text-color).has-dark-gray-background-color[class] {
	color: var(--global--color-white);
}

.has-background:not(.has-text-color).has-black-background-color[class] > [class*=__inner-container],
.has-background:not(.has-text-color).has-gray-background-color[class] > [class*=__inner-container],
.has-background:not(.has-text-color).has-dark-gray-background-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-background, #fff);
	color: var(--local--color-primary, var(--global--color-primary));
}

.is-dark-theme .has-background:not(.has-text-color).has-black-background-color[class] > [class*=__inner-container],
.is-dark-theme .has-background:not(.has-text-color).has-gray-background-color[class] > [class*=__inner-container],
.is-dark-theme .has-background:not(.has-text-color).has-dark-gray-background-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-primary, #000);
}

.has-background:not(.has-text-color).has-green-background-color[class],
.has-background:not(.has-text-color).has-blue-background-color[class],
.has-background:not(.has-text-color).has-purple-background-color[class],
.has-background:not(.has-text-color).has-red-background-color[class],
.has-background:not(.has-text-color).has-orange-background-color[class],
.has-background:not(.has-text-color).has-yellow-background-color[class],
.has-background:not(.has-text-color).has-white-background-color[class] {
	color: var(--global--color-dark-gray);
}

.has-background:not(.has-text-color).has-green-background-color[class] > [class*=__inner-container],
.has-background:not(.has-text-color).has-blue-background-color[class] > [class*=__inner-container],
.has-background:not(.has-text-color).has-purple-background-color[class] > [class*=__inner-container],
.has-background:not(.has-text-color).has-red-background-color[class] > [class*=__inner-container],
.has-background:not(.has-text-color).has-orange-background-color[class] > [class*=__inner-container],
.has-background:not(.has-text-color).has-yellow-background-color[class] > [class*=__inner-container],
.has-background:not(.has-text-color).has-white-background-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-primary, #000);
	color: var(--local--color-primary, var(--global--color-primary));
}

.is-dark-theme .has-background:not(.has-text-color).has-green-background-color[class] > [class*=__inner-container],
.is-dark-theme .has-background:not(.has-text-color).has-blue-background-color[class] > [class*=__inner-container],
.is-dark-theme .has-background:not(.has-text-color).has-purple-background-color[class] > [class*=__inner-container],
.is-dark-theme .has-background:not(.has-text-color).has-red-background-color[class] > [class*=__inner-container],
.is-dark-theme .has-background:not(.has-text-color).has-orange-background-color[class] > [class*=__inner-container],
.is-dark-theme .has-background:not(.has-text-color).has-yellow-background-color[class] > [class*=__inner-container],
.is-dark-theme .has-background:not(.has-text-color).has-white-background-color[class] > [class*=__inner-container] {
	--local--color-primary: var(--global--color-background, #fff);
}

.has-purple-to-yellow-gradient-background {
	background: linear-gradient(160deg, var(--global--color-purple), var(--global--color-yellow));
}

.has-yellow-to-purple-gradient-background {
	background: linear-gradient(160deg, var(--global--color-yellow), var(--global--color-purple));
}

.has-green-to-yellow-gradient-background {
	background: linear-gradient(160deg, var(--global--color-green), var(--global--color-yellow));
}

.has-yellow-to-green-gradient-background {
	background: linear-gradient(160deg, var(--global--color-yellow), var(--global--color-green));
}

.has-red-to-yellow-gradient-background {
	background: linear-gradient(160deg, var(--global--color-red), var(--global--color-yellow));
}

.has-yellow-to-red-gradient-background {
	background: linear-gradient(160deg, var(--global--color-yellow), var(--global--color-red));
}

.has-purple-to-red-gradient-background {
	background: linear-gradient(160deg, var(--global--color-purple), var(--global--color-red));
}

.has-red-to-purple-gradient-background {
	background: linear-gradient(160deg, var(--global--color-red), var(--global--color-purple));
}

header *,
main *,
footer * {
	max-width: var(--global--spacing-measure);
}

html,
body,
div,
header,
nav,
article,
figure,
hr,
main,
section,
footer {
	max-width: none;
}

.is-IE.is-dark-theme {
	color: #fff;
}

.is-IE.is-dark-theme *,
.is-IE.is-dark-theme a,
.is-IE.is-dark-theme .site-description,
.is-IE.is-dark-theme .entry-title,
.is-IE.is-dark-theme .entry-footer,
.is-IE.is-dark-theme .widget-area,
.is-IE.is-dark-theme .post-navigation .meta-nav,
.is-IE.is-dark-theme .footer-navigation-wrapper li a:link,
.is-IE.is-dark-theme .site-footer > .site-info,
.is-IE.is-dark-theme .site-footer > .site-info a,
.is-IE.is-dark-theme .site-footer > .site-info a:visited {
	color: #fff;
}

.is-IE.is-dark-theme .sub-menu-toggle svg,
.is-IE.is-dark-theme .sub-menu-toggle path,
.is-IE.is-dark-theme .post-navigation .meta-nav svg,
.is-IE.is-dark-theme .post-navigation .meta-nav path {
	fill: #fff;
}

.is-IE.is-dark-theme .primary-navigation > div > .menu-wrapper > li > .sub-menu li {
	background: #000;
}
@media only screen and (max-width: 481px) {

	.is-IE.is-dark-theme.primary-navigation-open .primary-navigation > .primary-menu-container,
	.is-IE.is-dark-theme.primary-navigation-open .menu-button-container {
		background-color: #000;
	}
}

.is-IE.is-dark-theme .skip-link:focus {
	color: #21759b;
}

.is-IE .navigation .nav-links {
	display: block;
}

.is-IE .post-thumbnail .wp-post-image {
	min-width: auto;
}

:root {
	--wp-admin--admin-bar--height: 0px;
	--global--font-size-xs: 0.875rem;

	/*    --global--font-size-base: 1.25rem; // 20px / 16px
      --global--font-size-sm: 1.125rem; // 18px / 16px
      --global--font-size-md: 1.25rem; // 20px / 16px
      --global--font-size-lg: 1.5rem; // 24px / 16px
      --global--font-size-xl: 2.25rem; // 36px / 16px
      --global--font-size-xxl: 4rem; // 64px / 16px
      --global--font-size-xxxl: 5rem; // 80px / 16px
      --global--font-size-page-title: var(--global--font-size-xxl);
      --global--letter-spacing: normal; */
}

#wpadminbar {
	display: none;
}

body {
	background-color: var(--global--color-white);
}

#main {
	position: relative;
	overflow: hidden;
}

#primary-mobile-menu {
	color: var(--global--color-black);
	font-size: 16px;
	line-height: 1;
}

#primary-mobile-menu li {
	display: block;
	padding: 0;
	height: auto;
}

#primary-mobile-menu li a,
#primary-mobile-menu li span {
	display: block;
	width: 100%;
	padding: 0.705em 1.41em;
	color: inherit;
	text-decoration: none;
}

#primary-mobile-menu li a.primary-menu-container__headline,
#primary-mobile-menu li span.primary-menu-container__headline {
	padding: 1.41em;
}

#primary-mobile-menu li.is--special > a {
	color: var(--global--color-blue);
}

#primary-mobile-menu li > ul {
	display: none;
}

#primary-mobile-menu > li.current-menu-item > a {
	text-decoration: underline;
}

#primary-mobile-menu > li.current-menu-item > ul {
	display: block;
}

.page-header__title {
	color: var(--global--color-black);
	font-size: 16px;
	line-height: 1;
	font-weight: normal;
	padding: 22px;
	margin: 0;
}

.page-header__title a {
	text-decoration: none;
	color: inherit;
}

.site {
	padding-top: 60px;
}

.site main {
	width: 100%;
	box-sizing: border-box;
}

.site main article {
	padding: 0;
}

.site main article h1,
.site main article h2,
.site main article h3,
.site main article h4,
.site main article h5,
.site main article h6 {
	font-weight: normal;
}

.site main article img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.site-footer {
	padding: 20px;
	margin: 0;
	font-size: var(--global--font-size-xs);
	color: var(--global--color-primary);
}

.site-footer .widget-area {
	margin: 0;
	padding: 0;
}

.site-footer .widget-area > * {
	margin: 0;
	padding: 0;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
}

body.is--not-scrollable {
	overflow: hidden;
}

.page,
.post {
	position: relative;
	width: 100%;
}

.page .entry-header,
.post .entry-header {
	width: 100%;
	position: relative;
	padding: 0 1.41em;
}

.page .entry-title,
.page .entry-excerpt,
.post .entry-title,
.post .entry-excerpt {
	max-width: none;
	font-weight: normal;
	margin: 0;
}

.page .entry-content,
.post .entry-content {
	padding: 0 1.41em;
}

.post .entry-header {
	padding: 0;
}

.post .entry-content {
	padding: 0;
	flex: 1 1 100%;
	margin: 0 auto auto auto;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	position: relative;
	top: 0;
	z-index: 5;
	scroll-snap-type: x mandatory;
	width: 100%;
	overflow: hidden;
}

.post .entry-content > * {
	display: block;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	scroll-snap-align: start;
}

.post .entry-content > * > img,
.post .entry-content > * > div {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	object-fit: contain;
	object-position: top center;
}

.post .entry-content > * > img.wp-block-embed__wrapper,
.post .entry-content > * > div.wp-block-embed__wrapper {
	height: 0;
	padding-top: 56.25%;
	position: relative;
}

.post .entry-content > * > img.wp-block-embed__wrapper iframe,
.post .entry-content > * > div.wp-block-embed__wrapper iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.post .entry-content > *.wp-block-group {
	padding: 20px;
	overflow: hidden;
}

.post .entry-content > *.wp-block-image img,
.post .entry-content > *.wp-block-image a {
	display: block;
	pointer-events: none;
	margin: 0;
}

.post .entry-dots {
	display: block;
	text-align: center;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post .entry-dots button {
	display: inline-block;
	background: transparent;
	border: none;
	outline: none;
	font-size: 20px;
	width: 1em;
	height: 1em;
	position: relative;
}

.post .entry-dots button:not(.is--info)::before {
	content: "";
	display: block;
	font-size: 0.5em;
	width: 1em;
	height: 1em;
	border: 1px solid var(--global--color-black);
	background: transparent;
	border-radius: 100%;
	box-shadow: inset 0 0 0 1px transparent;
	transition: all 0.15s ease-in-out;
}

.post .entry-dots button:not(.is--info).is--active::before {
	box-shadow: inset 0 0 0 1px var(--global--color-black);
}

.post .entry-dots button.is--info {
	color: inherit;
	font-size: var(--global--font-size-xs);
	width: auto;
	height: auto;
	line-height: 1;
}

.post .entry-dots button.is--info::before {
	content: "info";
	color: inherit;
}

.post .entry-dots button.is--info.is--active::before {
	text-shadow: 0 0 3px rgba(128, 128, 128, 0.6);
}

.post .entry-dots button.is--featured-image {
	display: none;
}

.post .entry-dots,
.post .entry-close,
.post .entry-hint {
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s ease-in-out;
}

.post.is--active .entry-dots,
.post.is--active .entry-close,
.post.is--active .entry-hint {
	opacity: 1;
	pointer-events: auto;
}

.post.is--active .entry-content {
	overflow-x: auto;
	scrollbar-width: none;
}

.post.is--active .entry-content::-webkit-scrollbar {
	display: none;
}

.post.is--active .entry-content > *.wp-block-group {
	overflow-y: auto;
}

.post.is--active .entry-content > *.wp-block-image.is--featured-image {
	display: none;
}

.post .entry-category,
.post .entry-year {
	display: none;
}

@media only screen and (max-width: 821px) {

	.primary-navigation {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		z-index: 10000;
		-webkit-backface-visibility: hidden;
	}

	.primary-navigation #primary-mobile-menu {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: var(--global--color-white);
		pointer-events: auto;
		z-index: 10;
	}

	.primary-navigation #primary-mobile-menu.has--animation {
		transition: all 0.2s ease-in-out;
	}

	.primary-navigation #primary-mobile-menu:not([aria-hidden=false]) {
		right: 100%;
	}

	.primary-navigation #primary-mobile-menu li a,
	.primary-navigation #primary-mobile-menu li span {
		border-bottom: 1px solid var(--global--color-black);
	}

	.primary-navigation #primary-mobile-menu-button {
		pointer-events: auto;
		position: absolute;
		top: 0;
		left: calc(100% - 3em);
		font-size: 20px;
		line-height: 1;
		width: 3em;
		height: 3em;
		padding: 1em;
		overflow: hidden;
		background: transparent;
		border: none;
		display: block;
		z-index: 20;
	}

	.has--animation .primary-navigation #primary-mobile-menu-button {
		transition: all 0.2s ease-in-out;
	}

	.has--animation .primary-navigation #primary-mobile-menu-button::before,
	.has--animation .primary-navigation #primary-mobile-menu-button::after {
		transition: all 0.2s ease-in-out;
	}

	.primary-navigation #primary-mobile-menu-button::before,
	.primary-navigation #primary-mobile-menu-button::after {
		content: "";
		display: block;
		width: 1.375em;
		height: 0;
		border-top: 1px solid var(--global--color-black);
		transform: rotate(-45deg);
		position: absolute;
		top: 1em;
		right: 1em;
		transform-origin: right center;
		border-color: var(--global--color-red);
	}

	.primary-navigation #primary-mobile-menu-button::after {
		transform: rotate(45deg);
		top: auto;
		bottom: 1em;
	}

	.primary-navigation #primary-mobile-menu-button[aria-expanded=false] {
		left: calc(100% - 3em);
	}

	.primary-navigation #primary-mobile-menu-button[aria-expanded=false]::before,
	.primary-navigation #primary-mobile-menu-button[aria-expanded=false]::after {
		width: 1em;
		transform: rotate(0deg);
		border-color: var(--global--color-black);
		box-shadow: 0 0.5em var(--global--color-black);
		right: 1em;
	}

	.primary-navigation #primary-mobile-menu-button[aria-expanded=false]::after {
		box-shadow: none;
	}

	.site {
		padding-top: 0;
	}

	.site-header {
		position: fixed;
		top: 0;
		width: 100%;
		height: 120px;
		padding-top: 40px;
		padding-bottom: 0;
		z-index: 10;
		background-color: var(--global--color-white);
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
	}

	body.home .site-header {
		height: 60px;
	}

	body.page .site-header {
		height: 60px;
	}

	.site-main {
		padding-top: 120px;
	}

	body.home .site-main {
		padding-top: 60px !important;
	}

	body.page .site-main {
		padding-top: 63px !important;
	}

	body.post .site-main {
		padding-top: 85px !important;
	}

	.page-header__title {
		font-size: 32px;
		height: 60px;
	}

	.page-header__title-hint {
		color: var(--global--color-red);
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		flex: 1 1 100%;
		text-align: right;
		padding-right: 22px;
		font-size: 16px;
		padding-top: 16px;
	}

	.page-header__title.is--site-name {
		font-size: 16px;
		height: 80px;
		position: absolute;
		display: block;
		z-index: 100000;
		padding: 1.41em;
		top: 0;
		text-decoration: none;
		height: 60px;
	}

	.post {
		height: 100vh;
		margin: -120px 0 0 0 !important;
		padding-top: 120px !important;
		display: flex;
		overflow: hidden;
		flex-direction: column-reverse;
		z-index: 5;
	}

	body.home .post {
		margin: -60px 0 0 0 !important;
		padding-top: 60px !important;
	}

	body.home .post.is--active {
		padding-top: 0 !important;
	}

	.post .entry-header {
		flex: auto;
		margin: auto;
		bottom: 0;
		padding: 20px;
		z-index: 10;
	}

	.post .entry-title,
	.post .entry-excerpt {
		font-size: var(--global--font-size-base);
		line-height: var(--global--line-height-heading);
	}

	.post .entry-close {
		position: absolute;
		top: 0;
		left: 0;
		pointer-events: auto;
		position: absolute;
		font-size: 20px;
		line-height: 1;
		width: 3em;
		height: 3em;
		padding: 1em;
		margin: 0;
		overflow: hidden;
		background: transparent;
		border: none;
		display: block;
		z-index: 20;
		transition: all 0.2s ease-in-out;
	}

	.post .entry-close::before,
	.post .entry-close::after {
		content: "";
		display: block;
		width: 0.6875em;
		height: 0;
		border-top: 1px solid var(--global--color-black);
		transform: rotate(-45deg);
		position: absolute;
		top: 1em;
		right: 1.25em;
		transition: all 0.2s ease-in-out;
		transform-origin: right center;
		border-color: var(--global--color-black);
	}

	.post .entry-close::after {
		transform: rotate(45deg);
		top: auto;
		bottom: 1em;
		width: 0.6875em;
	}

	.post .entry-hint {
		color: var(--global--color-red);
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		flex: 1 1 100%;
		text-align: right;
		padding-right: 22px;
		font-size: 16px;
		position: absolute;
		top: 15px;
		margin: 0;
		right: 20px;
		max-width: calc(100vw - 100px);
	}

	.post.is--active {
		padding-top: 0 !important;
		z-index: 20;
		height: calc(100vh - 0px);
		position: fixed;
		top: 60px;
		bottom: 0;
		background: var(--global--color-white);
	}

	body.archive .post.is--active {
		top: 120px;
	}

	.post.is--active .entry-header {
		bottom: 100%;
		transform: translateY(100%);
		padding-bottom: 50px;
		padding-top: 80px;
		background-color: var(--global--color-light-gray);
	}

	.post.is--active .entry-content {
		top: 100%;
		transform: translateY(-100%);
	}

	.post:not(.is--active) .entry-content > * > img,
	.post:not(.is--active) .entry-content > * > div {
		object-position: center;
		object-fit: cover;
	}
}
@media only screen and (min-width: 822px) {

	[aria-controls=primary-mobile-menu] {
		display: none;
	}

	#primary-mobile-menu li:not([class]) {
		display: none;
	}

	#primary-mobile-menu li.is--special {
		margin-top: 30px;
	}

	#primary-mobile-menu li.is--special + li:not(.is--special) {
		margin-top: 30px;
	}

	#primary-mobile-menu li a {
		padding-left: 2em;
	}

	.site {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
		padding-top: 90px;
	}

	.site > header {
		flex: 0 0 250px;
		position: sticky;
		top: 90px;
	}

	.site > main {
		flex: 1;
		overflow: hidden;
	}

	.site > footer {
		flex: 0 0 100%;
		font-size: var(--global--font-size-xxs);
		line-height: 1;
		text-align: right;
	}

	.page-header__title {
		text-decoration: none;
	}

	.page-header__title:not(.is--site-name) {
		border: 0;
		clip: rect(1px, 1px, 1px, 1px);
		-webkit-clip-path: inset(50%);
		clip-path: inset(50%);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute !important;
		width: 1px;
		word-wrap: normal !important;
		word-break: normal;
	}

	.page-header__title-hint {
		display: none;
	}

	.page-header__title.is--site-name {
		position: absolute;
		top: -60px;
		padding-left: 1.6em;
		font-size: var(--global--font-size-md);
		font-weight: normal;
	}

	.hentry.page {
		width: 100%;
		max-width: 700px;
	}

	.hentry.page .entry-title {
		width: 100%;
		max-width: none;
	}

	.post {
		display: flex;
		flex-wrap: nowrap;
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-end;
		align-content: center;
	}

	.post .entry-title {
		text-decoration: none;
	}

	.post .entry-title,
	.post .entry-excerpt {
		font-size: inherit;
		line-height: inherit;
	}

	.post .entry-hint {
		display: none;
	}

	.post .entry-close {
		pointer-events: auto;
		position: fixed;
		top: 0;
		right: 1em;
		font-size: 30px;
		line-height: 1;
		width: 3em;
		height: 3em;
		padding: 1em;
		overflow: hidden;
		background: transparent;
		border: none;
		display: block;
		z-index: 20;
		transition: all 0.2s ease-in-out;
		margin: 0;
		top: calc(10vh - 2em);
	}

	.post .entry-close::before,
	.post .entry-close::after {
		content: "";
		display: block;
		width: 1.375em;
		height: 0;
		border-top: 1px solid var(--global--color-black);
		transform: rotate(-45deg);
		position: absolute;
		top: 1em;
		right: 1em;
		transition: all 0.2s ease-in-out;
		transform-origin: right center;
		border-color: var(--global--color-red);
	}

	.post .entry-close::after {
		transform: rotate(45deg);
		top: auto;
		bottom: 1em;
	}

	.post .entry-dots {
		position: fixed;
		bottom: 4vh;
		left: 50%;
		transform: translateX(-50%);
	}

	.post .entry-prev,
	.post .entry-next {
		position: absolute;
		left: 0;
		top: 50%;
		font-size: 50px;
		line-height: 1;
		width: 3em;
		height: 3em;
		padding: 1em;
		overflow: hidden;
		background: transparent;
		border: none;
		display: block;
		margin-top: -1.5em;
	}

	.post .entry-prev[disabled],
	.post .entry-next[disabled] {
		opacity: 0.5;
		pointer-events: none;
	}

	.post .entry-prev::before,
	.post .entry-prev::after,
	.post .entry-next::before,
	.post .entry-next::after {
		content: "";
		display: block;
		width: 0.6875em;
		height: 0;
		border-top: 1px solid var(--global--color-black);
		transform: rotate(-45deg);
		position: absolute;
		top: 1em;
		right: 1.25em;
		transition: all 0.2s ease-in-out;
		transform-origin: right center;
	}

	.post .entry-prev::after,
	.post .entry-next::after {
		transform: rotate(45deg);
		top: auto;
		bottom: 1em;
		width: 0.6875em;
	}

	.post .entry-next {
		transform: rotate(180deg);
		left: auto;
		right: 0;
	}

	.post .entry-header {
		width: 260px;
		padding: 0 20px 45px 20px;
		order: 10;
		font-size: var(--global--font-size-xxs);
		line-height: var(--global--line-height-body);
	}

	.post .entry-content {
		flex: 1 1 100%;
		order: 5;
		max-height: calc(100vh - 200px);
		max-width: 700px;
		align-items: flex-end;
	}

	.post.is--active {
		position: fixed;
		top: 0;
		width: 100%;
		height: 100%;
		left: 0;
		background-color: rgba(228, 228, 228, 0.6);
		z-index: 99;
		backdrop-filter: blur(15px) saturate(30%) sepia(0.3);
		margin: 0;
		padding-left: 160px;
		padding-right: 160px;
		padding-bottom: 5vh;
		padding-top: 5vh;
		align-items: center;
		justify-content: center;
	}

	.post.is--active .entry-header {
		position: absolute;
		right: 0;
		width: 160px;
		bottom: 80px;
		height: calc(100vh - 160px);
		margin: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		padding-bottom: 0;
	}

	.post.is--active .entry-content {
		height: 100%;
		align-items: center;
		max-width: 1600px;
		max-height: calc(100vh - 160px);
		margin: auto;
	}

	.post.is--active .entry-content > * {
		height: auto;
		height: calc(100vh - 290px);
	}

	.post.is--active .entry-content > * > img {
		height: calc(100vh - 290px);
		width: 100% !important;
		height: 100% !important;
	}

	.post.is--active .entry-content > *.wp-block-group {
		padding-top: 0;
		padding-bottom: 0;
		max-height: 80vh;
	}

	.post.is--active .entry-content > *.wp-block-group > * {
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}

	.post.is--active .entry-title {
		text-decoration: underline;
	}

	.post.is--active .entry-category,
	.post.is--active .entry-year {
		display: block;
		font-size: var(--global--font-size-xs);
		line-height: var(--global--line-height-body);
		text-decoration: underline;
		margin-bottom: 1em;
	}

	.post:not(.is--active) .entry-header {
		margin: 0;
	}

	.post:not(.is--active) .entry-content {
		margin: 0;
	}

	.post:not(.is--active) .entry-content > *:not(:first-child) {
		display: none;
	}

	html,
	body {
		height: 100%;
		margin-top: 0 !important;
	}

	.site {
		min-height: 100%;
	}

	.site-footer {
		margin-top: auto;
		margin-top: 0 !important;
	}
}
@media only screen and (min-width: 1280px) {

	.post.is--active {
		padding-left: 260px;
		padding-right: 260px;
	}

	.post.is--active .entry-header {
		width: 260px;
	}

	.site > header {
		flex-basis: 275px;
		position: sticky;
		border-top: 25px solid transparent;
		margin-top: -40px;
	}

	.site > footer {
		padding: 0 75px 20px 40px;
	}

	.page-header__title.is--site-name {
		padding-left: 75px;
	}

	#primary-mobile-menu {
		font-size: var(--global--font-size-md);
	}

	#primary-mobile-menu li a {
		padding-left: 75px;
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.post.is--active .entry-prev,
	.post.is--active .entry-next {
		font-size: 75px;
		width: 2.75em;
		padding: 0;
	}

	.post.is--active .entry-prev::before,
	.post.is--active .entry-prev::after,
	.post.is--active .entry-next::before,
	.post.is--active .entry-next::after {
		width: 0.7em;
	}

	.post.is--active .entry-close {
		font-size: 35px;
	}

	.post.is--active .entry-header {
		bottom: 145px;
		height: calc(100vh - 290px);
		padding-left: 75px;
	}
}
@media only screen and (min-width: 1280px) and (min-height: 1080px) {

	.site {
		padding-top: 165px;
	}

	.site > header {
		border-top-width: 115px;
		margin-top: -115px;
		top: 50px;
	}

	.site > footer {
		padding-bottom: 50px;
	}

	.page-header__title.is--site-name {
		top: -75px;
	}

	.post.is--active {
		padding-top: 145px;
		padding-bottom: 145px;
	}

	.post.is--active .entry-content {
		max-height: calc(100vh - 290px);
	}

	.post.is--active .entry-content > * > * {
		max-height: calc(100vh - 290px);
	}

	.post.is--active .entry-close {
		top: calc(175px - 2em);
	}

	.post.is--active .entry-dots {
		bottom: 75px;
	}
}
