/*
Theme Name: The Little Kitchen 2022
Theme URI: https://ryantownley.com/
Description: This is the custom theme created for the Genesis Framework.
Author: Ryan Townley
Author URI: https://ryantownley.com/
Version: 0.8.9
Template: genesis
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thelittlekitchen2022
*/

/* IMPORTANT: Do NOT edit this file. Put any custom CSS in style-custom.css, style-block-custom.css, or Customize > Additional CSS. */

/* Table of Contents
- Defaults
	- Forms & Buttons
	- Links
	- Lists
	- Objects & Images
	- Paragraphs
	- Quotes
	- Screen Reader Text
	- Tables
	- Typography
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- Utility
	- WordPress
- Widgets
	- Featured Content
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Entry Content
	- Archives
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Topbar
- Before Footer Widgets
- Footer Widgets
- Site Footer
- Media Queries
- Print Styles
*/

/* Defaults
---------------------------------------------------------------------------- */

html {
	box-sizing: border-box;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	overflow-x: hidden;
}

/* Forms & Buttons
--------------------------------------------- */

input,
select,
textarea {
	background-color: var(--wp--preset--color--background);
	border: 1px solid #ddd;
	color: var(--wp--preset--color--foreground);
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--regular);
	line-height: var(--wp--custom--line-height--medium);
	padding: 10px;
	width: 100%;
}

textarea {
	line-height: var(--wp--custom--line-height--body);
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-ms-input-placeholder {
	color: #666;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #666;
	opacity: 1;
}

::placeholder {
	color: #666;
	opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	-webkit-appearance: none;
	background-color: var(--wp--preset--color--primary);
	border: 0;
	border-radius: 3px;
	color: var(--wp--preset--color--background);
	cursor: pointer;
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: 1;
	padding: 12px 20px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.button:focus,
.button:hover {
	background-color: var(--wp--preset--color--secondary);
	border-width: 0;
	color: var(--wp--preset--color--background);
	text-decoration: none;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: var(--wp--preset--color--background);
}

.button {
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.more-link {
	margin-top: 20px;
}

a.more-link {
	text-decoration: none !important;
}

/* Links
--------------------------------------------- */

a {
	text-decoration: underline;
}

a:focus,
a:hover {
	color: var(--wp--preset--color--secondary);
	text-decoration: underline;
}

.image-link {
    border-bottom: none !important;
	box-shadow: none !important;
}

/* Lists
--------------------------------------------- */

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

/* Objects & Images
--------------------------------------------- */

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid var(--wp--preset--color--tertiary);
	margin: 30px auto;
}

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: top;
}

a img:focus,
a img:hover {
    opacity: 0.8;
}

figure {
	margin: 0;
}

.hiddenpinimage {
    position: absolute;
    z-index: -1;
}

/* Paragraphs
--------------------------------------------- */

p {
	margin: 0 0 30px;
	padding: 0;
}

/* Quotes
--------------------------------------------- */

blockquote,
blockquote p {
	font-style: italic;
	margin: 0;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus {
	background: var(--wp--preset--color--background);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: var(--wp--preset--color--foreground);
	display: block;
	font-size: 1em;
	font-weight: var(--wp--custom--font-weight--semi-bold);
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid var(--wp--preset--color--tertiary);
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid var(--wp--preset--color--tertiary);
}

th {
	font-weight: var(--wp--custom--font-weight--semi-bold);
	padding: 0.5em;
}

/* Typography
--------------------------------------------- */

b,
strong {
	font-weight: var(--wp--custom--font-weight--semi-bold);
}

em,
i {
	font-style: italic;
}

small {
	font-size: var(--wp--preset--font-size--small);
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	word-wrap: break-word;
}

/* Site Inner
--------------------------------------------- */

.site-inner {
	clear: both;
	margin: 0 auto;
	max-width: 1240px;
	padding: 30px 20px 0;
}

.archive .site-inner {
	padding-bottom: 40px;
}

.page .site-inner,
.single .site-inner {
	max-width: 768px;
}

.first-block-align-full.full-width-content .site-inner {
	padding-top: 0;
}

/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 10px 0 0;
    max-width: 26px;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 30px;
}

.after-entry {
	margin-top: 50px;
}

.archive-description p {
	max-width: 728px;
}

.search .archive-description {
    display: none;
}

.author-box {
	background-color: var(--wp--preset--color--quaternary);
	border: 0;
	overflow: hidden;
	padding: 30px 20px;
}

.author-box p:last-of-type {
	margin-bottom: 0;
}

.author-box-content {
    overflow: hidden;
}

.breadcrumb {
	font-size: var(--wp--preset--font-size--x-small);
	margin-bottom: 5px;
}

.search .breadcrumb {
	font-size: var(--wp--preset--font-size--medium);
	margin-bottom: 20px;
}

.breadcrumb span.sep {
    margin: 0 3px;
}

.archive-description p:last-child {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.site-header .search-form {
	display: none;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.search-form {
	position: relative;
}

.search-form input {
    font-size: var(--wp--preset--font-size--x-small);
}

.search-form input[type="submit"] {
	background: transparent;
	background-color: inherit !important;
	background-image: url('../svg/icon-search.svg');
	background-size: 16px 16px;
	box-shadow: none;
	border: 0;
	border-radius: 0;
	clip: inherit;
	content: '';
	font-family: none;
	font-size: 0px;
	height: 16px;
	margin: 4px;
	opacity: 0.5;
	padding: 0;
	position: absolute;
	right: 5px;
	top: 8px;
	width: 16px;
}

.search-form input[type="submit"]:focus,
.search-form input[type="submit"]:hover {
	opacity: 0.5;
}

.site-header .search-form {
	margin-top: 10px;
	width: 100%;
}

/* Titles
--------------------------------------------- */

.entry-title a,
.sidebar .widget-title a {
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: var(--wp--preset--color--primary);
	text-decoration: underline;
}

.kicker,
.subheading,
.widget-title,
#reblex-widget-2 h3 {
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
    letter-spacing: 0.075em;
	margin-bottom: 15px;
	text-transform: uppercase;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: var(--wp--preset--font-size--x-small);
	margin-bottom: 0;
    margin-top: 10px;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget {
	font-size: var(--wp--preset--font-size--small);
	margin-bottom: 40px;
}

.widget p {
	margin-bottom: 20px;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

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

/* Featured Content
--------------------------------------------- */

.featured-content .widget-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
	padding-top: 33px;
	position: relative;
}

.featured-content .widget-title {
	position: absolute;
}

.featured-content .widget-wrap a {
	margin: 0;
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */

:focus:not(:focus-visible) {
	outline: none
}

:focus-visible {
	outline-style: dashed;
    outline-color: #000;
    outline-offset: 1px;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: var(--wp--preset--color--background);
	padding: 10px 20px;
}

.site-header .wrap {
	margin: 0 auto;
	min-height: 36px;
}

.site-header .wrap {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* Title Area
--------------------------------------------- */

.wp-custom-logo .title-area {
	max-width: 350px;
	width: 100%;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.wp-custom-logo .custom-logo-link {
	display: block;
}

.site-title {
	font-size: var(--wp--preset--font-size--large);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: 1;
	margin-bottom: 0;
}

.site-title a {
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

.home h1,
.site-description,
.wp-custom-logo .site-title {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
	color: var(--wp--preset--color--foreground);
	display: inline-block;
	font-size: var(--wp--preset--font-size--medium);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 12px;
	text-decoration: none;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: var(--wp--preset--color--primary);
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding: 0 0 10px 20px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: var(--wp--preset--color--background);
	display: inline-block;
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--regular);
	position: relative;
	width: auto;
	word-wrap: break-word;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.js .nav-primary {
	display: none;
}

.nav-primary .genesis-nav-menu .menu-item:hover > .sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-width: 0;
	box-shadow: none !important;
	color: var(--wp--preset--color--foreground);
	display: block;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: var(--wp--preset--color--primary);
}

.site-header .menu-toggle {
	line-height: 20px;
	margin-bottom: 0;
	margin-right: -1px;
	margin-top: 0;
	padding: 10px;
	position: relative;
	z-index: 1000;
}

.site-header .menu-toggle::before {
	content: ' ';
	background-image: url('../svg/icon-menu-open.svg');
	background-size: 20px 20px;
	float: right;
	height: 20px;
	width: 20px;
}

.site-header .menu-toggle.activated::before {
	content: ' ';
	background-image: url('../svg/icon-menu-close.svg');
	background-size: 20px 20px;
	height: 20px;
	width: 20px;
}

.site-header .sub-menu-toggle {
	align-items: center;
	display: flex;
	float: right;
	height: 25px;
	padding: 5px;
	position: absolute;
	right: 4px;
	top: 11px;
	z-index: 100;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.site-header .sub-menu-toggle::before {
	content: ' ';
	background-image: url('../svg/icon-down.svg');
	background-repeat: no-repeat;
	background-size: 15px 8px;
	display: inline-block;
	height: 8px;
	width: 15px;
}

.site-header .sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	padding: 10px 0;
	position: relative;
	width: 100%;
}

.nav-primary a {
	margin: 5px;
	padding: 10px;
}

.nav-primary .sub-menu a {
	margin: 0;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin: 0 0 20px;
}

.nav-secondary .genesis-nav-menu {
	line-height: var(--wp--custom--line-height--body);
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	padding: 8px 12px;
}


/* Content Area
---------------------------------------------------------------------------- */

/* Entry Content
--------------------------------------------- */

.content {
	position: relative;
}

.entry {
	margin-bottom: 40px;
}

.last-block-align-full .entry {
	margin-bottom: 0;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 35px;
	padding-left: 30px;
}

.entry-content ol > li {
	list-style-type: decimal;
	margin: 5px 0;
}

.entry-content ul > li {
	list-style-type: disc;
	margin: 5px 0;
}

.entry-content ul li::marker {
    color: var(--wp--preset--color--primary);
    font-size: 120%;
    line-height: 1;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: var(--wp--preset--color--quaternary);
}

.entry-content ol > li {
	counter-increment: my-steps;
	list-stye-type: none;
	margin-bottom: 10px;
	position: relative;
}

.entry-content ol li::marker {
    color: transparent;
}

.entry-content ol li::before {
	background-color: var(--wp--preset--color--primary);
    border-radius: 50%;
	color: var(--wp--preset--color--foreground);
    content: counter(my-steps) " "!important;
    counter-increment: item;
	font-size: var(--wp--preset--font-size--xx-small);
    font-weight: var(--wp--custom--font-weight--semi-bold);
	height: 18px;
	left: -27px;
	position: absolute;
    text-align: center;
	top: 5px;
	width: 18px;
}

/* Archives
--------------------------------------------- */

.archive .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.archive article {
	margin-bottom: 0;
}

.archive .entry-title {
    font-size: var(--wp--preset--font-size--medium);
}

.archive .entry-content p,
.archive .entry-footer {
	display: none !important;
    margin: 0;
}

.archive article img,
.archive article picture {
	display: block;
	margin-bottom: 8px;
}

.archive-widgets {
	clear: both;
}

.archive.paged .archive-description p,
.archive.paged:not(.search) .content::before,
.archive.paged .filters {
	display: none;
}

/* web stories */
.post-type-archive-web-story .entry-content {
    display: none;
}

/* Entry Meta
--------------------------------------------- */

.page .entry-header,
.single-post .entry-header {
    margin-bottom: 20px;
}

.entry-header p {
	margin-bottom: 0;
}

.first-block-align-full.full-width-content .entry-header {
	margin-bottom: 0;
}

p.entry-meta {
	font-size: var(--wp--preset--font-size--small);
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 0;
}

.entry-footer .entry-meta {
	border-top: 0;
	padding-top: 0;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
    margin: 40px auto 0;
	overflow: hidden;
    text-align: center;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.pagination li {
	display: inline;
}

.pagination a {
	background-color: var(--wp--preset--color--quaternary);
	color: var(--wp--preset--color--foreground);
	cursor: pointer;
	display: inline-block;
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	margin: 5px;
	padding: 8px 12px;
	text-decoration: none;
}

.pagination a:focus,
.pagination a:hover,
.pagination .active a {
	background-color: var(--wp--preset--color--foreground);
	color: var(--wp--preset--color--background);
	opacity: 1;
}

/* Entry Comments
--------------------------------------------- */

.entry-comments {
	margin-bottom: 50px;
	margin-top: 80px;
}

.entry-pings,
.entry-pings .reply {
	display: none;
}

.entry-comments h3:first-of-type {
    display: none;
}

.comment-reply-title {
	display: block !important;
	margin-bottom: 10px;
}

#cancel-comment-reply-link {
	display: block;
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--regular);
  line-height: var(--wp--custom--line-height--body);
	margin-top: 10px;
}

#cancel-comment-reply-link::before {
  background-image: url(../svg/icon-menu-close.svg);
  background-size: 12px 9px;
  content: "";
  display: inline-block;
  height: 9px;
  margin-right: 5px;
  width: 12px;
}

.comment-respond {
	background-color: var(--wp--preset--color--quaternary);
    clear: both;
    margin: 30px 0 80px;
    padding: 25px 20px 1px;
}

.comment-respond,
.comment-reply {
	font-size: var(--wp--preset--font-size--x-small);
}

form#commentform a {
    text-decoration: underline;
}

.comment-respond input[type=submit] {
    margin-top: 10px;
}

.comment p {
	margin: 0 0 10px;
}

.comment-list li {
	padding: 15px 0 0 15px;
	position: relative;
}

.comment-list li.depth-1:first-of-type::before {
	content: "Comments";
	font-family: var(--wp--preset--font-family--secondary);
	font-size: var(--wp--preset--font-size--large);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	position: absolute;
	top: -45px;
}

.comment-reply {
	margin-bottom: 30px;
}

.comment-reply a::before {
	background-image: url('../svg/icon-reply.svg');
    background-size: 12px 9px;
    content: "";
    display: inline-block;
    height: 9px;
	margin-right: 5px;
    width: 12px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	border-bottom: 1px solid var(--wp--preset--color--tertiary);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 5px;
}

span.comment-author-name {
    font-weight: var(--wp--custom--font-weight--semi-bold);
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond label {
	display: block;
	font-weight: var(--wp--custom--font-weight--semi-bold);
	margin-bottom: 5px;
}

.comment-header p {
	margin-bottom: 0;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 10px;
}

.comment-time {
	font-size: var(--wp--preset--font-size--xx-small);
}

.comment-list li.bypostauthor article {
	background-color: var(--wp--preset--color--quaternary);
	margin-bottom: 25px;
    padding: 25px 25px 1px;
}

.comment-list li.bypostauthor .comment-header {
	border-bottom: 0;
}

p.comment-form-subscriptions {
    margin-left: -8px;
}

/* Topbar
---------------------------------------------------------------------------- */

.topbar {
	background-color: var(--wp--preset--color--quaternary);
	clear: both;
	padding: 10px 20px;
	text-align: center;
}

.topbar .wrap {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0 auto;
}

.topbar p {
	margin-bottom: 0;
}

.topbar .widget {
	font-size: var(--wp--preset--font-size--x-small);
	margin-bottom: 5px;
}

.topbar .widget:last-child {
	margin-bottom: 0;
}

.topbar .alignleft,
.topbar .alignright {
	margin: 0;
}

/* After Header
---------------------------------------------------------------------------- */

.after-header {
	clear: both;
    padding: 0 20px;
}

.after-header .widget {
	margin-bottom: 0;
}

/* Sidebar
---------------------------------------------------------------------------- */

.sidebar .widget {
	margin-bottom: 40px;
}

/* Before Footer Widgets
---------------------------------------------------------------------------- */

.before-footer-widgets {
	background-color: var(--wp--preset--color--quaternary);
	clear: both;
	padding: 40px 20px;
}

.last-block-align-full .before-footer-widgets {
	border-top: 0;
}

.before-footer-widgets .wrap {
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
}

.before-footer-widgets .widget {
	flex-basis: 100%;
	margin-bottom: 0;
}

/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	background-color: var(--wp--preset--color--quaternary);
	clear: both;
	padding: 40px 20px;
}

.footer-widgets .wrap {
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
}

.footer-widgets .widget {
	flex-basis: 100%;
	margin-bottom: 0;
}

/* After Footer Widgets
---------------------------------------------------------------------------- */

.after-footer-widgets {
	clear: both;
	padding: 40px 20px 0;
}

.after-footer-widgets .widget:last-of-type {
	margin-bottom: -40px;
}

/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	background-color: var(--wp--preset--color--background);
	clear: both;
	font-size: var(--wp--preset--font-size--x-small);
	line-height: var(--wp--custom--line-height--body);
	padding: 40px 20px;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (max-width: 359px) {
	
	.after-footer-widgets,
	.before-footer-widgets,
	.footer-widgets,
	.site-footer,
	.site-inner,
	.topbar {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.after-header,
	.site-header {
		padding-left: 10px;
		padding-right: 10px;
	}
	
}

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

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


	
}

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


	
}

@media only screen and (min-width: 500px) {
	
	.site-header .search-form {
		width: 240px;
	}

	table {
		table-layout: auto;
		word-break: normal;
	}
	
	.entry-content .search-form {
		width: 50%;
	}

}


@media only screen and (min-width: 600px) {
	
	.comment-respond input[type="email"],
	.comment-respond input[type="text"],
	.comment-respond input[type="url"] {
		width: 50%;
	}
	
	.comment-header {
		flex-direction: row;
	}
	
}

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



}

@media only screen and (min-width: 768px) {
	
	.content {
		margin-left: auto;
		margin-right: auto;
		max-width: 728px;
	}
	
	.before-footer-widgets .wrap,
	.footer-widgets .wrap {
		flex-direction: row;
	}
	
	.before-footer-widgets .widget,
	.footer-widgets .widget {
		margin-bottom: 0;
	}
	
	.author-box {
		padding: 30px;
	}

	.archive.full-width-content .content {
        max-width: 100%;
        width: 100%;
    }
	
	.archive .content {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-gap: 20px;
	}
	
	.comment-respond {
		padding: 30px 30px 6px;
	}
	
	.featured-content .widget-wrap {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	
}

@media only screen and (min-width: 860px) {
	
	.site-header {
		padding: 20px;
	}
	
	.nav-primary .genesis-nav-menu {
		align-items: center;
		display: flex;
	}

	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}
	
	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a,
	.genesis-nav-menu .sub-menu .menu-item {
		width: 210px;
	}

	.genesis-nav-menu .sub-menu {
		background-color: var(--wp--preset--color--background);
		border: none;
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
		opacity: 0;
		padding: 0;
		position: absolute;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -39px 0 0 210px;
	}
	
	.nav-primary .menu-item.menu-item-has-children > a > span {
		align-items: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
	}
	
	.nav-primary .menu-item.menu-item-has-children > a > span::after {
		border-top: 1px solid;
		border-right: 1px solid;
		content: "";
		height: 6px;
		margin: 0 -3px 0 8px;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		width: 6px;
	}
	
	.nav-primary .sub-menu .menu-item.menu-item-has-children > a > span {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	
	.nav-primary .sub-menu .menu-item.menu-item-has-children > a > span::after {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.js .nav-primary {
		display: block;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	.nav-primary {
		clear: none;
		padding: 0;
		width: auto;
	}

	.nav-primary .genesis-nav-menu a {
		margin: 0 5px;
		padding: 12px 16px;
	}
	
	.genesis-nav-menu .sub-menu {
		margin-left: 5px;
	}
	
	.nav-primary .genesis-nav-menu .sub-menu a {
		margin: 0;
		padding: 16px;
	}
	
	.site-header .search-form {
		display: block;
		margin-left: 20px;
		margin-top: 0;
		width: 200px;
	}
	
	.search-form input[type="submit"] {
		top: 9px;
	}
	
	.after-header {
		display: none;
	}

}

@media only screen and (max-width: 1023px) {
    
    .sidebar {
        display: none;
    }

}

@media only screen and (min-width: 1024px) {
	
	.page .site-inner,
	.single .site-inner {
		max-width: 1240px;
	}

	.before-footer-widgets .wrap,
	.footer-widgets .wrap,
	.site-header .wrap,
	.topbar .wrap {
		max-width: 1200px;
	}

	.content {
		float: left;
		max-width: 65%;
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
	}

	.sidebar {
		float: right;
		max-width: 300px;
	}

	.sidebar-content .sidebar {
		float: left;
	}
	
	.sidebar .featured-content .widget-wrap {
		grid-template-columns: 1fr 1fr;
	}
	
	.sidebar .featured-content article {
		margin-bottom: 0;
	}
	
	.sidebar .featured-content .entry-title {
		font-size: var(--wp--preset--font-size--small);
		line-height: var(--wp--custom--line-height--body);
		margin-bottom: 0;
	}
	
	.sidebar .featured-content article img,
	.sidebar .featured-content article picture {
		display: block;
		margin-bottom: 8px;
	}
	
	.sidebar .featured-content .entry-header {
		margin-bottom: 10px;
	}
	
}

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

	.content {
		max-width: 728px;
	}

	.sidebar {
		max-width: 336px;
	}
	
}

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

/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: var(--wp--preset--color--foreground) !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}