/*
Theme Name: Rockfield
Theme URI: https://wordpress.com/themes/rockfield/
Description: Rockfield is a refined theme designed for restaurants and food-related businesses seeking a classic, elegant look.
Version: 1.4.8
Author: Automattic
Author URI: https://automattic.com/
Template: varia-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rockfield
*/

/**
 * Abstracts
 * - Mixins, variables and functions
 */
/**
 * Abstracts
 * - Mixins, variables and functions
 */
/* Sass Functions go here */
/**
 * Map deep get
 * @author Hugo Giraudel
 * @access public
 * @param {Map} $map - Map
 * @param {Arglist} $keys - Key chain
 * @return {*} - Desired value
 *
 * Example:
 * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
 */
/**
 * Deep set function to set a value in nested maps
 * @author Hugo Giraudel
 * @access public
 * @param {Map} $map - Map
 * @param {List} $keys -  Key chaine
 * @param {*} $value - Value to assign
 * @return {Map}
 *
 * Example:
 * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
 */
/**
 * jQuery-style extend function
 * - Child themes can use this function to `reset` the values in
 *   config maps without editing the `master` Sass files.
 * - src: https://www.sitepoint.com/extra-map-functions-sass/
 * - About `map-merge()`:
 * - - only takes 2 arguments
 * - - is not recursive
 * @param {Map} $map - first map
 * @param {ArgList} $maps - other maps
 * @param {Bool} $deep - recursive mode
 * @return {Map}
 *
 * Examples:

$grid-configuration-default: (
	'columns': 12,
	'layouts': (
		'small': 800px,
		'medium': 1000px,
		'large': 1200px,
	),
);

$grid-configuration-custom: (
	'layouts': (
		'large': 1300px,
		'huge': 1500px
	),
);

$grid-configuration-user: (
	'direction': 'ltr',
	'columns': 16,
	'layouts': (
		'large': 1300px,
		'huge': 1500px
	),
);

// $deep: false
$grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
// --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")

// $deep: true
$grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
// --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")

 */
/**
 * Button
 */
/**
 * Cover
 */
/**
 * Heading
 */
/**
 * List
 */
/**
 * Pullquote
 */
/**
 * Quote
 */
/**
 * Separator
 */
/**
 * Responsive breakpoints
 * - breakpoints values are defined in _config-global.scss
 */
/**
 * Align wide widths
 * - Sets .alignwide widths
 */
/**
 * Crop Text Boundry
 * - Sets a fixed-width on content within alignwide and alignfull blocks
 */
/**
 * Add font-family using CSS variables.
 * It also adds the proper fallback for browsers without support.
 */
/**
* Global variables
*/
:root {
	/* Colors */
	--wp--preset--color--primary: #222222;
	--wp--preset--color--primary-hover: #444444;
	--wp--preset--color--secondary: #116821;
	--wp--preset--color--secondary-hover: #444444;
	--wp--preset--color--foreground: #444444;
	--wp--preset--color--foreground-low-contrast: #757575;
	--wp--preset--color--foreground-high-contrast: #111111;
	--wp--preset--color--background: black;
	--wp--preset--color--background-low-contrast: #F0F0F0;
	--wp--preset--color--background-high-contrast: #E0E0E0;
	--wp--preset--color--border: #E0E0E0;
	--wp--preset--color--border-low-contrast: #D0D0D0;
	--wp--preset--color--border-high-contrast: #F0F0F0;
	--wp--preset--color--text-selection: #EAEAEA;
	--wp--preset--color--alert-success: #4caf50;
	--wp--preset--color--alert-info: #2196f3;
	--wp--preset--color--alert-warning: #ffc107;
	--wp--preset--color--alert-error: #f44336;
	--wp--preset--color--black: black;
	--wp--preset--color--white: white;
}

/**
 * Child Theme Deep
 */
/**
 * Redefine Sass map values for child theme output.
 * - See: style-child-theme.scss
 */
/**
 * Global
 */
/**
 * Elements
 */
/**
 * Button
 */
/**
 * Cover
 */
/**
 * Heading
 */
/**
 * Pullquote
 */
/**
 * Quote
 */
/**
 * Separator
 */
/**
 * Header
 */
/**
 * Footer
 */
/**
 * Base
 * - Reset the browser
 */
/**
 * Base
 * - Reset the browser
 */
/**
 * Button Placeholder style
 * - Since buttons appear in various blocks,
 *   let’s use a placeholder to keep them all
 *   in-sync
 */
button[data-load-more-btn], .button, button,
input[type="submit"],
.wp-block-button__link,
.wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
	line-height: 1;
	color: var(--wp--preset--color--background);
	cursor: pointer;
	font-weight: bold;
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 0.83333rem;
	background-color: var(--wp--preset--color--primary);
	border-radius: 0;
	border-width: 0;
	text-decoration: none;
	padding: 16px 20px;
}

button[data-load-more-btn]:before, .button:before, button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after, .button:after, button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
	content: '';
	display: block;
	height: 0;
	width: 0;
}

button[data-load-more-btn]:before, .button:before, button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
	margin-bottom: -0.12em;
}

button[data-load-more-btn]:after, .button:after, button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
	margin-top: -0.11em;
}

.button:not(.has-background):hover, button:not(.has-background):hover,
input:not(.has-background):hover[type="submit"],
.wp-block-button__link:not(.has-background):hover,
.wp-block-file__button:not(.has-background):hover, .a8c-posts-list__view-all:not(.has-background):hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:not(.has-background):hover, .button:focus, button:focus,
input:focus[type="submit"],
.wp-block-button__link:focus,
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, .has-focus.button, button.has-focus,
input.has-focus[type="submit"],
.has-focus.wp-block-button__link,
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
	color: var(--wp--preset--color--background);
	background-color: var(--wp--preset--color--primary-hover);
}

/**
 * Onsale Placeholder style
 * - Since buttons appear in various blocks,
 *   let’s use a placeholder to keep them all
 *   in-sync
 */
/*! 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, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 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: underline dotted;
	/* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 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, 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 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * 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;
}

/**
 * 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/
 */
/**
 * Apply border-box across the entire page.
 */
html {
	box-sizing: border-box;
}

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

/**
 * HTML resets
 */
html {
	font-size: 15px;
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-base, Lora, Baskerville, Georgia, Times, serif);
	line-height: 1.78;
}

@media only screen and (min-width: 560px) {
	html {
		font-size: 18px;
	}
}

body {
	font-size: 1rem;
	font-weight: normal;
	color: var(--wp--preset--color--foreground);
	text-align: left;
	background-color: var(--wp--preset--color--background);
}

/**
 * Links styles
 */
a {
	color: var(--wp--preset--color--primary);
}

a:hover {
	color: var(--wp--preset--color--primary-hover);
}

.has-primary-background-color a:not(.has-text-color) {
	color: var(--wp--preset--color--background);
}

button,
a {
	cursor: pointer;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: var(--wp--preset--color--background);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--wp--preset--color--foreground);
	display: block;
	font-size: 1.2rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

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

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

/**
 * Measure
 * - The width of a line of text, in characters, is known as its measure.
 */
header *,
main *,
footer * {
	max-width: unset;
}

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

::selection {
	background-color: var(--wp--preset--color--text-selection);
}

::-moz-selection {
	background-color: var(--wp--preset--color--text-selection);
}

/**
 * Layout
 * - Structral and responsive styles
 */
/**
 * Layout
 * - Structral and responsive styles
 */
/**
 * Site Structure
 *
 * - Set vertical margins and responsive widths on
 *   top-level wrappers and content wrappers
 * - `--global--width-content` is a responsive veriable
 * - See: globals/_global-width-responsive.scss
 */
/**
 * Top Level Wrappers (header, main, footer)
 * - Set vertical padding and horizontal margins
 */
.site-header,
.site-main,
.site-footer {
	padding: 16px 16px;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 560px) {
	.site-header,
	.site-main,
	.site-footer {
		padding-top: 32px;
		padding-right: 0;
		padding-bottom: 32px;
		padding-left: 0;
	}
}

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

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

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

/**
 * Major content sections (article, author-bio, pagination, comments, etc.)
 * - Set a maximum responsive content-width
 *
 * .responsive-max-width is a group selector replacing the following:
 * .site-header,
 * .site-main,
 * .site-footer
 * .entry-header,
 * .post-thumbnail,
 * .entry-content,
 * .entry-footer,
 * .author-bio,
 * .widget-area
 */
/*
 * Block & non-gutenberg content wrappers
 * - Set margins
 */
.entry-header,
.post-thumbnail,
.entry-content,
.entry-footer,
.author-bio,
.widget-area {
	margin-top: 32px;
	margin-right: auto;
	margin-bottom: 32px;
	margin-left: auto;
}

/*
 * Block & non-gutenberg content wrapper children
 * - Sets spacing-vertical margin logic
 */
.site-footer > *,
.site-main > article > *,
.site-main > .not-found > *,
.entry-content > *,
.entry-content-child,
.wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
.wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
[class*="inner-container"] > *,
.widget-area > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.site-footer > *,
	.site-main > article > *,
	.site-main > .not-found > *,
	.entry-content > *,
	.entry-content-child,
	.wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
	.wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
	[class*="inner-container"] > *,
	.widget-area > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.site-footer > *:first-child,
.site-main > article > *:first-child,
.site-main > .not-found > *:first-child,
.entry-content > *:first-child,
.entry-content-child:first-child,
.wp-block-premium-content-container .wp-premium-content-logged-out-view > :first-child,
.wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :first-child,
[class*="inner-container"] > *:first-child,
.widget-area > *:first-child {
	margin-top: 0;
}

.site-footer > *:last-child,
.site-main > article > *:last-child,
.site-main > .not-found > *:last-child,
.entry-content > *:last-child,
.entry-content-child:last-child,
.wp-block-premium-content-container .wp-premium-content-logged-out-view > :last-child,
.wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :last-child,
[class*="inner-container"] > *:last-child,
.widget-area > *:last-child {
	margin-bottom: 0;
}

/*
 * Block & non-gutenberg content wrapper children
 * - Sets spacing-unit margins
 */
.site-header > *,
.entry-header > *,
.post-thumbnail > *,
.page-content > *,
.comment-content > *,
.author-bio > *,
.widget-area > .widget > * {
	margin-top: 16px;
	margin-bottom: 16px;
}

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

.site-header > *:last-child,
.entry-header > *:last-child,
.post-thumbnail > *:last-child,
.page-content > *:last-child,
.comment-content > *:last-child,
.author-bio > *:last-child,
.widget-area > .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 {
	margin-top: 0;
}

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

.entry-content > *.alignfull + .alignleft {
	float: left;
	margin-top: 32px;
	margin-left: 16px;
	margin-right: 16px;
}

.entry-content > *.alignfull + .alignright {
	float: right;
	margin-top: 32px;
	margin-left: 16px;
	margin-right: 16px;
}

/**
 * Elements
 * - Styles for basic HTML elemants
 */
/**
 * Elements
 * - Styles for basic HTML elemants
 */
blockquote {
	padding-left: 16px;
}

blockquote p {
	font-size: 1.728rem;
	letter-spacing: normal;
	line-height: 1.125;
}

blockquote cite,
blockquote footer {
	font-size: 0.83333rem;
	letter-spacing: normal;
}

blockquote > * {
	margin-top: 16px;
	margin-bottom: 16px;
}

blockquote > *:first-child {
	margin-top: 0;
}

blockquote > *:last-child {
	margin-bottom: 0;
}

blockquote.alignleft, blockquote.alignright {
	padding-left: inherit;
}

blockquote.alignleft p, blockquote.alignright p {
	font-size: 1.44rem;
	max-width: inherit;
	width: inherit;
}

blockquote.alignleft cite,
blockquote.alignleft footer, blockquote.alignright cite,
blockquote.alignright footer {
	font-size: 0.69444rem;
	letter-spacing: normal;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: var(--wp--preset--color--black);
	border: 2px solid var(--wp--preset--color--border);
	border-radius: 0;
	padding: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: var(--wp--preset--color--black);
	border-color: var(--wp--preset--color--primary-hover);
}

select {
	border: 2px solid var(--wp--preset--color--border);
}

textarea {
	width: 100%;
}

input[type=checkbox] + label {
	display: inline;
	margin-left: 0.5em;
	margin-right: 2em;
	line-height: 1em;
}

figcaption {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.69444rem;
	margin-top: calc(0.5 * 16px);
	margin-bottom: 16px;
	text-align: center;
}

.alignleft figcaption,
.alignright figcaption {
	margin-bottom: 0;
}

/* WP Smiley */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/**
 * Blocks
 * - These styles replace key Gutenberg Block styles for fonts, colors, and
 *   spacing with CSS-variables overrides
 * - In the future the Block styles may get compiled to individual .css
 *   files and conditionally loaded
 */
/**
 * Blocks
 * - These styles replace key Gutenberg Block styles with font, color, and
 *   spacing with CSS-variables overrides
 * - In the future the Block styles may get compiled to individual .css
 *   files and conditionally loaded
 */
.wp-block-audio {
	min-width: inherit;
}

.wp-block-audio.alignleft, .wp-block-audio.alignright {
	min-width: 300px;
}

.wp-block-newspack-blocks-homepage-articles.image-aligntop .post-thumbnail {
	margin-bottom: 16px;
}

.wp-block-newspack-blocks-homepage-articles.image-alignleft .post-thumbnail {
	margin-right: 32px;
}

.wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail {
	margin-left: 32px;
}

.wp-block-newspack-blocks-homepage-articles.image-alignbehind .post-has-image .entry-wrapper {
	padding: 32px;
}

.wp-block-newspack-blocks-homepage-articles.is-grid article {
	margin-top: 0;
	margin-bottom: 64px;
}

@media only screen and (min-width: 560px) {
	.wp-block-newspack-blocks-homepage-articles.is-grid article {
		margin-bottom: 96px;
	}
}

.wp-block-newspack-blocks-homepage-articles .article-section-title {
	font-size: 1rem;
	margin-bottom: 16px;
}

.wp-block-newspack-blocks-homepage-articles .article-section-title + article {
	margin-top: 0;
}

.wp-block-newspack-blocks-homepage-articles article {
	display: block;
	/* Vertical margins logic between posts */
	margin-top: 64px;
	margin-bottom: 64px;
}

@media only screen and (min-width: 560px) {
	.wp-block-newspack-blocks-homepage-articles article {
		margin-top: 96px;
		margin-bottom: 96px;
	}
}

.wp-block-newspack-blocks-homepage-articles article:first-child {
	margin-top: 0;
}

.wp-block-newspack-blocks-homepage-articles article:last-child {
	margin-bottom: 96px;
}

.wp-block-newspack-blocks-homepage-articles article .post-thumbnail img {
	width: auto;
}

.wp-block-newspack-blocks-homepage-articles article .entry-wrapper > * {
	/* Vertical margins logic between post details */
	margin-top: 16px;
	margin-bottom: 16px;
}

.wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:first-child {
	margin-top: 0;
}

.wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:last-child {
	margin-bottom: 0;
}

.wp-block-newspack-blocks-homepage-articles article .entry-title a {
	color: var(--wp--preset--color--primary);
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a {
	color: currentColor;
}

.wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
	color: var(--wp--preset--color--primary-hover);
	text-decoration: underline;
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
	color: currentColor;
}

@media only screen and (min-width: 560px) {
	.wp-block-newspack-blocks-homepage-articles article .more-link {
		margin-top: 16px;
	}
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta,
.wp-block-newspack-blocks-homepage-articles article .cat-links {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.83333rem;
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta, .has-background:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links,
[style*="background-color"]
.wp-block-newspack-blocks-homepage-articles article .cat-links {
	color: currentColor;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta > span > *,
.wp-block-newspack-blocks-homepage-articles article .cat-links > span > * {
	vertical-align: top;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta .byline:not(:last-child),
.wp-block-newspack-blocks-homepage-articles article .cat-links .byline:not(:last-child) {
	margin-right: 16px;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta .published + .updated,
.wp-block-newspack-blocks-homepage-articles article .cat-links .published + .updated {
	display: none;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta a,
.wp-block-newspack-blocks-homepage-articles article .cat-links a {
	color: currentColor;
	text-decoration: underline;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
	color: var(--wp--preset--color--primary-hover);
	text-decoration: none;
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active, .has-background:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
[style*="background-color"]
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover, .has-background:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
[style*="background-color"]
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
	color: currentColor;
}

/**
 * Button Placeholder style
 * - Since buttons appear in various blocks,
 *   let’s use a placeholder to keep them all
 *   in-sync
 */
button[data-load-more-btn], .button, button,
input[type="submit"],
.wp-block-button__link,
.wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
	line-height: 1;
	color: var(--wp--preset--color--background);
	cursor: pointer;
	font-weight: bold;
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 0.83333rem;
	background-color: var(--wp--preset--color--primary);
	border-radius: 0;
	border-width: 0;
	text-decoration: none;
	padding: 16px 20px;
}

button[data-load-more-btn]:before, .button:before, button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after, .button:after, button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
	content: '';
	display: block;
	height: 0;
	width: 0;
}

button[data-load-more-btn]:before, .button:before, button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
	margin-bottom: -0.12em;
}

button[data-load-more-btn]:after, .button:after, button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
	margin-top: -0.11em;
}

.button:not(.has-background):hover, button:not(.has-background):hover,
input:not(.has-background):hover[type="submit"],
.wp-block-button__link:not(.has-background):hover,
.wp-block-file__button:not(.has-background):hover, .a8c-posts-list__view-all:not(.has-background):hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:not(.has-background):hover, .button:focus, button:focus,
input:focus[type="submit"],
.wp-block-button__link:focus,
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, .has-focus.button, button.has-focus,
input.has-focus[type="submit"],
.has-focus.wp-block-button__link,
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
	color: var(--wp--preset--color--background);
	background-color: var(--wp--preset--color--primary-hover);
}

/**
 * Onsale Placeholder style
 * - Since buttons appear in various blocks,
 *   let’s use a placeholder to keep them all
 *   in-sync
 */
button[data-load-more-btn], .button {
	display: inline-block;
}

.has-background:not(.has-background-background-color) button[data-load-more-btn],
[class*="background-color"]:not(.has-background-background-color) button[data-load-more-btn],
[style*="background-color"] button[data-load-more-btn], .has-background:not(.has-background-background-color) .button,
[class*="background-color"]:not(.has-background-background-color) .button,
[style*="background-color"] .button {
	background-color: transparent;
	border: 2px solid currentColor;
	color: currentColor;
}

/**
 * Button
 */
/**
 * Block Options
 */
.wp-block-button.is-style-outline.wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
	border: 2px solid currentcolor;
	padding: 14px 20px;
}

.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background),
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
	background: transparent;
}

.wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color),
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
	color: var(--wp--preset--color--primary);
}

.wp-block-button.is-style-outline.wp-block-button__link:active,
.wp-block-button.is-style-outline .wp-block-button__link:active {
	color: var(--wp--preset--color--primary);
}

.wp-block-button.is-style-outline.wp-block-button__link:hover, .wp-block-button.is-style-outline.wp-block-button__link:focus, .wp-block-button.is-style-outline.wp-block-button__link.has-focus,
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus,
.wp-block-button.is-style-outline .wp-block-button__link.has-focus {
	color: var(--wp--preset--color--primary-hover);
}

.has-primary-background-color .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color), .has-primary-background-color
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
	color: var(--wp--preset--color--background);
}

.wp-block-button.is-style-squared,
.wp-block-button.is-style-squared .wp-block-button__link {
	border-radius: 0;
}

.wp-block-code {
	color: var(--wp--preset--color--foreground);
	font-size: 0.83333rem;
	padding: 16px;
	border-color: var(--wp--preset--color--border);
}

.wp-block-code pre {
	color: var(--wp--preset--color--foreground);
}

.wp-block-columns {
	/**
	 * Block Options
	 */
}

.wp-block-columns .wp-block-column > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-columns .wp-block-column > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-columns .wp-block-column > *:first-child {
	margin-top: 0;
}

.wp-block-columns .wp-block-column > *:last-child {
	margin-bottom: 0;
}

.wp-block-columns .wp-block-column:last-child {
	margin-bottom: 0;
}

.wp-block-columns .wp-block-column:not(:last-child) {
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-columns .wp-block-column:not(:last-child) {
		margin-bottom: 32px;
	}
}

@media only screen and (min-width: 782px) {
	.wp-block-columns .wp-block-column:not(:last-child) {
		/* Resetting margins to match _block-container.scss */
		margin-bottom: 0;
	}
}

.wp-block-columns.alignfull {
	padding-left: 16px;
	padding-right: 16px;
}

.wp-block-columns.alignfull:not(:first-child) {
	margin-top: 32px;
}

.wp-block-columns.alignfull:not(:last-child) {
	margin-bottom: 32px;
}

.wp-block-cover,
.wp-block-cover-image {
	background-color: var(--wp--preset--color--foreground);
	min-height: 90vh;
	margin-top: inherit;
	margin-bottom: inherit;
	/* Treating H2 separately to account for legacy /core styles */
	/**
	 * Block Options
	 */
}

.wp-block-cover.has-background-dim,
.wp-block-cover-image.has-background-dim {
	background-color: var(--wp--preset--color--foreground);
	color: var(--wp--preset--color--background);
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text {
	margin-top: 32px;
	margin-bottom: 32px;
}

.wp-block-cover h2,
.wp-block-cover-image h2 {
	font-size: 2.48832rem;
	letter-spacing: normal;
	line-height: 1.125;
	max-width: inherit;
	text-align: inherit;
	padding: 0;
}

.wp-block-cover h2.has-text-align-left,
.wp-block-cover-image h2.has-text-align-left {
	text-align: left;
}

.wp-block-cover h2.has-text-align-center,
.wp-block-cover-image h2.has-text-align-center {
	text-align: center;
}

.wp-block-cover h2.has-text-align-right,
.wp-block-cover-image h2.has-text-align-right {
	text-align: right;
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
	width: calc(100% - 64px);
}

.wp-block-cover .wp-block-cover__inner-container > *,
.wp-block-cover-image .wp-block-cover__inner-container > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-cover .wp-block-cover__inner-container > *,
	.wp-block-cover-image .wp-block-cover__inner-container > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-cover .wp-block-cover__inner-container > *:first-child,
.wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
	margin-top: 0;
}

.wp-block-cover .wp-block-cover__inner-container > *:last-child,
.wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
	margin-bottom: 0;
}

.wp-block-cover.alignleft, .wp-block-cover.alignright,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright {
	margin-top: 0;
}

.wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
.wp-block-cover-image.alignleft > *,
.wp-block-cover-image.alignright > * {
	margin-top: calc(2 * 32px);
	margin-bottom: calc(2 * 32px);
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

.wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
.wp-block-cover-image.has-left-content,
.wp-block-cover-image.has-right-content {
	justify-content: center;
}

.wp-block-file .wp-block-file__button {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--background);
	font-size: 0.83333rem;
	margin-left: 16px;
	margin-right: 16px;
}

.wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
	display: inherit;
}

.wp-block-file a.wp-block-file__button:active,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover,
.wp-block-file a.wp-block-file__button:visited {
	color: var(--wp--preset--color--background);
	opacity: .85;
}

.wp-block-gallery {
	margin: 0;
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
	margin: 0;
	color: var(--wp--preset--color--white);
	font-size: 0.69444rem;
}

.wp-block-gallery.alignleft, .wp-block-gallery.alignright {
	max-width: 50%;
}

.wp-block-group .wp-block-group__inner-container {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-group .wp-block-group__inner-container > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-group .wp-block-group__inner-container > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-group .wp-block-group__inner-container > *:first-child {
	margin-top: 0;
}

.wp-block-group .wp-block-group__inner-container > *:last-child {
	margin-bottom: 0;
}

.wp-block-group.has-background {
	padding: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-group.has-background {
		padding: 32px;
	}
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-weight: bold;
	clear: both;
}

h1, .h1 {
	font-size: 2.98598rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h2, .h2 {
	font-size: 2.48832rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h3, .h3 {
	font-size: 2.0736rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h4, .h4 {
	font-size: 1.728rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h5, .h5 {
	font-size: 1.44rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h6, .h6 {
	font-size: 1.2rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.wp-block-image {
	text-align: center;
}

.wp-block-image figcaption {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.69444rem;
	margin-top: calc(0.5 * 16px);
	margin-bottom: 16px;
	text-align: center;
}

.entry-content > *[class="wp-block-image"],
.entry-content [class*="inner-container"] > *[class="wp-block-image"] {
	margin-top: 0;
	margin-bottom: 0;
}

.entry-content > *[class="wp-block-image"] + *,
.entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
	margin-top: 0;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

.wp-block-latest-comments {
	padding-left: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment {
	font-size: 0.83333rem;
	line-height: 1.78;
	/* Vertical margins logic */
	margin-top: 32px;
	margin-bottom: 32px;
}

.wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
	margin-top: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
	margin-bottom: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-meta {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
}

.wp-block-latest-comments .wp-block-latest-comments__comment-date {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.83333rem;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
	font-size: 0.83333rem;
	line-height: 1.78;
	margin: 0;
}

.wp-block-latest-posts {
	padding-left: 0;
}

.wp-block-latest-posts > li {
	word-wrap: break-word;
	/* Vertical margins logic */
	margin-top: 32px;
	margin-bottom: 32px;
}

.wp-block-latest-posts > li:first-child {
	margin-top: 0;
}

.wp-block-latest-posts > li:last-child {
	margin-bottom: 0;
}

.wp-block-latest-posts > li > a {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-size: 1.728rem;
	font-weight: bold;
	line-height: 1.125;
}

.wp-block-latest-posts .wp-block-latest-posts__post-date {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.69444rem;
	line-height: 1.78;
}

.entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
.entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
	color: currentColor;
}

.wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts .wp-block-latest-posts__post-full-content {
	font-size: 0.83333rem;
	line-height: 1.78;
	margin: 0;
}

.wp-block-latest-posts.alignfull {
	padding-left: 16px;
	padding-right: 16px;
}

.entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
.entry-content .has-background .wp-block-latest-posts.alignfull {
	padding-left: 0;
	padding-right: 0;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-item a {
	display: block;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

ul,
ol {
	font-family: serif;
	font-family: var(--font-base, serif);
	margin: 0;
	padding-left: 32px;
}

ul.aligncenter,
ol.aligncenter {
	list-style-position: inside;
	padding: 0;
}

ul.alignright,
ol.alignright {
	list-style-position: inside;
	text-align: right;
	padding: 0;
}

ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}

dt {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-weight: bold;
}

dd {
	margin: 0;
	padding-left: 32px;
}

.wp-block-media-text {
	/**
	 * Block Options
	 */
}

.wp-block-media-text .wp-block-media-text__content {
	padding: 16px;
}

@media only screen and (min-width: 640px) {
	.wp-block-media-text .wp-block-media-text__content {
		padding: 32px;
	}
}

.wp-block-media-text .wp-block-media-text__content > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-media-text .wp-block-media-text__content > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-media-text .wp-block-media-text__content > *:first-child {
	margin-top: 0;
}

.wp-block-media-text .wp-block-media-text__content > *:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 560px) {
	.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
		padding-top: 32px;
		padding-bottom: 32px;
	}
}

p.has-background {
	padding: 16px 16px;
}

.a8c-posts-list__listing {
	list-style: none;
	margin: 0;
	padding: 0;
}

.a8c-posts-list__listing:not(:last-child) {
	margin-bottom: calc(3 * 32px);
}

.a8c-posts-list-item__featured span {
	color: var(--wp--preset--color--background);
	background-color: var(--wp--preset--color--primary);
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-weight: bold;
	font-size: 0.83333rem;
	line-height: 1;
	padding: calc(0.5 * 16px) calc(0.66 * 16px);
}

.a8c-posts-list__item {
	display: block;
	/* Vertical margins logic between posts */
	margin-top: calc(3 * 32px);
	margin-bottom: calc(3 * 32px);
}

.a8c-posts-list__item:first-child {
	margin-top: 0;
}

.a8c-posts-list__item:last-child {
	margin-bottom: 0;
}

.a8c-posts-list__item .entry > * {
	/* Vertical margins logic between post details */
	margin-top: 16px;
	margin-bottom: 16px;
}

.a8c-posts-list__item .entry > *:first-child {
	margin-top: 0;
}

.a8c-posts-list__item .entry > *:last-child {
	margin-bottom: 0;
}

.a8c-posts-list__item .a8c-posts-list-item__meta {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.83333rem;
}

.a8c-posts-list__item .a8c-posts-list-item__meta a {
	color: currentColor;
}

.a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
	color: var(--wp--preset--color--primary-hover);
}

.a8c-posts-list__item .a8c-posts-list-item__edit-link {
	margin-left: 16px;
}

.a8c-posts-list__view-all {
	display: inline-block;
}

.wp-block-pullquote {
	border-top-color: var(--wp--preset--color--border);
	border-top-width: 2px;
	border-bottom-color: var(--wp--preset--color--border);
	border-bottom-width: 2px;
	color: var(--wp--preset--color--foreground);
}

.wp-block-pullquote blockquote p {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-size: 1.728rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
	font-size: 1.728rem;
}

.wp-block-pullquote a {
	color: currentColor;
}

.wp-block-pullquote .wp-block-pullquote__citation,
.wp-block-pullquote cite,
.wp-block-pullquote footer {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.83333rem;
	letter-spacing: normal;
}

.wp-block-pullquote blockquote {
	padding-left: 0;
}

.wp-block-pullquote.is-style-solid-color {
	color: var(--wp--preset--color--background);
}

.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
.wp-block-pullquote.is-style-solid-color cite,
.wp-block-pullquote.is-style-solid-color footer {
	color: currentColor;
}

.wp-block-pullquote.is-style-solid-color:not(.has-background) {
	background-color: var(--wp--preset--color--primary);
}

.wp-block-quote {
	border-left-color: var(--wp--preset--color--primary);
	margin: 32px 0;
	padding-left: 16px;
	/**
	 * Block Options
	 */
}

.wp-block-quote > * {
	margin-top: 16px;
	margin-bottom: 16px;
}

.wp-block-quote > *:first-child {
	margin-top: 0;
}

.wp-block-quote > *:last-child {
	margin-bottom: 0;
}

.wp-block-quote p {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-size: 1.728rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.wp-block-quote .wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.83333rem;
	letter-spacing: normal;
}

.has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
[class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
[style*="background-color"] .wp-block-quote .wp-block-quote__citation,
.wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
.wp-block-quote cite,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-quote cite,
[style*="background-color"]
.wp-block-quote cite,
.wp-block-cover[style*="background-image"]
.wp-block-quote cite, .has-background:not(.has-background-background-color)
.wp-block-quote footer,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-quote footer,
[style*="background-color"]
.wp-block-quote footer,
.wp-block-cover[style*="background-image"]
.wp-block-quote footer {
	color: currentColor;
}

.wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
	border-right-color: var(--wp--preset--color--primary);
}

.wp-block-quote.is-style-large, .wp-block-quote.is-large {
	/* Resetting margins to match _block-container.scss */
	margin-top: 32px;
	margin-bottom: 32px;
	padding: 0;
}

.wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
	font-size: 2.0736rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.wp-block-quote.is-style-large .wp-block-quote__citation,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.83333rem;
	letter-spacing: normal;
}

.has-background:not(.has-background-background-color) .wp-block-quote,
[class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
[style*="background-color"] .wp-block-quote,
.wp-block-cover[style*="background-image"] .wp-block-quote {
	border-color: currentColor;
}

hr {
	border-bottom: 2px solid var(--wp--preset--color--border);
	clear: both;
	margin-left: auto;
	margin-right: auto;
}

hr.wp-block-separator {
	border-bottom: 2px solid var(--wp--preset--color--border);
	/**
		 * Block Options
		 */
}

hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
	max-width: 96px;
}

hr.wp-block-separator.is-style-wide {
	border-bottom-width: 2px;
}

hr.wp-block-separator.is-style-dots.has-background, hr.wp-block-separator.is-style-dots.has-text-color {
	background-color: transparent !important;
}

hr.wp-block-separator.is-style-dots.has-background:before, hr.wp-block-separator.is-style-dots.has-text-color:before {
	color: currentColor !important;
}

hr.wp-block-separator.is-style-dots:before {
	color: var(--wp--preset--color--border);
	font-size: 1.728rem;
	letter-spacing: 0.83333rem;
	padding-left: 0.83333rem;
}

.has-background:not(.has-background-background-color) hr.wp-block-separator,
[class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
[style*="background-color"] hr.wp-block-separator,
.wp-block-cover[style*="background-image"] hr.wp-block-separator {
	border-color: currentColor;
}

.wp-block-jetpack-slideshow ul {
	margin-left: 0;
	margin-right: 0;
}

.wp-block-spacer {
	display: block;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
}

@media only screen and (max-width: 559px) {
	.wp-block-spacer[style] {
		height: 16px !important;
	}
}

.jetpack_subscription_widget input[type="text"] {
	padding: 16px !important;
	width: 100% !important;
}

table,
.wp-block-table {
	width: 100%;
	min-width: 240px;
	border-collapse: collapse;
}

table th,
.wp-block-table th {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
}

table td,
table th,
.wp-block-table td,
.wp-block-table th {
	padding: calc( 0.5 * 16px);
	border: 1px solid;
}

table.is-style-stripes tbody tr:nth-child(odd),
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: var(--wp--preset--color--border-low-contrast);
	color: var(--wp--preset--color--foreground);
}

.wp-block-video figcaption {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-size: 0.69444rem;
	margin-top: calc(0.5 * 16px);
	margin-bottom: 16px;
	text-align: center;
}

* > figure > video {
	max-width: unset;
	width: 100%;
	vertical-align: middle;
}

/* Block Alignments */
/**
 * .alignleft
 */
.alignleft {
	/*rtl:ignore*/
	text-align: left;
	/*rtl:ignore*/
	float: left;
	margin-top: 0;
	/*rtl:ignore*/
	margin-right: 16px;
	margin-bottom: 32px;
}

.entry-content > .alignleft {
	/*rtl:ignore*/
	float: left;
}

/**
 * .aligncenter
 */
.aligncenter {
	clear: both;
	display: block;
	float: none;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

/**
 * .alignright
 */
.alignright {
	/*rtl:ignore*/
	float: right;
	margin-top: 0;
	margin-bottom: 32px;
	/*rtl:ignore*/
	margin-left: 16px;
}

.entry-content > .alignright {
	/*rtl:ignore*/
	float: right;
}

.entry-content * > .alignleft + *,
.entry-content * > .alignright + * {
	margin-top: 0;
}

/**
 * .aligndefault
 */
/**
 * .alignwide
 */
.alignwide {
	clear: both;
}

/**
 * .alignfull
 */
.alignfull {
	clear: both;
}

.has-left-content {
	justify-content: flex-start;
}

.has-right-content {
	justify-content: flex-end;
}

.has-parallax {
	background-attachment: fixed;
}

.has-primary-color {
	color: var(--wp--preset--color--primary);
}

.has-secondary-color {
	color: var(--wp--preset--color--secondary);
}

.has-foreground-color {
	color: var(--wp--preset--color--foreground);
}

.has-foreground-light-color {
	color: var(--wp--preset--color--foreground-low-contrast);
}

.has-foreground-dark-color {
	color: var(--wp--preset--color--foreground-high-contrast);
}

.has-background-light-color {
	color: var(--wp--preset--color--background-high-contrast);
}

.has-background-dark-color {
	color: var(--wp--preset--color--background-low-contrast);
}

.has-background-dim,
.has-background-color {
	color: var(--wp--preset--color--background);
}

.has-background p:not(.has-text-color),
.has-background h1:not(.has-text-color),
.has-background h2:not(.has-text-color),
.has-background h3:not(.has-text-color),
.has-background h4:not(.has-text-color),
.has-background h5:not(.has-text-color),
.has-background h6:not(.has-text-color) {
	color: currentColor;
}

.has-primary-background-color,
.has-primary-background-color.has-background-dim {
	background-color: var(--wp--preset--color--primary);
}

.has-primary-background-color:not(.has-text-color),
.has-primary-background-color.has-background-dim:not(.has-text-color) {
	color: var(--wp--preset--color--background);
}

.has-secondary-background-color,
.has-secondary-background-color.has-background-dim {
	background-color: var(--wp--preset--color--secondary);
}

.has-secondary-background-color:not(.has-text-color),
.has-secondary-background-color.has-background-dim:not(.has-text-color) {
	color: var(--wp--preset--color--background);
}

.has-background-dim,
.has-foreground-background-color,
.has-foreground-background-color.has-background-dim {
	background-color: var(--wp--preset--color--foreground);
}

.has-background-dim,
.has-foreground-background-color,
.has-foreground-background-color.has-background-dim {
	color: var(--wp--preset--color--background);
}

.has-foreground-light-background-color,
.has-foreground-light-background-color.has-background-dim {
	background-color: var(--wp--preset--color--foreground-low-contrast);
}

.has-foreground-light-background-color:not(.has-text-color),
.has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
	color: var(--wp--preset--color--background);
}

.has-foreground-dark-background-color,
.has-foreground-dark-background-color.has-background-dim {
	background-color: var(--wp--preset--color--foreground-high-contrast);
}

.has-foreground-dark-background-color:not(.has-text-color),
.has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
	color: var(--wp--preset--color--background);
}

.has-background-light-background-color,
.has-background-light-background-color.has-background-dim {
	background-color: var(--wp--preset--color--background-high-contrast);
}

.has-background-light-background-color:not(.has-text-color),
.has-background-light-background-color.has-background-dim:not(.has-text-color) {
	color: var(--wp--preset--color--foreground);
}

.has-background-dark-background-color,
.has-background-dark-background-color.has-background-dim {
	background-color: var(--wp--preset--color--background-low-contrast);
}

.has-background-dark-background-color:not(.has-text-color),
.has-background-dark-background-color.has-background-dim:not(.has-text-color) {
	color: var(--wp--preset--color--foreground);
}

.has-background-background-color,
.has-background-background-color.has-background-dim {
	background-color: var(--wp--preset--color--background);
}

.has-background-background-color:not(.has-text-color),
.has-background-background-color.has-background-dim:not(.has-text-color) {
	color: var(--wp--preset--color--foreground);
}

.is-small-text,
.has-small-font-size {
	font-size: 0.83333rem;
}

.is-regular-text,
.has-regular-font-size,
.has-normal-font-size,
.has-medium-font-size {
	font-size: 1rem;
}

.is-large-text,
.has-large-font-size {
	font-size: 1.44rem;
	line-height: 1.125;
}

.is-larger-text,
.has-larger-font-size,
.has-huge-font-size {
	font-size: 1.728rem;
	line-height: 1.125;
}

.has-drop-cap:not(:focus)::first-letter {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-size: calc(2 * 2.98598rem);
	font-weight: bold;
	line-height: 0.66;
	text-transform: uppercase;
	font-style: normal;
	float: left;
	margin: 0.1em 0.1em 0 0;
}

.has-drop-cap:not(:focus)::after {
	content: "";
	display: table;
	clear: both;
	padding-top: 14px;
}

.desktop-only {
	display: none;
}

@media only screen and (min-width: 560px) {
	.desktop-only {
		display: block;
	}
}

/**
 * Spacing Overrides
 */
/*
 * Margins
 */
.margin-top-none {
	margin-top: 0 !important;
}

.margin-top-half {
	margin-top: 16px !important;
}

.margin-top-default {
	margin-top: 32px !important;
}

.margin-right-none {
	/*rtl:ignore*/
	margin-right: 0 !important;
}

.margin-right-half {
	/*rtl:ignore*/
	margin-right: 16px !important;
}

.margin-right-default {
	/*rtl:ignore*/
	margin-right: 32px !important;
}

.margin-bottom-none {
	margin-bottom: 0 !important;
}

.margin-bottom-half {
	margin-bottom: 16px !important;
}

.margin-bottom-default {
	margin-bottom: 32px !important;
}

.margin-left-none {
	/*rtl:ignore*/
	margin-left: 0 !important;
}

.margin-left-half {
	/*rtl:ignore*/
	margin-left: 16px !important;
}

.margin-left-default {
	/*rtl:ignore*/
	margin-left: 32px !important;
}

/*
 * Padding
 */
.padding-top-none {
	padding-top: 0 !important;
}

.padding-top-half {
	padding-top: 16px !important;
}

.padding-top-default {
	padding-top: 32px !important;
}

.padding-right-none {
	/*rtl:ignore*/
	padding-right: 0 !important;
}

.padding-right-half {
	/*rtl:ignore*/
	padding-right: 16px !important;
}

.padding-right-default {
	/*rtl:ignore*/
	padding-right: 32px !important;
}

.padding-bottom-none {
	padding-bottom: 0 !important;
}

.padding-bottom-half {
	padding-bottom: 16px !important;
}

.padding-bottom-default {
	padding-bottom: 32px !important;
}

.padding-left-none {
	/*rtl:ignore*/
	padding-left: 0 !important;
}

.padding-left-half {
	/*rtl:ignore*/
	padding-left: 16px !important;
}

.padding-left-default {
	/*rtl:ignore*/
	padding-left: 32px !important;
}

/**
 * Components
 * - Similar to Blocks but exist outside of the "current" editor context
 */
/*
 * Components
 * - Similar to Blocks but exist outside of the "current" editor context
 */
.site-branding {
	color: var(--wp--preset--color--background);
}

.site-title {
	color: var(--wp--preset--color--background);
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	letter-spacing: normal;
	line-height: 1;
}

.site-title a {
	color: currentColor;
	font-weight: bold;
}

.site-title a:link, .site-title a:visited {
	color: currentColor;
}

.site-title a:hover {
	color: var(--wp--preset--color--foreground-low-contrast);
}

.site-description {
	color: currentColor;
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
}

body:not(.fse-enabled) .site-title {
	font-size: 0.83333rem;
}

body:not(.fse-enabled) .site-description {
	font-size: 0.83333rem;
}

.main-navigation {
	color: var(--wp--preset--color--background);
}

.main-navigation > div {
	display: none;
}

.main-navigation #toggle-menu {
	display: inline-block;
	margin: 0;
}

.main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
	display: block;
}

.main-navigation #toggle:focus + #toggle-menu {
	background-color: var(--wp--preset--color--foreground-low-contrast);
	outline: inherit;
	text-decoration: underline;
}

.main-navigation .dropdown-icon.close {
	display: none;
}

.main-navigation #toggle:checked + #toggle-menu .open {
	display: none;
}

.main-navigation #toggle:checked + #toggle-menu .close {
	display: inline;
}

@media only screen and (min-width: 560px) {
	.main-navigation > div {
		display: inline-block;
	}
	.main-navigation #toggle-menu {
		display: none;
	}
	.main-navigation > div > ul > li > ul {
		display: none;
	}
}

.main-navigation > div > ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	max-width: none;
	padding-left: 0;
	position: relative;
	/* Sub-menus Flyout */
}

.main-navigation > div > ul ul {
	padding-left: 0;
}

.main-navigation > div > ul li {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

.main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
	cursor: pointer;
	z-index: 99999;
}

.main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
	cursor: pointer;
	z-index: 99999;
}

@media only screen and (min-width: 560px) {
	.main-navigation > div > ul li {
		display: inherit;
		width: inherit;
		/* Submenu display */
	}
	.main-navigation > div > ul li:hover > ul,
	.main-navigation > div > ul li[focus-within] > ul,
	.main-navigation > div > ul li ul:hover,
	.main-navigation > div > ul li ul:focus {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	.main-navigation > div > ul li:hover > ul,
	.main-navigation > div > ul li:focus-within > ul,
	.main-navigation > div > ul li ul:hover,
	.main-navigation > div > ul li ul:focus {
		visibility: visible;
		opacity: 1;
		display: block;
	}
}

@media only screen and (min-width: 560px) {
	.main-navigation > div > ul > li > a {
		line-height: 1;
	}
	.main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
		content: '';
		display: block;
		height: 0;
		width: 0;
	}
	.main-navigation > div > ul > li > a:before {
		margin-bottom: -0.12em;
	}
	.main-navigation > div > ul > li > a:after {
		margin-top: -0.11em;
	}
	.main-navigation > div > ul > li:first-of-type > a {
		padding-left: 0;
	}
	.main-navigation > div > ul > li:last-of-type > a {
		padding-right: 0;
	}
}

.main-navigation > div > ul > li > .sub-menu {
	margin: 0;
	position: relative;
}

@media only screen and (min-width: 560px) {
	.main-navigation > div > ul > li > .sub-menu {
		background: var(--wp--preset--color--background);
		box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
		left: 0;
		top: 100%;
		min-width: max-content;
		opacity: 0;
		position: absolute;
		transition: all 0.5s ease;
		visibility: hidden;
	}
}

.main-navigation > div > ul > li > .sub-menu .sub-menu {
	width: 100%;
}

.main-navigation a {
	color: var(--wp--preset--color--background);
	display: block;
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-weight: bold;
	padding: 8px 0;
}

@media only screen and (min-width: 560px) {
	.main-navigation a {
		padding: 16px;
	}
}

.main-navigation a:link, .main-navigation a:visited {
	color: var(--wp--preset--color--background);
}

.main-navigation a:hover {
	color: var(--wp--preset--color--foreground-low-contrast);
}

.main-navigation .sub-menu {
	list-style: none;
	margin-left: 0;
	/* Reset the counter for each UL */
	counter-reset: nested-list;
}

.main-navigation .sub-menu .menu-item a {
	padding-top: 8px;
	padding-bottom: 8px;
}

.main-navigation .sub-menu .menu-item a::before {
	/* Increment the dashes */
	counter-increment: nested-list;
	/* Insert dashes with spaces in between */
	content: "– " counters(nested-list, "– ", none);
}

@media only screen and (min-width: 560px) {
	.main-navigation > div > ul > .menu-item-has-children > a::after {
		content: "\00a0\25BC";
		display: inline-block;
		font-size: 0.69444rem;
		height: inherit;
		width: inherit;
	}
}

.main-navigation .hide-visually {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

body:not(.fse-enabled) .main-navigation a {
	font-size: 0.83333rem;
}

.social-navigation > div > ul {
	align-content: center;
	display: flex;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.social-navigation > div > ul > li:first-of-type > a {
	padding-left: 0;
}

.social-navigation > div > ul > li:last-of-type > a {
	padding-right: 0;
}

.social-navigation a {
	color: var(--wp--preset--color--background);
	display: inline-block;
	padding: 0 8px;
}

.social-navigation a:hover {
	color: var(--wp--preset--color--foreground-low-contrast);
}

.social-navigation svg {
	fill: currentColor;
	vertical-align: middle;
}

.site-footer {
	overflow: hidden;
}

@media only screen and (min-width: 640px) {
	.site-footer {
		align-items: flex-end;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

.site-info {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 0.83333rem;
}

@media only screen and (min-width: 640px) {
	.site-info {
		order: 1;
		flex: 1 0 50%;
		margin-top: 0;
		margin-bottom: 0;
	}
}

.site-info .site-name {
	font-weight: bold;
}

.site-info a {
	color: currentColor;
}

.site-info a:link, .site-info a:visited {
	color: currentColor;
}

.site-info a:hover {
	color: var(--wp--preset--color--foreground-high-contrast);
}

.footer-navigation {
	display: inline;
}

@media only screen and (min-width: 640px) {
	.footer-navigation {
		flex: 1 0 50%;
		order: 2;
		margin-top: 0;
		margin-bottom: 0;
		text-align: right;
	}
}

.footer-navigation > div {
	display: inline;
}

.footer-navigation .footer-menu {
	color: var(--wp--preset--color--foreground-low-contrast);
	margin: 0;
	padding-left: 0;
}

@media only screen and (min-width: 640px) {
	.footer-navigation .footer-menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
}

.footer-navigation .footer-menu > li {
	display: inline;
}

.footer-navigation .footer-menu > li:first-of-type > a {
	padding-left: 0;
}

.footer-navigation .footer-menu > li:last-of-type {
	padding-right: 0;
}

.footer-navigation .footer-menu a {
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-weight: bold;
	padding: 16px;
	color: currentColor;
}

.footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
	color: currentColor;
}

.footer-navigation .footer-menu a:hover {
	color: var(--wp--preset--color--foreground-high-contrast);
}

body:not(.fse-enabled) .footer-menu a {
	font-size: 0.83333rem;
}

.entry-title {
	font-size: 2.48832rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.entry-meta,
.entry-footer {
	color: var(--wp--preset--color--foreground-low-contrast);
	clear: both;
	float: none;
	font-size: 0.83333rem;
	display: block;
}

.entry-meta > span,
.entry-footer > span {
	display: inline-block;
	margin-right: 16px;
}

.entry-meta > span > *,
.entry-footer > span > * {
	display: inline-block;
	vertical-align: middle;
}

.entry-meta > span:last-child,
.entry-footer > span:last-child {
	margin-right: 0;
}

.entry-meta > span .published + .updated,
.entry-footer > span .published + .updated {
	display: none;
}

.entry-meta a,
.entry-footer a {
	color: currentColor;
}

.entry-meta a:hover, .entry-meta a:active,
.entry-footer a:hover,
.entry-footer a:active {
	color: var(--wp--preset--color--primary-hover);
}

.entry-meta .svg-icon,
.entry-footer .svg-icon {
	fill: currentColor;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-right: calc(0.25 * 16px);
}

/**
 * Entry Content
 */
.entry-content p {
	word-wrap: break-word;
}

.entry-content .more-link {
	display: block;
	color: inherit;
	margin-top: 16px;
}

@media only screen and (min-width: 560px) {
	.entry-content .more-link {
		margin-top: 32px;
	}
}

.entry-content .more-link:after {
	content: "→" /*rtl:"←"*/;
	display: inline-block;
	margin-left: 0.5em;
}

.entry-content .more-link:hover {
	text-decoration: none;
}

.entry-content > iframe,
.entry-content > iframe[style],
.entry-content > fb\:post {
	display: block !important;
	margin-left: auto !important;
	margin-right: auto !important;
	overflow: scroll;
}

.home.page.hide-homepage-header.hide-homepage-title .entry-content {
	margin-top: 0;
	padding-top: 0;
}

.home.page.hide-homepage-header.hide-homepage-title .entry-content > *:first-child {
	margin-top: 32px;
}

.home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-image.alignfull:first-child,
.home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-cover.alignfull:first-child,
.home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-media-text.alignfull:first-child,
.home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-group.has-background.alignfull:first-child {
	margin-top: -32px;
}

.entry-attachment {
	text-align: center;
}

/**
 * Post Thumbnails
 */
.post-thumbnail {
	text-align: center;
}

.post-thumbnail .post-thumbnail-inner {
	display: block;
}

/**
 * Author
 */
/* Author description */
.site-main > article > .author-bio {
	margin-top: calc(2 * 32px);
}

.author-bio .author-title {
	font-size: 2.0736rem;
}

/* Next/Previous navigation */
.post-navigation .meta-nav {
	font-size: 0.83333rem;
}

.post-navigation .post-title {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-size: 1.44rem;
	font-weight: 600;
}

.post-navigation .nav-next,
.post-navigation .nav-previous {
	margin-top: 32px;
	margin-bottom: 32px;
}

.post-navigation .nav-next:first-child,
.post-navigation .nav-previous:first-child {
	margin-top: 0;
}

.post-navigation .nav-next:last-child,
.post-navigation .nav-previous:last-child {
	margin-bottom: 0;
}

.pagination .nav-links {
	justify-content: start;
	margin: 0 calc(-0.66 * 16px);
}

.pagination .nav-links > * {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-size: 1.2rem;
	font-weight: 600;
	padding-left: calc(0.66 * 16px);
	padding-right: calc(0.66 * 16px);
}

.pagination .nav-links .svg-icon {
	display: inline-block;
	vertical-align: middle;
	fill: currentColor;
}

@media only screen and (min-width: 560px) {
	.nav-links {
		display: flex;
		justify-content: space-between;
	}
	.nav-links .nav-next,
	.nav-links .nav-previous {
		flex: 0 1 auto;
		margin-bottom: inherit;
		margin-top: inherit;
		max-width: calc(50% - (0.5 * 16px));
	}
	.nav-links .nav-next {
		text-align: right;
	}
}

/**
 * Comments Wrapper
 */
.comments-area > * {
	margin-top: 32px;
	margin-bottom: 32px;
}

.comments-area > *:first-child {
	margin-top: 0;
}

.comments-area > *:last-child {
	margin-bottom: 0;
}

/**
 * Comment Title
 */
.comments-title {
	font-size: 2.0736rem;
	letter-spacing: normal;
}

.comment-reply-title {
	font-size: 1.728rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.comment-reply-title small {
	font-size: 1rem;
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-base, Lora, Baskerville, Georgia, Times, serif);
	letter-spacing: normal;
	line-height: 1.125;
}

/**
 * Comment Lists
 */
.comment-list {
	border-bottom: 1px solid var(--wp--preset--color--border);
	padding-left: 0;
	list-style: none;
}

.comment-list > li {
	border-top: 1px solid var(--wp--preset--color--border);
	margin-top: 32px;
	margin-bottom: 32px;
}

.comment-list .children {
	list-style: none;
	padding-left: 16px;
}

.comment-list .children > li {
	border-top: 1px solid var(--wp--preset--color--border);
	margin-top: 32px;
	margin-bottom: 32px;
}

@media only screen and (min-width: 560px) {
	.comment-list .children {
		padding-left: 32px;
	}
}

/**
 * Comment Meta
 */
.comment-meta {
	margin-right: calc( 32px + (0.5 * 16px));
}

.comment-meta .comment-author {
	line-height: 1.125;
	margin-bottom: 4px;
	padding-right: 40px;
	max-width: calc(100% - 48px);
}

@media only screen and (min-width: 560px) {
	.comment-meta .comment-author {
		display: flex;
		align-items: center;
		margin-bottom: 0;
		padding-right: 0;
	}
}

.comment-meta .comment-author .fn {
	word-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
}

.comment-meta .comment-author .avatar {
	display: block;
	position: absolute;
	right: 0;
}

.comment-meta .comment-metadata {
	color: var(--wp--preset--color--foreground);
	padding-right: 40px;
}

@media only screen and (min-width: 560px) {
	.comment-meta .comment-metadata {
		padding-right: 0;
	}
}

.comment-meta .comment-metadata a {
	color: currentColor;
}

.comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
	color: var(--wp--preset--color--primary-hover);
}

@media only screen and (min-width: 560px) {
	.comment-meta {
		margin-right: inherit;
		align-items: center;
		display: flex;
		justify-content: space-between;
	}
	.comment-meta .comment-author {
		display: flex;
		align-items: center;
		max-width: inherit;
		flex: 0 1 auto;
	}
	.comment-meta .comment-author .fn {
		padding-right: 16px;
	}
	.comment-meta .comment-author .avatar {
		margin-right: 16px;
		display: inherit;
		position: relative;
		right: inherit;
	}
	.comment-meta .comment-metadata {
		flex: 0 1 auto;
	}
}

.comment-metadata,
.reply {
	font-size: 0.69444rem;
	line-height: 1.125;
}

.reply {
	text-align: right;
}

@media only screen and (min-width: 560px) {
	.reply {
		text-align: left;
	}
}

.bypostauthor {
	display: block;
}

.says {
	display: none;
}

.comment-author .fn,
.pingback .url,
.trackback .url {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
}

/**
 * Comment body
 */
.comment-body {
	position: relative;
}

.comment-body > * {
	margin-top: 32px;
	margin-bottom: 32px;
}

.comment-content a {
	word-wrap: break-word;
}

/**
 * Pingbacks & Trackbacks
 */
.pingback .comment-body,
.trackback .comment-body {
	margin-top: 32px;
	margin-bottom: 32px;
}

/**
 * Comment Form
 */
.comment-respond {
	margin-top: calc(2 * 32px);
}

.comment-respond > * {
	margin-top: 16px;
	margin-bottom: 16px;
}

.comment-respond > *:first-child {
	margin-top: 0;
}

.comment-respond > *:last-child {
	margin-bottom: 0;
}

.comment-form > p {
	margin-top: 16px;
	margin-bottom: 16px;
}

.comment-form > p:first-of-type {
	margin-top: 0;
}

.comment-form > p:last-of-type {
	margin-bottom: 0;
}

.comment-form > p label,
.comment-form > p input[type="email"],
.comment-form > p input[type="text"],
.comment-form > p input[type="url"],
.comment-form > p textarea {
	width: 100%;
}

.comment-form > p.comment-form-cookies-consent > label {
	width: auto;
}

@media only screen and (min-width: 560px) {
	.comment-form > p {
		display: flex;
	}
	.comment-form > p label {
		width: 25%;
	}
	.comment-form > p.comment-form-cookies-consent {
		margin-left: 25%;
	}
	.comment-form > p.comment-form-cookies-consent > label {
		width: auto;
		display: inline-block;
	}
	.comment-form > p input[type="email"],
	.comment-form > p input[type="text"],
	.comment-form > p input[type="url"],
	.comment-form > p textarea {
		width: 75%;
	}
	.comment-form > p.comment-notes, .comment-form > p.logged-in-as {
		display: block;
	}
}

/**
 * Comment Nav
 */
.comment-navigation a {
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-size: 1.2rem;
	font-weight: 600;
}

.widget-area {
	flex: 0 0 100%;
}

/* Utilities */
img#wpstats {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	padding: 0 !important;
	border: 0 !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden;
}

/**
 * Site Pages
 * - Page specific styles
 */
/**
 * Site Pages
 * - Page specific styles
 */
.sticky-post {
	color: var(--wp--preset--color--background);
	background-color: var(--wp--preset--color--primary);
	font-family: Lora, Baskerville, Georgia, Times, serif;
	font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
	font-weight: bold;
	font-size: 0.83333rem;
	line-height: 1;
	padding: calc(0.5 * 16px) calc(0.66 * 16px);
}

.page-title {
	font-size: 1.728rem;
}

/**
 * Responsive Logic
 * - Loading this last to respect cascaing rules
 */
/**
 * Page Layout Styles & Repsonsive Styles
 */
/* Responsive width-content overrides */
.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
.entry-content > *:not(.wp-block-button),
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 560px) {
	.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
	.entry-content > *:not(.wp-block-button),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 560px - 32px);
	}
}

@media only screen and (min-width: 640px) {
	.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
	.entry-content > *:not(.wp-block-button),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 640px - 32px);
	}
}

@media only screen and (min-width: 782px) {
	.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
	.entry-content > *:not(.wp-block-button),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 782px - 32px);
	}
}

@media only screen and (min-width: 1024px) {
	.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
	.entry-content > *:not(.wp-block-button),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 782px - 32px);
	}
}

@media only screen and (min-width: 1280px) {
	.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
	.entry-content > *:not(.wp-block-button),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 782px - 32px);
	}
}

.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	/* Matches normal width until desktop breakpoint */
}

@media only screen and (min-width: 560px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
		max-width: calc( 560px - 32px);
	}
}

@media only screen and (min-width: 640px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
		max-width: calc( 640px - 32px);
	}
}

@media only screen and (min-width: 782px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
		max-width: calc( 782px - 32px);
	}
}

@media only screen and (min-width: 1024px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: calc(100% - 32px);
	}
}

@media only screen and (min-width: 1280px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: calc(100% - 32px);
	}
}

.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
	width: calc(100% + 256px);
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 560px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 560px - 32px) + 256px);
		max-width: 100%;
	}
}

@media only screen and (min-width: 640px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 640px - 32px) + 256px);
		max-width: 100%;
	}
}

@media only screen and (min-width: 782px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: 100%;
	}
}

@media only screen and (min-width: 1024px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: 100%;
	}
}

@media only screen and (min-width: 1280px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: 100%;
	}
}

.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, .widget-area:before, .social-navigation {
	margin-left: -16px;
	margin-right: -16px;
	width: calc(100% + 32px);
	max-width: calc(100% + 32px);
	/* Letting the box-model do most of the work here. */
}

@media only screen and (min-width: 560px) {
	.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, .widget-area:before, .social-navigation {
		margin-left: inherit;
		margin-right: inherit;
		width: inherit;
		max-width: inherit;
	}
}

.entry-content > .alignright {
	/*rtl:ignore*/
}

@media only screen and (min-width: 560px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
		max-width: calc( 0.5 * calc( 560px - 32px));
		margin-left: 16px;
	}
}

@media only screen and (min-width: 640px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
		max-width: calc( 0.5 * calc( 640px - 32px));
	}
}

@media only screen and (min-width: 782px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
		max-width: calc( 0.5 * calc( 782px - 32px));
	}
}

@media only screen and (min-width: 1024px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
		max-width: calc( 0.5 * calc( 782px - 32px));
	}
}

@media only screen and (min-width: 1280px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
		max-width: calc( 0.5 * calc( 782px - 32px));
	}
}

.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
	/*rtl:ignore*/
}

@media only screen and (min-width: 560px) {
	.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
		max-width: calc( 0.5 * calc( 560px - 32px));
		margin-right: 16px;
	}
}

@media only screen and (min-width: 640px) {
	.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
		max-width: calc( 0.5 * calc( 640px - 32px));
	}
}

@media only screen and (min-width: 782px) {
	.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
		max-width: calc( 0.5 * calc( 782px - 32px));
	}
}

@media only screen and (min-width: 1024px) {
	.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
		max-width: calc( 0.5 * calc( 782px - 32px));
	}
}

@media only screen and (min-width: 1280px) {
	.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
		max-width: calc( 0.5 * calc( 782px - 32px));
	}
}

/**
 * Vendors
 * - Styles for 3rd party plugins and WP extensions
 */
/**
 * Vendors
 * - 3rd-party compatibility styles
 */
/**
 * Subscription Form
 */
.wp-block-jetpack-subscriptions form > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-jetpack-subscriptions form > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-jetpack-subscriptions form > *:first-child {
	margin-top: 0;
}

.wp-block-jetpack-subscriptions form > *:last-child {
	margin-bottom: 0;
}

/**
 * Cookies & Consents Banner
 */
body .widget_eu_cookie_law_widget {
	background: transparent;
	bottom: 0;
	left: 0;
	padding: 8px;
	right: 0;
}

body .widget_eu_cookie_law_widget.widget.top {
	bottom: auto;
	top: 0;
}

body .widget_eu_cookie_law_widget #eu-cookie-law {
	background: var(--wp--preset--color--background);
	border: 1px solid var(--wp--preset--color--border);
	color: var(--wp--preset--color--foreground);
	font-size: 0.83333rem;
	line-height: inherit;
	padding: 16px;
}

@media (max-width: 600px) {
	body .widget_eu_cookie_law_widget #eu-cookie-law {
		padding-bottom: 80px;
	}
}

body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
	background: var(--wp--preset--color--foreground);
	border-color: var(--wp--preset--color--foreground-high-contrast);
	color: var(--wp--preset--color--background);
}

body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
	background: var(--wp--preset--color--background);
	color: var(--wp--preset--color--foreground);
}

body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:hover, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:focus, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept.has-focus {
	background: var(--wp--preset--color--background-low-contrast);
}

body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
	margin: 0;
	margin-left: 32px;
}

@media (max-width: 600px) {
	body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
		bottom: 16px;
		left: 16px;
		margin: 0;
	}
}

body.admin-bar .widget_eu_cookie_law_widget.widget.top {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .widget_eu_cookie_law_widget.widget.top {
		top: 46px;
	}
}

/**
 * Mailchimp Subscription Form
 */
.wp-block-jetpack-mailchimp p {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-jetpack-mailchimp p {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-jetpack-mailchimp p:first-child {
	margin-top: 0;
}

.wp-block-jetpack-mailchimp p:last-child {
	margin-bottom: 0;
}

.wp-block-jetpack-mailchimp input[type=email] {
	width: 100%;
}

#wp-block-jetpack-mailchimp_consent-text {
	font-size: 0.83333rem;
}

/**
 * Business Hours
 */
.jetpack-business-hours dd {
	padding-left: 0;
}

/**
 * Layout Grid
 */
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:first-child {
	margin-top: 0;
}

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:last-child {
	margin-bottom: 0;
}

/**
 * Child Theme Extra Styles
 */
/**
 * Extra Child Theme Styles
 */
/**
 * Reset
 */
a {
	text-decoration: none;
}

.reply a,
.widget-area a,
.wp-block-cover a,
.wp-block-cover-image a,
.wp-block-media-text a,
p:not(.site-title) a {
	text-decoration: underline;
}

.reply a.wp-block-button__link, .reply a:hover,
.widget-area a.wp-block-button__link,
.widget-area a:hover,
.wp-block-cover a.wp-block-button__link,
.wp-block-cover a:hover,
.wp-block-cover-image a.wp-block-button__link,
.wp-block-cover-image a:hover,
.wp-block-media-text a.wp-block-button__link,
.wp-block-media-text a:hover,
p:not(.site-title) a.wp-block-button__link,
p:not(.site-title) a:hover {
	text-decoration: none;
}

.main-navigation > div > ul,
.social-navigation > div > ul,
.pagination .nav-links {
	justify-content: center;
}

/**
 * Header
 */
#masthead {
	background: var(--wp--preset--color--foreground-high-contrast);
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 8px 16px;
	position: relative;
	text-align: left;
	z-index: 9999;
}

@media only screen and (min-width: 560px) {
	#masthead {
		align-items: flex-end;
	}
}

@media only screen and (min-width: 640px) {
	#masthead {
		left: 0;
		max-width: 100%;
		position: absolute;
		right: 0;
	}
	.wp-sticky-header #masthead {
		position: fixed;
	}
}

/**
 * Site Branding
 */
.site-branding {
	margin: 0;
	margin-right: auto;
	padding-bottom: 8px;
	padding-right: 16px;
	padding-top: 8px;
	text-align: inherit;
}

@media only screen and (min-width: 560px) {
	.site-branding {
		padding-bottom: 0;
		padding-top: 0;
	}
}

.site-title {
	display: inline;
}

.site-description {
	display: none;
}

@media only screen and (min-width: 640px) {
	.site-description {
		display: inline;
	}
	.site-title:not(:empty) + .site-description:not(:empty):before {
		color: var(--wp--preset--color--foreground-low-contrast);
		content: "\2022";
		font-family: Arial, Helvetica, sans-serif;
		font-family: var(--font-headings, "Arial, Helvetica, sans-serif");
		margin: 0 .25em;
	}
}

/**
 * Header Menu
 */
#site-navigation {
	margin: 0;
	text-align: right;
}

#site-navigation > div {
	background: var(--wp--preset--color--foreground-high-contrast);
	border-top: 8px solid var(--wp--preset--color--foreground-high-contrast);
	box-shadow: inset 0 1px 0 0 var(--wp--preset--color--primary);
	left: 0;
	position: absolute;
	padding: 0 16px;
	right: 0;
}

@media only screen and (min-width: 560px) {
	#site-navigation > div {
		background: transparent;
		border: 0;
		box-shadow: none;
		left: auto;
		margin-bottom: -2px;
		position: inherit;
		padding: 0;
		right: auto;
	}
}

#site-navigation > div > ul {
	justify-content: flex-end;
}

#site-navigation > div > ul > .menu-item-has-children > a::after {
	font-size: 0.5rem;
}

#site-navigation > div > ul .sub-menu .menu-item a::before {
	display: none;
}

#site-navigation > div > ul .sub-menu .menu-item a::after {
	counter-increment: nested-list;
	content: " –" counters(nested-list, " –", none);
}

@media only screen and (min-width: 560px) {
	#site-navigation > div > ul > li:not(:first-child):before {
		color: var(--wp--preset--color--foreground-low-contrast);
		content: "\2022";
		font-family: Arial, Helvetica, sans-serif;
		font-family: var(--font-headings, Arial, Helvetica, sans-serif);
		line-height: 1;
		padding-bottom: 8px;
		padding-top: 8px;
	}
	#site-navigation > div > ul > li > a {
		padding-bottom: 8px;
		padding-top: 8px;
	}
	#site-navigation > div > ul > li > a:before, #site-navigation > div > ul > li > a:after {
		margin: 0;
	}
	#site-navigation > div > ul > li > .sub-menu {
		background: var(--wp--preset--color--foreground-high-contrast);
		box-shadow: none;
		left: auto;
		right: 0;
		text-align: right;
	}
}

#site-navigation #toggle:focus + #toggle-menu,
#toggle-menu {
	text-decoration: none;
}

#site-navigation #toggle-menu {
	align-items: center;
	display: flex;
	padding: 8px 16px;
}

#site-navigation #toggle-menu:after {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
	display: block;
	height: 24px;
	margin: 0;
	margin-left: 4px;
	width: 24px;
}

@media only screen and (min-width: 560px) {
	#site-navigation #toggle-menu {
		display: none;
	}
}

#site-navigation #toggle:checked + #toggle-menu:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'%3E%3C/path%3E%3C/svg%3E");
}

/**
 * Content Area
 */
.site-main > * {
	margin-bottom: 32px;
	margin-top: 32px;
}

@media only screen and (min-width: 560px) {
	.site-main > * {
		margin-bottom: 64px;
		margin-top: 64px;
	}
}

@media only screen and (min-width: 560px) {
	#main {
		padding-top: 64px;
	}
	.hide-homepage-header #main {
		padding-top: 0;
	}
}

@media only screen and (min-width: 640px) {
	#primary {
		margin-top: 44px;
	}
}

/**
 * Post Navigation
 */
.post-navigation {
	border-bottom: 1px solid var(--wp--preset--color--border);
	border-top: 2px solid var(--wp--preset--color--border);
	padding: 16px 0;
}

.post-navigation .meta-nav {
	color: var(--wp--preset--color--foreground-low-contrast);
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-weight: bold;
	text-transform: uppercase;
}

.post-navigation .post-title {
	font-size: inherit;
}

/**
 * Hentry
 */
.entry-header .entry-meta {
	display: none;
}

.entry-header,
.page-title,
.a8c-posts-list-item__title,
.a8c-posts-list .a8c-posts-list-item__featured {
	text-align: center;
}

.entry-footer {
	text-align: center;
}

.sticky-post,
.a8c-posts-list .a8c-posts-list-item__featured span {
	background: var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--background);
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	text-transform: uppercase;
}

.home.hide-homepage-title .hentry .entry-content > *:first-child.alignfull {
	margin-top: -16px;
}

@media only screen and (min-width: 560px) {
	.home.hide-homepage-title .hentry .entry-content > *:first-child.alignfull {
		margin-top: -64px;
	}
}

@media only screen and (min-width: 560px) {
	.home.page.hide-homepage-header.hide-homepage-title .hentry .entry-content > .wp-block-image.alignfull:first-child,
	.home.page.hide-homepage-header.hide-homepage-title .hentry .entry-content > .wp-block-cover.alignfull:first-child,
	.home.page.hide-homepage-header.hide-homepage-title .hentry .entry-content > .wp-block-media-text.alignfull:first-child,
	.home.page.hide-homepage-header.hide-homepage-title .hentry .entry-content > .wp-block-group.has-background.alignfull:first-child {
		margin-top: -44px;
	}
}

.page:not(.logged-in) .hentry .entry-content > *:last-child.alignfull {
	margin-bottom: -32px;
}

@media only screen and (min-width: 560px) {
	.page:not(.logged-in) .hentry .entry-content > *:last-child.alignfull {
		margin-bottom: -64px;
	}
}

.author-bio {
	border: 2px solid var(--wp--preset--color--border);
	padding: 16px;
}

.author-bio .author-title {
	font-size: inherit;
}

/**
 * Blocks
 */
.wp-block-cover .wp-block-cover__inner-container > *,
.wp-block-coblocks-hero .wp-block-coblocks-hero__box > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-cover .wp-block-cover__inner-container > *,
	.wp-block-coblocks-hero .wp-block-coblocks-hero__box > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-cover .wp-block-cover__inner-container > *:first-child,
.wp-block-coblocks-hero .wp-block-coblocks-hero__box > *:first-child {
	margin-top: 0;
}

.wp-block-cover .wp-block-cover__inner-container > *:last-child,
.wp-block-coblocks-hero .wp-block-coblocks-hero__box > *:last-child {
	margin-bottom: 0;
}

.wp-block-pullquote {
	border-bottom-width: 1px;
}

.wp-block-pullquote blockquote {
	padding: 0;
}

table td,
table th,
.wp-block-table td,
.wp-block-table th {
	border-color: var(--wp--preset--color--border);
}

.a8c-posts-list {
	text-align: center;
}

.a8c-posts-list__item {
	margin-bottom: 32px;
	margin-top: 32px;
}

@media only screen and (min-width: 560px) {
	.a8c-posts-list__item {
		margin-bottom: 64px;
		margin-top: 64px;
	}
}

.a8c-posts-list__item .a8c-posts-list-item__meta {
	text-align: center;
}

.a8c-posts-list__listing {
	text-align: left;
}

.a8c-posts-list__listing:not(:last-child) {
	margin-bottom: 32px;
}

@media only screen and (min-width: 560px) {
	.a8c-posts-list__listing:not(:last-child) {
		margin-bottom: 64px;
	}
}

/**
 * Blog Posts (Newspack)
 */
.wp-block-newspack-blocks-homepage-articles article .entry-title a:active, .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus, .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
	text-decoration: none;
}

.wp-block-newspack-blocks-homepage-articles article .cat-links a,
.wp-block-newspack-blocks-homepage-articles article .more-link,
.wp-block-newspack-blocks-homepage-articles article .entry-meta a {
	text-decoration: none;
}

.wp-block-newspack-blocks-homepage-articles article .cat-links a:active, .wp-block-newspack-blocks-homepage-articles article .cat-links a:focus, .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
.wp-block-newspack-blocks-homepage-articles article .more-link:active,
.wp-block-newspack-blocks-homepage-articles article .more-link:focus,
.wp-block-newspack-blocks-homepage-articles article .more-link:hover,
.wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
.wp-block-newspack-blocks-homepage-articles article .entry-meta a:focus,
.wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover {
	text-decoration: underline;
}

.wp-block-newspack-blocks-homepage-articles.image-alignbehind article .entry-title a:active, .wp-block-newspack-blocks-homepage-articles.image-alignbehind article .entry-title a:focus, .wp-block-newspack-blocks-homepage-articles.image-alignbehind article .entry-title a:hover {
	text-decoration: underline;
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:active, .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus, .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:active,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:active,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:focus,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
	text-decoration: underline;
}

/**
 * Comments
 */
.comments-title {
	text-align: center;
}

.comment-list > li:first-child {
	border-top-width: 2px;
}

.comment-body {
	content: "";
	display: table;
	table-layout: fixed;
	width: 100%;
}

.comment-meta .comment-metadata {
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 0.83333rem;
	font-weight: bold;
	text-transform: uppercase;
}

.reply {
	font-size: 0.83333rem;
}

.comment-reply-title {
	display: inherit;
	text-align: center;
}

.comment .comment-reply-title {
	display: flex;
}

.comment-respond .form-submit {
	display: flex;
	justify-content: center;
}

@media only screen and (min-width: 640px) {
	.comment-meta {
		border-right: 1px solid var(--wp--preset--color--border);
		display: block;
		float: left;
		padding-right: 16px;
		width: 20%;
	}
	.comment-meta .comment-author {
		display: block;
		width: 100%;
	}
	.comment-meta .comment-author .avatar,
	.comment-meta .comment-author .fn {
		display: block;
		margin-bottom: 8px;
	}
	.comment-content, .reply {
		float: right;
		width: 75%;
		width: calc(80% - 16px - 1px);
	}
}

.comment-navigation a {
	font-size: inherit;
	font-weight: bold;
}

/**
 * Widgets
 */
.widget-area {
	width: 100%;
}

.widget-area:before {
	background: var(--wp--preset--color--border);
	height: 1px;
	content: "";
	display: block;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.widget-area:before {
		margin-bottom: 64px;
	}
}

.widget-area .widget-title,
.widget-area .widgettitle {
	font-size: 1rem;
	font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	margin-bottom: 16px;
}

.widget-area .widget-title:empty,
.widget-area .widgettitle:empty {
	display: none;
}

@media only screen and (min-width: 782px) {
	.widget-area {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.widget-area > *:nth-child(2) {
		margin-top: 0;
	}
	.widget-area .widget {
		width: calc(50% - 16px);
	}
}

.widget_calendar caption,
.widget_calendar caption {
	font-weight: bold;
}

.widget_calendar td,
.widget_calendar th,
.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

.widget_archive ul,
.widget_categories ul,
.widget_links ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget_rss ul,
.widget_rss_links ul,
.widget_top-posts ul,
.widget_authors ul,
.widget_jp_blogs_i_follow ul,
.widget_top-click ul,
.widget_upcoming_events_widget ul {
	border-bottom: 1px solid var(--wp--preset--color--border);
	list-style: none;
	padding-left: 0;
}

.widget_archive li,
.widget_categories li,
.widget_links li,
.widget_meta li,
.widget_nav_menu li,
.widget_pages li,
.widget_recent_comments li,
.widget_recent_entries li,
.widget_rss li,
.widget_rss_links li,
.widget_top-posts li,
.widget_authors li,
.widget_jp_blogs_i_follow li,
.widget_top-click li,
.widget_upcoming_events_widget li {
	border-top: 1px solid var(--wp--preset--color--border);
	padding: 8px 0;
}

.widget_categories .children,
.widget_nav_menu .sub-menu,
.widget_pages .children {
	border-bottom: 0;
	margin-bottom: -8px;
	margin-top: 8px;
	padding-left: 16px;
}

.widget_recent_entries .post-date {
	display: block;
}

.widget_rss cite,
.widget_rss .rssSummary,
.widget_rss .rss-date {
	display: block;
}

.widget_search input[type="search"] {
	display: block;
	margin-bottom: 8px;
	width: 100%;
}

/**
 * Social Menu
 */
.social-navigation {
	background: var(--wp--preset--color--foreground-high-contrast);
	padding: 32px 0;
	width: calc(100% + 16px);
}

.social-navigation .social-links-menu {
	margin: 0;
	padding: 0 16px;
	text-align: center;
}

/**
 * Footer
 */
.site-footer {
	align-items: unset;
	flex-direction: column;
	padding-left: 0;
	padding-right: 0;
}

.site-footer > * {
	padding-left: 16px;
	padding-right: 16px;
}

/**
 * Footer Menu
 */
.footer-navigation {
	display: block;
	flex: 1 0 100%;
	order: 1;
	text-align: center;
}

.footer-navigation .footer-menu {
	justify-content: center;
	text-align: inherit;
}

.footer-navigation .footer-menu > li:not(:first-child):before {
	color: var(--wp--preset--color--border-high-contrast);
	content: "\2022";
	font-family: Arial, Helvetica, sans-serif;
	font-family: var(--font-headings, "Arial, Helvetica, sans-serif");
}

@media only screen and (min-width: 560px) {
	.footer-navigation {
		margin-bottom: 8px;
	}
}

/**
 * Site Info
 */
.site-info {
	font-weight: bold;
	text-align: center;
}

.site-info a {
	font-weight: inherit;
}

/**
 * Buttons
 */
.button,
.wp-block-button__link,
.wp-block-file__button,
.a8c-posts-list__view-all {
	position: relative;
}

.button:before,
.wp-block-button__link:before,
.wp-block-file__button:before,
.a8c-posts-list__view-all:before {
	border: 2px solid;
	content: "";
	display: block;
	left: 3px;
	margin: 0;
	position: absolute;
	top: 3px;
	height: calc(100% - 6px);
	width: calc(100% - 6px);
}

button,
input[type="submit"] {
	outline: 2px solid;
	outline-offset: -5px;
}

.is-style-circular .wp-block-button__link:before {
	border-radius: 100px;
}

/**
 * AMP Support
 */
@media only screen and (min-width: 640px) {
	html[amp] #masthead {
		position: sticky;
		top: 0;
	}
	html[amp] .logged-in #masthead {
		top: 32px;
	}
}

@media screen and (max-width: 782px) {
	html[amp] .logged-in #masthead {
		top: 46px;
	}
}