/*---------------------------------------------------------------------------------

	Theme Name: Hoffman
    Text Domain: hoffman
	Theme URI: https://andersnoren.se/teman/hoffman-wordpress-theme/
	Version: 2.1.2
	Description: Hoffman is a beautifully minimal, responsive and retina-ready theme for bloggers. It features a social icon menu, Jetpack support for infinite scroll, Block Editor support, two custom widgets, a full-width template, an archive template, editor styles, custom accent color support, custom background support, support for the gallery post format, and much more. Demo: https://andersnoren.se/themes/hoffman/
	Tags: blog, one-column, custom-colors, custom-menu, editor-style, featured-images, footer-widgets, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks
	Author: Anders Norén
	Author URI: https://andersnoren.se
	License: GNU General Public License version 2.0
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	Tested up to: 6.0
	Requires PHP: 5.4
	
	All files, unless otherwise stated, are released under the GNU General Public License
	version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

-----------------------------------------------------------------------------------

	0.	CSS Reset
	1.	Document Setup
	2.  Element Base
	3.  Helper Classes
	4.  Structure
	5.	Site Header
	6.	Navigation
	7.	Blog
	8.	Post Formats
	9.  Blocks
	10.	Post Content
	11.	Post Meta
	12.	Comments
	13.	Comment Respond
	14.	Pagination
	15.	Page & Page Templates
	16.	Site Footer
	17.	Site Credits
	18. Media Queries

----------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------------- */
html, body { 
	margin: 0; 
	padding: 0;
}

:root :where(.is-layout-flow) > * {
    margin-block-start: 5px;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	line-height: inherit;
	font-family: inherit;
	text-align: inherit;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

blockquote:before, blockquote:after {
	content: "";
}

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


/* -------------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------------- */


body {
	background-color: #fff;
	border: none;
	color: #333;
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-size: 18px;
	-webkit-text-size-adjust: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

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

img {
	display: block;
	height: auto;
	max-width: 100%;
}

.hidden { display: none; }
.left { float: left; }
.right { float: right; }

.fleft { float: left; }
.fright { float: right; }

::selection {
	background: #222;
	color: #FFF;
}

::-webkit-input-placeholder { color: #A9A9A9; }
:-ms-input-placeholder { color: #A9A9A9; }

.content-container:not(.remove-margin) {
	margin-top: 55px;
}

@media( min-width:1240px ) {
	.content-container.with_right_rail {
		display: grid;
		grid-template-columns:1fr 348px;
		gap: 60px;
	}
	.content-container.with_left_rail {
		display: grid;
		grid-template-columns:336px 1fr;
		gap: 65px;
	}
	.content-container.two_column .posts {
		display: grid;
		grid-template-columns:1fr 1fr;
		gap: 32px 54px;
	}
}

/* Clearing ---------------------------------- */

.clear { clear: both; }

.group:after,
.entry-content:after,
.widget-content:after,
[class*="__inner-container"]:after {
	clear: both;
	content: "";
	display: block;
}

/* Transitions ------------------------------- */

body a,
button, 
.button, 
.faux-button, 
:root .wp-block-button__link, 
:root .wp-block-file__button, 
input[type="button"], 
input[type="reset"], 
input[type="submit"],
.tagcloud a:after {
	transition: all .1s ease-in-out;
}

.post-title a,
.more-link,
.post-content input[type="submit"],
.post-content input[type="reset"],
.post-content input[type="button"],
.post-quote cite,
.search-button,
.search-field,
.comment-form input,
.comment-form textarea,
.flex-direction-nav a,
.flex-direction-nav a:before,
.flex-direction-nav a:after,
.post-nav a h5,
.widget_hoffman_recent_posts a .title,
.widget_hoffman_recent_posts a .genericon,
.widget_hoffman_recent_comments a .genericon,
#infinite-handle span,
.flickr_badge_image a,
.sticky .is-sticky,
.sticky .is-sticky:before,
.sticky .is-sticky:after,
.main-menu ul > .menu-item-has-children::after,
.main-menu ul > .page_item_has_children::after {
	transition: all .2s ease-in-out;
}

.nav-toggle .bar,
.nav-toggle p {
	transition: all .4s ease-in-out;
}

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

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	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. */
}

/* -------------------------------------------------------------------------------- */
/*	2.	Element Base
/* -------------------------------------------------------------------------------- */


p,
blockquote,
ul,
ol,
li,
address,
dl,
pre {
	line-height: 160%;
	margin-bottom: 1em;
}

/* Headings ---------------------------------- */

h1, h2, h3, h4, h5, h6 {
	margin: 20px 0 20px;
	line-height: 120%;
}

h1, h5 {
	font-weight: 700;
}

h2, h3, h4 {
	font-weight: 400;
}

h1 { font-size: 48px; font-family: 'ABCMonumentGrotesk', sans-serif; }
h2 { font-size: 36px; font-family: 'BerlingskeSerifTx', serif;}
h3 { font-size: 30px; font-family: 'BerlingskeSerifTx', serif;}
h4 { font-size: 24px; font-family: 'BerlingskeSerifTx', serif;}
h5 { font-size: 24px; font-family: 'ABCMonumentGrotesk', sans-serif;}
.serif-font { font-family: 'BerlingskeSerifTx', serif; }
.sans-serif-font { font-family: 'ABCMonumentGrotesk', sans-serif; }

h6 {
	font-size: 0.8em;
	font-weight: 600;
	margin-bottom: 20px;
}

/* Address ----------------------------------- */

address {
	padding: 14px 20px !important;
	background: var(--wp--preset--color--gray-100);
	font-family: 'ABCMonumentGrotesk', sans-serif;;
	font-size: 0.85em;
	color: #666;
	letter-spacing: 0.5px;
	border-radius: 0;
	border-bottom-width: 1px;
	border-right-width: 1px;
}
.wc-block-components-address-card__edit {
    font-weight: bold;
    text-decoration: underline;
}

/* Quotes ------------------------------------ */
blockquote.wp-block-quote {
	border-left:none;
}
body .main blockquote {
	margin: 0;
    padding: 30px 0px;
	color:rgba(104, 0, 251, 1);
	font-style: italic;
	position: relative;
    font-family: 'ABCMonumentGrotesk', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1px;
    -webkit-font-smoothing: antialiased;
}
.wp-block-quote {
    padding-left: 0;
}
blockquote p {
    font-size: 36px;
    line-height: 120%;
}
blockquote p:last-of-type {
	margin-bottom: 0;
}

cite {
	font-family: 'ABCMonumentGrotesk', sans-serif;;
	font-style: normal;
}
blockquote.wp-block-quote cite, figure.wp-block-pullquote cite {
	letter-spacing: 0;
    margin-top: 15px;
    line-height: 120%;
    font-weight: 400;
    font-size: 18px;
    color: rgba(116, 115, 119, 1);
    display: block;
	text-transform: none;
}

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

ul,
ol {
	margin: .5em 0 .5em 2em;
}

li {
	margin: .5em 0;
}

/* Definition List --------------------------- */

dl { line-height: 160%; }

dl dt { 
	font-size: 0.8em;
	font-weight: 700; 
	text-transform: uppercase;
	letter-spacing: 1px;
}

dd + dt { margin-top: 0.5em; }

/* Separator --------------------------------- */

hr {
	display: block;
	width: 96px;
	height: 3px;
	background: #ddd;
	background: rgba( 0, 0, 0, 0.1 );
	border: none;
}

/* Monospace --------------------------------- */

code, 
kbd,
pre,
tt {
	font-size: 15px;
	background: #EEE;
	font-family: 'ABCMonumentGrotesk', sans-serif;;
}

kbd,
code,
tt {
	padding: 5px;
	border-radius: 3px;
}

pre {
	background-color: #FAFAFA;
	border: 1px solid #DDD;
	color: #333;
	line-height: 140%;
	padding: 2% 2.5%;
	word-wrap: break-word;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
}

/* Post Media -------------------------------- */

figure {
	margin: 0;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption img { display: block; }

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

.wp-caption-text,
.gallery-caption,
figcaption {
	color: #666 !important;
	font-size: 14px !important;
	line-height: 1.25;
	margin: 0;
	padding-top: 8px;
	width: 100%;
}
figcaption .credit {
	font-style: italic;
}
@media ( min-width: 601px ) {
	figcaption .credit {
		float: right;
		padding: 0 0 4px 30px;
	}
}
@media ( max-width: 600px ) {
	figcaption .credit {
		padding: 5px 0 0;
		display: block;
	}
}

.gallery-caption {
	font-size: 16px;
	line-height: 1.5;
}
.Enhancement-item .Figure p {
	margin-bottom: 0;
}
.Figure-credit {
	color: #666;
	font-size: 14px;
	line-height: 1.25;
	padding-top: 4px;
	text-align: right;
	font-style: italic;
}
.Figure-credit + figcaption {
	padding-top: 5px;
}

/* Jetpack Tiled Gallery */

.tiled-gallery .tiled-gallery-caption {
	font-family: 'ABCMonumentGrotesk', sans-serif;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
	color: #666;
	padding: 10px;
}

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

table {
	border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
	font-size: 0.9em;
	margin: 2em auto;
    width: 100%;
}

tbody { 
	border-top: 1px solid #eee; 
    border-bottom: 1px solid #eee;
}

th,
td {
	padding: 10px;
	margin: 0;
	overflow: visible;
	line-height: 120%;
	border-bottom: 1px solid #eee;
}

tr:last-child td { border-bottom: none; }

caption {
	color: #444;
	text-align: center;
	padding: 2%;
}

thead {
	vertical-align: bottom;
	white-space: nowrap;
}

th {
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666;
}

/* Forms ------------------------------------- */

/* FIELDSETS */

fieldset {
	padding: 25px;
	border: 2px solid #eee;
	margin-bottom: 1em;
}

fieldset legend {
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-size: 0.9rem;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #666;
	padding: 10px;
	background: #928452;
	color: #fff;
}

/* INPUTS */

label {
	font-family: 'ABCMonumentGrotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
}

input,
textarea { 
	line-height: 125% !important;
	font-family: 'ABCMonumentGrotesk', sans-serif; 
	font-size: 16px !important;
	margin: 0;
}

input[type="file"] {
	padding: 12px;
	background: #FAFAFA;
	border: 1px solid #eee;
	border-radius: 3px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
    background-color: #FFFFFF;
    border: 0.5px solid #747377 !important;
    border-radius: 0 !important;
    color: #58575B !important;
	padding: 20px;
    transition: border 0.1s ease-in-out;
    -webkit-appearance: none;
    width: 100%;
}

.woocommerce-Input {
    padding: 20px !important;
}
textarea { 
	line-height: 125%  !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #2C2A2F  !important;
        border: 0.75px solid #2C2A2F  !important;
	outline: none;
}

/* BUTTONS */

button,
.button,
.faux-button,
:root .wp-block-button__link,
:root .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-woocommerce-cart-totals-block a {
	background-color: #19083A;
	color: #fff;
	border: none;
	border-radius: 0;
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.25;
	margin: 0;
	padding: 13px 18px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-appearance: none;
}
.wp-block-woocommerce-cart-totals-block a {
	display: block;
	width: 100%;
}
a.wp-block-button__link.has-small-font-size.wp-element-button {
    padding: 8px 14px;
}
a.wp-block-button__link.has-large-font-size.wp-element-button {
    padding: 12px 20px;
}
.is-style-outline .wp-block-button__link,
.wp-block-button__link.is-style-outline {
	background-color: transparent;
	border: 2px solid #7856FF;
	color: #212121;
	font-weight: 700;
	padding: 10px 18px;
}

input[type="submit"] + input[type="reset"],
input[type="submit"] + input[type="reset"],
input[type="reset"] + input[type="submit"],
input[type="reset"] + input[type="button"],
input[type="button"] + input[type="button"],
input[type="button"] + input[type="reset"],
input[type="button"] + input[type="submit"] {
	margin-left: 8px;
}

button:hover,
.button:hover,
.faux-button:hover,
:root .wp-block-button__link:hover,
:root .wp-block-file__button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.wp-block-woocommerce-cart-totals-block a:hover {
	cursor: pointer;
	background-color: #240076;
	color: #fff;
}

button:focus,
.button:focus,
.faux-button:focus,
:root .wp-block-button__link:focus,
:root .wp-block-file__button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	cursor: pointer;
	background: #2D2F24;
	color: #fff;
}

.is-style-outline .wp-block-button__link:hover,
.wp-block-button__link.is-style-outline:hover {
	border: 2px solid #240076;
	background-color: #7856FF;
	color:#fff;
}

.is-style-outline .wp-block-button__link:focus,
.wp-block-button__link.is-style-outline:focus {
	border: 2px solid #19083A;
	background-color: #fff;
	color:#212121;
}
.wp-block-button.purple-button a{
	border: 2px solid #7856FF;
}
.wp-block-button.purple-button a:hover {
    background-color: #19083A !important;
	border: 2px solid #19083A;
}
.wp-block-button.purple-button a:focus {
    border: 2px solid #19083A;
}
:root .is-style-outline .wp-block-button__link:hover,
:root .wp-block-button__link.is-style-outline:hover {
	border-color: transparent;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
	background: var(--wp--preset--color--purple-200);
	border-radius: 0;
	color: white;
	font-size: 12px;
	padding: 11px 16px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
	background: var(--wp--preset--color--purple-500);
	color: white;
}
strong + a.wcs-switch-link.button  {
	margin-left: 15px;
}
.wc-memberships-for-teams-team-area-action.button.view,
.woocommerce-button.button.view {
	display: block;
	text-align: center;
}
.woocommerce-form-login__submit,
.woocommerce-form-register__submit {
	font-size: 14px !important;
	padding: 13px 20px !important;
	width: 100%;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	display: block;
}
.woocommerce-info {
	border-top-color: var(--wp--preset--color--purple-200);
}
.woocommerce-info::before {
	color: var(--wp--preset--color--purple-200);
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
	top: 1.1em;
}


/* -------------------------------------------------------------------------------- */
/*	3.	Helper Classes
/* -------------------------------------------------------------------------------- */


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

.search-form { 
	position: relative; 
}

.search-form:before {
	align-items: center;
	color: #767676;
	content: '\f400';
    display: flex;
    font: normal 32px/1 'Genericons';
	justify-content: center;
	pointer-events: none;
	position: absolute;
		bottom: 0;
		right: 0;
		top: 0;
	width: 60px;
}

.search-form .search-field {
	background-color: #eee;
	border: none;
	font-size: 16px;
	padding-right: 60px;
	width: 100%;
}

.search-form input[type="submit"] {
	background: none;
	display: block;
	-webkit-appearance: none;
	position: absolute;
		bottom: 0;
		right: 0;
		top: 0;
	text-indent: -99999px;
	width: 60px;
}

/* Social Menu ------------------------------- */

.menu-social {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 0 0 -6px;
}

.menu-social li { 
	line-height: 1;
	margin: 4px 0 4px 8px;
}

.menu-social a {
	display: block;
	width: 32px;
	height: 32px;
	background: #333;
	color: #fff;
	border-radius: 999px;
	position: relative;
}

.menu-social a:hover { 
	background-color: #928452; 
	color: #fff;
}

.menu-social li a::before {
	content: '\f408';
	display: inline-block;
	font-family: 'Genericons';
	font-size: 16px;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
	-webkit-font-smoothing: antialiased;
}

.menu-social li a[href*="codepen.io"]::before { content: '\f216'; }
.menu-social li a[href*="dribbble.com"]::before { content: '\f201'; }
.menu-social li a[href*="facebook.com"]::before { content: '\f204'; }
.menu-social li a[href*="flickr.com"]::before { content: '\f211'; }
.menu-social li a[href*="github.com"]::before { content: '\f200'; }
.menu-social li a[href*="instagram.com"]::before { content: '\f215'; }
.menu-social li a[href*="linkedin.com"]::before { content: '\f207'; }
.menu-social li a[href*="pinterest.com"]::before { content: '\f210'; }
.menu-social li a[href*="plus.google.com"]::before { content: '\f206'; }
.menu-social li a[href*="tumblr.com"]::before { content: '\f214'; }
.menu-social li a[href*="twitter.com"]::before { content: '\f202'; }
.menu-social li a[href*="vimeo.com"]::before { content: '\f212'; }
.menu-social li a[href*="wordpress.org"]::before,
.menu-social li a[href*="wordpress.com"]::before { content: '\f205'; }
.menu-social li a[href*="youtube.com"]::before { content: '\f213'; }


/* -------------------------------------------------------------------------------- */
/*	4.	Structure
/* -------------------------------------------------------------------------------- */


/* Sections ---------------------------------- */

.section {
	width: 100%;
	padding: 80px 0;
	position: relative;
}

.section-inner {
	display: block;
	margin: 0 auto;
	position: relative;
}

.section-inner.thin { width: 700px; }

.medium-padding { padding: 60px 0; }
.small-padding { padding: 45px 0; }
.tiny-padding { padding: 30px 0; }

.bg-light { background: #fafafa; }
.bg-dark { background: #2d2d2d; }
.bg-gold { background: #928452; }

/* Wrapper ----------------------------------- */

.wrapper {
	width: 1440px;
	max-width: calc(100% - 90px);
	margin: 0 auto;
	position: relative;
	left: 0;
}

/* Grids ------------------------------------- */

.one-half,
.one-third,
.two-thirds { 
	float: left; 
	margin-left: 5%;
}

.one-half { width: 47.5%; }
.one-third { width: 30%; }
.two-thirds { width: 65%; }

.one-half:first-child,
.one-third:first-child,
.two-thirds:first-child { 
	margin-left: 0;
}


/* -------------------------------------------------------------------------------- */
/*	5.	Site Header
/* -------------------------------------------------------------------------------- */


.header { 
	position: relative;
}

.header-titles {
	text-align: center;
	padding: 0 25px;
	width: 100%;
}

.nav-toggle,
.header .menu-social {
	flex-shrink: 0;
	max-width: 25%;
	width: 200px;
}

.blog-title {
	font-size: 2em;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 0;
	text-transform: uppercase;
}

.blog-title a { 
	text-decoration: none;
}

.blog-description {
	color: #666;
	line-height: 1.25;
	margin: 15px 0 0;
}

/* SITE LOGO */

.blog-logo {
	display: flex;
	justify-content: center;
}

.blog-logo img {
	max-height: 80px;
}

/* Nav Toggle -------------------------------- */

.nav-toggle,
button.nav-toggle { 
	background-color: transparent;
	color: inherit;
	display: none;
    padding: 20px 0;
	position: relative;
}

button.nav-toggle:hover {
	background-color: transparent;
}

.nav-toggle.show-desktop { display: block; }

.nav-toggle .bars {
	height: 10px;
	width: 15px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -5px;
}

.nav-toggle .bar {
	width: 15px;
	height: 2px;
	background: currentColor;
	position: absolute;
	left: 0;
	top: 0;
}

.nav-toggle .bar:nth-child(2) { top: 4px; }
.nav-toggle .bar:nth-child(3) { top: 8px; }

.nav-toggle p {
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 0 24px;
	text-transform: uppercase;
}

/* ACTIVE STATE */

.nav-toggle.active { 
	color: #928452; 
}

.nav-toggle.active .bar:nth-child(1),
.nav-toggle.active .bar:nth-child(3) { 
	top: 4px; 
}

.nav-toggle.active .bar:nth-child(1) { transform: rotate( 45deg ); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: rotate( -45deg ); }

.nav-toggle .close,
.nav-toggle.active .menu { 
	display: none; 
}

.nav-toggle.active .close { 
	display: block; 
}

/* Header Social menu ------------------------ */

.header .menu-social {
	justify-content: flex-end;
}

/* No JavaScript Adjustments ----------------- */

.no-js .nav-toggle { display: none; }
.no-js .navigation { display: block; }


/* Page Title */

/*color*/
.page-header-bg-gray{
	background: #F8F8FC;
}
.page-header-bg-blue{
	background: #063ACB;
}
.page-header-bg-dark{
	background: #19083A;
	color: white;
}
.page-header-bg-gray .option-main-menu .active a {
	border-bottom-color: #F8F8FC;
}
.page-header-bg-blue .option-main-menu .active a {
	border-bottom-color: #063ACB;
}
.page-header-bg-dark .option-main-menu .active a {
	border-bottom-color: white;
}
.page-header-bg-dark h1{
	color: white;
}
.option-submenu a:hover {
	background: #f5f5f5;
}
.page-header-bg-gray .option-submenu li:hover > a , .page-header-bg-blue .option-submenu li:hover > a {
	background: rgba(45, 47, 36, 0.2);
}
.page-header-bg-gray .option-submenu li:active > a, .page-header-bg-blue .option-submenu li:active > a{
	background: rgba(45, 47, 36, 1);
	color:white;
}
.page-header-bg-dark ul.option-submenu.submenu{
	background:rgba(25, 8, 58, 1);
	color:white;
}
.page-header-bg-dark .option-submenu li:hover > a {
	background: rgba(255, 255, 255, 0.2);
}
.page-header-bg-dark .option-submenu li:active > a{
	background: white;
	color:rgba(25, 8, 58, 1);
}
/*option main*/
.option-menu-container {
	border-bottom: solid #75776B 1px;
	border-top: solid #75776B 1px;
}
ul.option-main-menu.main-menu {
	padding:0;
	margin: auto;
	width: fit-content;
}
.option-main-menu > li > a {
	padding: 16px 20px;
}
.option-main-menu > li:first-child {
	border-left: solid #75776B 1px;
}
.option-main-menu>li{
	border-right: solid #75776B 1px;
}
.option-main-menu a {
	font-size: 20px;
	line-height: 150%;
}
.option-main-menu .active a {
	border-bottom: 5px solid;
	padding-bottom: 13px !important;
	font-weight: bold;
}
.page-header-inner {
	margin: auto;
	padding-bottom:30px;
}
.page-header-subhead{
	margin:auto;
	text-align:center;
	line-height: 130%;
	font-size: 24px;
}
.page-header-bg-blue .option-menu-container {
	background: white;
}
.page-header-bg-blue .post-title,.page-header-bg-blue .page-header-subhead{
	color:white;
}
/* Submenu styling */
ul.option-submenu.submenu {
	padding: 20px;
	border-radius: 5px;
}
.option-submenu {
	opacity:0;
	min-width: 200px;
	background: white;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	z-index: 2;
}

/* Show submenu on hover */
.option-menu > li:hover > .option-ssubmenu {
	display: block;
}

/* -------------------------------------------------------------------------------- */
/*	6.	Navigation
/*  Completely replacing this with custom styling - Adam
/* -------------------------------------------------------------------------------- */

#site-header .menu {
	list-style: none;
	margin: 0;
	gap: 0;
}
#site-header .menu li {
	font-family: ABCMonumentGrotesk, Sans-Serif;
	font-weight: 400;
	font-size: 18px;
	leading-trim: none;
	line-height: 150%;
	text-align: center;
}
#site-header .menu li a {
	display: block;
	padding: 10px 18px;
}
#utility-nav .wrapper {
	justify-content: flex-end;
}
@media ( max-width: 780px ) {
	#site-header .menu li a {
		padding: 10px 0;
	}
	#utility-nav .wrapper {
		margin: 0;
		max-width: 100%;
		padding: 0 15px;
	}
	#menu-item-4402231116085,
	#menu-item-4402231117346 {
		display: none;
	}
}
#utility-nav .menu li {
	font-size: 16px;
}
#utility-nav .wc-block-mini-cart__button {
	padding: 0;
	position: relative;
	top: 1px;
}
#menu-utility-navigation li:last-of-type {
	background: var(--wp--preset--color--purple-300);
}
#utility-nav .wp-block-search__button{
	border-width: 0px;
	border-style: none;
	font-size: 23px;
	padding: 0;
	position: relative;
	top: -1px;
}
#primary-nav {
	border-bottom: 3px solid #e3e5da;
	margin: 0;
	padding: 12px 0;
}
#primary-nav .wrapper {
	flex-wrap: nowrap;
	justify-content: space-between;
}
#primary-nav .menu li a {
	padding: 10px;
	border-bottom: 3px solid transparent;
}
#primary-nav .menu li a:hover {
	border-bottom: 3px solid var( --wp--preset--color--purple-300);
}
#primary-nav .custom-logo-link img {
	max-width: 250px;
	height: auto;
	padding: 5px 0;
}

/* Li is using .main-menu for the page navigation. I did remove the subnav styles for this, because we won't have a dropdown in this navigation */

.main-menu,
.main-menu ul,
.main-menu li {
	list-style: none;
	margin: 0;
}

.main-menu {
	display: flex;
	flex-wrap: wrap;
	font-size: 0.85em;
	margin-left: -23px;
	padding: 10px 0;
	position: relative;
}

.main-menu li {
	line-height: 1.25;
	position: relative;
}

.main-menu a {
	text-decoration: none;
}

.main-menu > li > a {
	display: inline-block;
	padding: 18px 18px;
}

.main-menu > .menu-item-has-children > a {
	padding-right: 36px;
	position: relative;
}

.main-menu > .menu-item-has-children > a::after {
	border: 5px solid transparent;
	border-top-color: currentColor;
	content: "";
	display: block;
	margin-top: -3px;
	position: absolute;
	right: 16px;
	top: 50%;
}


/* -------------------------------------------------------------------------------- */
/*	7.	Blog 
/* -------------------------------------------------------------------------------- */


/* Archive Header ---------------------------- */

.archive-header { 
	background-color: #eee; 
	padding: 35px 0;
	text-align: center;
}

.archive-title {
	color: #666;
	font-size: 0.8em;
	font-weight: 600;
	line-height: 120%;
	margin: 0;
}

.archive-header span { 
	color: #767676;
}

.archive-description {
	margin-top: 20px;
}

.archive-description p {
	color: #767676;
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-style: italic;
}

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

/* Post -------------------------------------- */
.post { 
	background-color: #fff; 
	position: relative;
}

.post + .post,
.infinite-wrap .post:first-child { 
	border-top: 1px solid #eee; 
}

/* Featured media ---------------------------- */

.featured-media a { 
	display: block; 
}

.featured-media img {
	margin: 0 auto; 
}

figcaption.caption {
	color: #767676;
	display: block;
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-size: 0.9em;
	font-style: italic;
	margin: 0 5%;
	text-align: center;
	padding: 25px 0 0;
}

/* Sticky Post ------------------------------- */

.sticky .is-sticky {
	background-color: #333;
	height: 44px;
	position: absolute;
		left: 0;
		top: 40px;
	text-decoration: none;
	width: 48px;
	z-index: 100;
}

.sticky .is-sticky:before,
.sticky .is-sticky:after {
	content: "";
	display: block;
	border: 11px solid transparent;
	position: absolute;
	right: -22px;
}

.sticky .is-sticky:before {
	top: 0;
	border-color: #333 transparent transparent #333;
}

.sticky .is-sticky:after {
	bottom: 0;
	border-color: transparent transparent #333 #333;
}

.sticky .is-sticky .genericon {
	color: #fff;
	font-size: 32px;
	height: 32px;
	position: absolute;
	left: 8px;
	top: 8px;
	width: 32px;
}

.sticky .is-sticky:hover {
	background-color: currentColor;
}

.sticky .is-sticky:hover:before {
	border-color: currentColor transparent transparent currentColor;
}

.sticky .is-sticky:hover:after {
	border-color: transparent transparent currentColor currentColor;
}

/* Post Header ------------------------------- */
.post-header{
	padding-top:30px
}

.post-title {
	font-family: 'BerlingskeSerifTx', serif;
	color: var(--wp--preset--color--gray-500);
	line-height: 120%;
	font-size: var(--wp--preset--font-size--7-xlarge);
	margin: 0;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 1.44px;
	text-align: center;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

.post-title a { 
	color: inherit; 
	text-decoration: none;
}

.post-title a:hover { 
	color: #928452; 
}

a.more-link {
	border: 2px solid currentColor;
	display: inline-block;
	font-family:'ABCMonumentGrotesk', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.15;
	padding: 12px 18px;
	text-decoration: none;
}

a.more-link:hover { 
	border-color: transparent;
	background-color: #928452; 
	color: #fff; 
}

/* POST META TOP */

.post-meta.top {
	display: block;
	margin-bottom: 20px;
	font-size: 0.9em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #767676;
	text-align: center;
}

.post-meta.top a { 
	color: #767676; 
	text-decoration: none;
}

.post-meta.top a:hover { color: #333; }

.post-meta.top .sep {
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-weight: 300;
	color: #ddd;
	margin: 0 8px;
}

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

.page-links {
	display: inline-block;
	margin-top: 20px;
	background: #fafafa;
	font-family:'ABCMonumentGrotesk', sans-serif;
	font-size: 0.9rem;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666;
}

.page-links span.title + span.sep { display: none; }

.page-links a {
	display: block;
	padding: 10px 12px;
	float: left;
	border: none;
}

.page-links > span {
	display: block;
	float: left;
	padding: 10px 12px;
}

.page-links > span { background: #ddd; color: #444; }
.page-links span.title { background: none; color: #666; }

.page-links a:hover { 
	background-color: #928452; 
	color: #fff;
}


/* -------------------------------------------------------------------------------- */
/*	8.	Post Formats
/* -------------------------------------------------------------------------------- */


/* Format: Gallery --------------------------- */

.flexslider { 
	position: relative; 
	overflow: hidden;
}

.flexslider ul,
.flexslider li {
	list-style: none;
	margin: 0;
}

.flexslider .slides li { 
	position: relative; 
}

.flexslider .slides li img {
	display: block;
	margin: 0 auto;
}

.flex-direction-nav {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	margin-top: -32px;
}

.flex-direction-nav a {
	display: block;
	width: 48px;
	height: 48px;
	background: #333 no-repeat center;
	background-size: auto 16px;
	position: absolute;
}

.flex-direction-nav .flex-prev {
	background-image: url(assets/images/icons/chevron-left-w_1x.png);
	left: 0;
}

.flex-direction-nav .flex-next { 
	background-image: url(assets/images/icons/chevron-right-w_1x.png);
	right: 0; 
}

.flex-direction-nav a:hover { background-color: #928452; }

.flexslider-caption {
	position: absolute;
	z-index: 100;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

.flexslider-caption p {
	display: inline-block;
	padding: 12px 14px 10px;
	background: #333;
	background: rgba(0,0,0,0.5);
	border-radius: 3px 3px 0 0;
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-style: italic;
	font-size: 0.9em;
	line-height: 1;
	color: #fff;
	position: relative;
	z-index: 1000;
}


/* -------------------------------------------------------------------------------- */
/*	9.	Blocks
/* -------------------------------------------------------------------------------- */


/* Block Base Margins ------------------------ */

:root *[class*="_inner-container"] > *:first-child { margin-top: 0; }
:root *[class*="_inner-container"] > *:last-child { margin-bottom: 0; }

.wp-block-archives,
.wp-block-button,
.wp-block-buttons,
.wp-block-calendar,
.wp-block-categories,
.wp-block-code,
.wp-block-columns,
.wp-block-cover,
.wp-block-cover-image,
.wp-block-embed,
.wp-block-file,
.wp-block-gallery,
.wp-block-group,
.wp-block-image,
.wp-block-latest-comments,
.wp-block-latest-posts,
.wp-block-media-text,
.wp-block-preformatted,
.wp-block-pullquote,
.wp-block-quote,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-search,
.wp-block-social,
.wp-block-tag-cloud,
.wp-block-verse,
.wp-block-video {
	margin-bottom: 20px;
	margin-top: 20px;
}

/* Block Editor Colors ----------------------- */

:root .has-accent-color { color: #928452; }
:root .has-accent-background-color { background-color: #928452; }

:root .has-black-color { color: #272F38; }
:root .has-black-background-color { background-color: #272F38; }

:root .has-dark-gray-color { color: #444; }
:root .has-dark-gray-background-color { background-color: #444; }

:root .has-medium-gray-color { color: #666; }
:root .has-medium-gray-background-color { background-color: #666; }

:root .has-light-gray-color { color: #888; }
:root .has-light-gray-background-color { background-color: #888; }

:root .has-white-color { color: #fff; }
:root .has-white-background-color { background-color: #fff; }

/* Block Editor Font Sizes ------------------- */

:root .has-small-font-size { font-size: .842em; }
:root .has-regular-font-size,
:root .has-normal-font-size { font-size: 1em; }

:root .has-large-font-size,
:root .has-larger-font-size {
	line-height: 1.45;
}

:root .has-large-font-size { font-size: 1.2em; }
:root .has-larger-font-size { font-size: 1.4em; }

/* Block: Audio ------------------------------ */

.wp-block-audio audio {
	width: 100%;
}

/* Block: Buttons ---------------------------- */

.wp-block-buttons .wp-block-button {
	margin-bottom: 0;
	margin-top: 0;
}

/* Block: Calendar --------------------------- */

.wp-block-calendar table,
.wp-block-calendar .wp-calendar-nav {
	font-family: 'ABCMonumentGrotesk', sans-serif;
}

.wp-block-calendar table {
	margin: 0;
}

.wp-block-calendar tbody td, 
.wp-block-calendar th {
	padding: 10px;
}

.wp-block-calendar .wp-calendar-nav {
	margin-top: 10px;
}

/* Block: Code ------------------------------- */

.wp-block-code code {
	background-color: transparent;
	padding: 0;
}

/* Block: Cover ------------------------------ */

.wp-block-cover,
.wp-block-cover-image {
	color: #fff;
}

.wp-block-cover-image .wp-block-cover-image-text, 
.wp-block-cover .wp-block-cover-text, 
section.wp-block-cover-image > h2 {
	font-size: 1.25em;
	font-weight: 400;
}

/* Block: Embed ------------------------------ */

.wp-block-embed figcaption {
	margin: 0;
}

/* Block: File ------------------------------- */

.wp-block-file {
	align-items: center;
	background: rgba( 0, 0, 0, 0.05 );
	border-radius: 4px;
	display: flex;
	font-family:'ABCMonumentGrotesk', sans-serif;
	justify-content: space-between;
	margin: 30px 0;
	padding: 20px;
}

.wp-block-file a:not(.wp-block-file__button) {
	color: inherit;
	font-weight: 700;
	text-decoration: none;
}

.wp-block-file a:not(.wp-block-file__button):hover {
	text-decoration: underline;
}

.wp-block-file__button {
	font-weight: 700;
	flex-shrink: 0;
	opacity: 1 !important;
}

/* Block: Gallery ---------------------------- */

.wp-block-gallery .blocks-gallery-image figcaption, 
.wp-block-gallery .blocks-gallery-item figcaption {
	margin: 0;
	padding-bottom: 10px;
}

/* Block: Image ------------------------------ */

.wp-block-image .aligncenter > figcaption, 
.wp-block-image .alignleft > figcaption, 
.wp-block-image .alignright > figcaption, 
.wp-block-image.is-resized > figcaption {
	display: block;
}

.wp-block-image figcaption {
	margin: 0;
	text-align: left;
}

/* Block: Media and Text --------------------- */

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

/* Block: Pullquote -------------------------- */
blockquote:not([data-hide-quotes])::before {
	display: block;
    content: "\201C";
    font-size: 72px;
    line-height: 20px;
}
figure.wp-block-pullquote {
    border: none;
    padding: 0;
    text-align: start;
}

/* STYLE: SOLID */

.wp-block-pullquote.is-style-solid-color.has-background {
	padding: 20px;
}

/* Block: Quote ------------------------------ */

.wp-block-quote.is-large, 
.wp-block-quote.is-style-large {
	padding: 30px 30px 30px 90px;		
}

.wp-block-quote blockquote {
	margin: 0;
}
.post-content blockquote.alignleft {
    float: left;
    margin: 20px 30px 20px 0;
    padding: 0;
}
.post-content blockquote.alignright {
    float: right;
    margin: 20px 0px 20px 30px;
    padding: 0;
}
.wp-block-quote.has-text-align-right,
.wp-block-quote.has-text-align-center {
	padding-left: 30px;
}

.wp-block-quote.has-text-align-center:before {
	content: none;
}

.wp-block-quote.has-text-align-right {
	padding-right: 90px;
}

.wp-block-quote.has-text-align-right:before {
	left: auto;
	right: 0;
}

/* STYLE: LARGE */

.wp-block-quote.is-large p, 
.wp-block-quote.is-style-large p {
	font-size: 1.25em;
	line-height: 1.5;
}

.wp-block-quote.is-large cite, 
.wp-block-quote.is-style-large cite {
	display: block;
	font-size: .8em;
	text-align: inherit;
}

/* Block: Separator -------------------------- */

hr.is-style-wide,
hr.is-style-dots {
	width: 100%;
}

hr.is-style-dots {
	background: none;
}


/* -------------------------------------------------------------------------------- */
/*	10.	Post Content
/* -------------------------------------------------------------------------------- */


.post-content {
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-size: 18px;
}

:root .post-content > *:first-child { margin-top: 0; }
:root .post-content > *:last-child { margin-bottom: 0; }

/* Alignment Classes ------------------------- */

.aligncenter,
.alignnone,
.alignwide,
.alignfull {
	margin: 50px auto;
}

.post-content .alignfull {
	margin-left: -250px;
	max-width: 1200px;
	width: 1200px;
}

.post-content .alignwide {
	max-width: 950px;
	width: 950px;
}

.post-content .alignleft,
.post-content .alignright {
	max-width: 400px;
}

.post-content .alignleft {
	float: left;
	margin-right: 1.5em;
}

.post-content .alignright {
	margin-left: 1.5em;
	float: right;
}

.post-content .aligncenter,
.post-content img.alignnone,
.post-content .aligncenter img,
.post-content .alignnone img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

/* Drop Cap ---------------------------------- */

p.has-drop-cap:not(:focus):first-letter {
    font-size: 5.4em;
	font-weight: 400;
	transform: translateY( .135em );
}

/* Entry Content Search Form ----------------- */

.post-content .search-form {
	margin-top: 30px;
}

.post-content .search-form .search-field {
	padding: 5% 15% 5% 5%;
}

.post-content .search-form:before,
.post-content .search-form input[type="submit"] {
	width: 15%;
}


/* -------------------------------------------------------------------------------- */
/*	11. Post Meta
/* -------------------------------------------------------------------------------- */


/* Post Meta Tabs ---------------------------- */

.tab-selector { 
	border-bottom: 2px solid #eee; 
}

.tab-selector ul,
.tab-selector li {
	list-style: none;
	margin: 0;
}

.tab-selector li {
	float: left;
	position: relative;
	bottom: -2px;
}

.tab-selector a {
	border-top: 2px solid #eee;
	border-right: 2px solid #eee;
	color: #767676;
	display: block;
	font-size: 0.8em;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1;
	padding: 16px;
	text-decoration: none;
	text-transform: uppercase;
}

.tab-selector li:first-child a { 
	border-left: 2px solid #eee; 
}

.tab-selector a:hover { 
	color: #666; 
}

.tab-selector a.active { 
	background: #fff; 
	color: #928452;
}

.tab-selector span,
.tab-selector .genericon { 
	display: inline;
	vertical-align: middle; 
}

/* TABS */

.post-meta-tabs { padding: 70px 0; }

.post-meta-tabs .tab { display: none; }
.post-meta-tabs .tab.active { display: block; }

/* Post Meta --------------------------------- */

.post-meta-item {
	padding-top: 20px;
	border-top: 1px solid #eee;
	margin-top: 20px;
	font-size: 0.85em;
	line-height: 120%;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666;
}

.post-meta-item a { 
	color: inherit; 
	text-decoration: none;
}

.post-meta-item a:hover { color: #928452; }

.post-meta-item:first-child {
	padding-top: 0;
	border-top: none;
	margin-top: 0;
}

.post-meta-item .genericon { 
	color: #928452; 
	margin-right: 5px;
}

/* Post Nav ---------------------------------- */

.post-nav a { 
	display: block;
	text-decoration: none;
}

.post-nav p {
	font-size: 0.7em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #767676;
	margin-bottom: 4px;
}

.post-nav h5 {
	color: #333;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 120%;
	margin: 0;
	text-transform: uppercase;
}

.post-nav a:hover h5 {
	color: #928452; 
}

.post-nav hr {
	display: block;
	border: none;
	width: 100%;
	height: 1px;
	background: #eee;
	margin: 20px 0;
}

/* Author Meta ------------------------------- */

.tab-author-meta { 
	position: relative; 
}

.author-meta-aside {
	width: 120px;
	position: absolute;
	top: 0;
	left: 0;
}

.author-meta-aside .author-avatar,
.author-meta-aside .author-avatar img {
	display: block;
}

.author-meta-aside .author-avatar img {
	width: 100%;
	height: auto;
	border-radius: 999px;
}

.author-meta-count {
	display: block;
	padding: 8px;
	background: #eee;
	color: #666;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.author-meta-count + .author-meta-count { 
	border-top: 1px solid #ddd; 
}

.author-meta-inner { 
	min-height: 183px;
	margin-left: 150px; 
}

.author-name {
	font-size: 1.1em;
	line-height: 110%;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
}

.author-name a { 
	color: inherit; 
	text-decoration: none;
}

.author-name a:hover { 
	color: #928452; 
}

.author-position {
	margin: 8px 0 16px;
	font-size: 0.8em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #767676;
}

.author-description p {
	line-height: 140%;
	color: #666;
}

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

/* AUTHOR SOCIAL */

.author-meta-social { 
	margin-top: 20px; 
}

.author-meta-social a {
	background-color: #333;
	border-radius: 999px;
	color: #fff;
	display: block;
	float: left;
	height: 32px;
	line-height: 1;
	margin: 0 5px 5px 0;
	position: relative;
	text-decoration: none;
	width: 32px;
}

.author-meta-social .genericon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.author-meta-social .genericon-home {
	width: 26px;
	height: 26px;
	font-size: 26px; 
	top: 11px;
	left: 11px;
}

.author-meta-social a:hover {
	background: #928452;
	color: #fff;
}

/* No JavaScript Adjustments ----------------- */

.no-js .tab-selector ul { 
	display: none; 
}

.no-js .post-meta-tabs .tab { 
	display: block; 
}

.no-js .post-meta-tabs .tab:after { 
	content: "";
	height: 4px;
	width: 100%;
	background: #ddd;
	display: block;
	margin: 10% 0;
}

.no-js .post-meta-tabs .tab:last-child:after { 
	display: none; 
}


/* -------------------------------------------------------------------------------- */
/*	12. Comments
/* -------------------------------------------------------------------------------- */


.comments-container { 
	border-top: 1px solid #eee; 
}

.comments-inner { 
	padding: 70px 0; 
}

.comments-title-container { 
	position: relative;
	margin-bottom: 60px; 
	padding-bottom: 30px;
	border-bottom: 2px solid #eee;
}

.comments-title {
	margin: 0;
}

.comments-subtitle {
	color: #666;
	font-size: 0.8em;
	font-weight: 600;
	margin: 0;
	position: absolute;
		bottom: 32px;
		right: 0;
	text-transform: uppercase;
}

.comments-title-container a { 
	color: inherit;
	text-decoration: none;
}

.comments-title-container a:hover { 
	text-decoration: underline; 
}

/* Comments List ----------------------------- */

div.comment { 
	margin-bottom: 40px;
	position: relative;
}

.commentlist,
.commentlist .children {
	list-style: none;
	margin: 0;
}

.commentlist .children { 
	padding-left: 60px; 
}

.commentlist li.comment {
	line-height: 1;
	margin: 0;
}

.comment .avatar {
	width: 70px;
	height: 70px;
	border-radius: 3px;
	position: absolute;
	top: 0;
	left: 0;
}

.bypostauthor .by-post-author {
	align-items: center;
	background-color: #928452;
	border-radius: 999px;
	color: #fff;
	display: flex;
	height: 32px;
	justify-content: center;
	position: absolute;
		left: -10px;
		top: -10px;
	text-align: center;
	text-decoration: none;
	width: 32px;
	z-index: 100;
}

.bypostauthor .by-post-author:before {
	content: '\f304';
    -webkit-font-smoothing: antialiased;
    font: normal 24px/1 'Genericons';
}

.comment-inner { 
	margin-left: 90px; 
	padding: 25px;
	background: #f1f1f1;
	border-radius: 3px;
	position: relative;
}

.comment-inner:before {
	content: "";
	display: block;
	border: 10px solid transparent;
	border-right-color: #f1f1f1;
	position: absolute;
	top: 25px;
	left: -20px;
}

.comment-header { 
	margin-bottom: 25px; 
}

.comment-header h4 {
	color: #333;
	font-size: inherit;
	font-weight: 800;
	letter-spacing: normal;
	margin: 0;
}

.comment-header h4 a { text-decoration: none; }
.comment-header h4 a:hover { text-decoration: underline; }

.comment-header span {
	margin-left: 4px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #767676;
}

/* Comment Actions --------------------------- */

.comment-actions { 
	color: #767676;
	margin-top: 25px; 
}

.comment-actions p { 
	display: inline-block; 
	line-height: 1;
	margin: 0;
}

.comment-actions p + p { 
	margin-left: 12px; 
}

.comment-actions a { 
	color: inherit;
	font-size: 0.8em;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.comment-actions a:hover {
	color: #928452;
}

.comment-actions a:before {
	font: 16px/1 'Genericons';
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	color: inherit;
	margin-right: 3px;
	-webkit-font-smoothing: antialiased;
}

.comment-actions a.comment-date-link:before { content: '\f107'; }
.comment-actions a.comment-edit-link:before { content: '\f411'; }
.comment-actions a.comment-reply-link:before { content: '\f412'; }

/* Comments Nav ------------------------------ */

.comments-nav {
	border-top: 2px solid #eee;
	border-bottom: 2px solid #eee;
	color: #767676;
	font-size: 0.8em;
	font-weight: 600;
	letter-spacing: 1px;
	margin-top: 70px;
	padding: 30px 0;
	text-transform: uppercase;
}

.comments-nav a { 
	color: inherit; 
	text-decoration: none;
}

.comments-nav a:hover { 
	color: #928452; 
}


/* -------------------------------------------------------------------------------- */
/*	13. Comments Respond
/* -------------------------------------------------------------------------------- */


.comments + .comment-respond { 
	margin-top: 70px; 
}

.commentlist .comment-respond { 
	margin-bottom: 40px; 
}

.commentlist > li:last-child .comment-respond:last-child { 
	margin-top: 40px; 
}

.comment-reply-title {
	font-weight: 800;
	margin: 0 0 40px;
}

#cancel-comment-reply-link {
	color: #767676;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-left: 5px;
	text-decoration: none;
}

#cancel-comment-reply-link:hover { 
	color: #928452; 
}

.comment-notes,
.logged-in-as {
	margin: 0 0 40px;
	color: #666;
}

.comment-notes a,
.logged-in-as a {
	color: inherit;
}

/* Comment Form ------------------------------ */

.comment-form {
	padding: 25px;
	background: #F1F1F1;
	border-radius: 3px;
}

.comment-form p.comment-notes {
	display: none;
}

.comment-form p {
	margin: 0 0 25px 0;
}

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

.comment-form input[type="checkbox"] + label {
	display: inline;
	font-weight: 400;
	letter-spacing: 0;
	margin: 0 0 0 5px;
	text-transform: none;
}

.comment-form .required { 
	color: red; 
	margin-left: 2px;
}

.comment-form-author,
.comment-form-email {
	width: 47.5%;
	float: left;
}

p.comment-form-email { margin-left: 5%; }

.comment-form .form-allowed-tags {
	font-size: 0.8em;
	line-height: 140%;
	color: #767676;
}

.comment-form input[type="submit"] {
	display: inline-block;
	padding: 14px 15px 13px;
	background: #fff;
	border: 2px solid currentColor;
	font-family: 'ABCMonumentGrotesk', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #928452;
}

.comment-form input[type="submit"]:hover,
.comment-form input[type="submit"]:focus { 
	background-color: #928452; 
	border-color: transparent;
	color: #fff;
	cursor: pointer;
}

.comment-subscription-form { margin-top: 20px; }
.comment-subscription-form + .comment-subscription-form { margin-top: 10px; }


/* -------------------------------------------------------------------------------- */
/*	14.	Pagination
/* -------------------------------------------------------------------------------- */


.archive-nav {
	padding: 35px 0;
	border-top: 1px solid #eee;
}

.archive-nav a {
	color: #666;
	font-size: 0.85em;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
}

.archive-nav .post-nav-newer { 
	float: right; 
}

.archive-nav a:hover { 
	color: #928452; 
}

/* Jetpack Infinite Scroll ------------------- */

.infinite-scroll .archive-nav { 
	display: none; 
}

.infinite-loader,
#infinite-handle { 
	margin-bottom: 70px;
	text-align: center; 
}

#infinite-handle span {
	background-color: #fff;
	border: 3px solid currentColor;
	color: #928452;
	display: inline-block;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 14px 15px;
}

#infinite-handle span:hover {
	background-color: #928452;
	border-color: transparent;
	color: #fff;
	cursor: pointer;
}

.infinite-loader .spinner {
	display: block;
	margin: 0 auto;
}


/* -------------------------------------------------------------------------------- */
/*	15.	Page & Page Templates
/* -------------------------------------------------------------------------------- */


/* Template: Full Width ---------------------- */

.page-template-template-fullwidth .post-inner {
	/*width: 1140px;*/
}

/* Template: Archive ------------------------- */

.posts-archive-list span {
	margin-left: 5px;
	font-family:'ABCMonumentGrotesk', sans-serif;
	font-size: 0.7em;
	font-weight: 600;
	text-transform: uppercase;
	color: #767676;
}


/* -------------------------------------------------------------------------------- */
/*	16.	Site Footer
/* -------------------------------------------------------------------------------- */


footer {
	background: var( --wp--preset--color--purple-500 );
	color: white;
	margin-top: 65px;
}
footer .wrapper {
	padding-top: 80px;
	padding-bottom: 80px;
	/* For Grid */
	justify-items: end;
	grid-template-columns: 480px 1fr;
	/* For Flex */
	justify-content: space-between;
}
#footer-about {
	max-width: 480px;
}
#footer-about p {
	color: rgba(255, 255, 255, 0.75);
	line-height: 150%; /* 27px */
	padding-top: 15px;
}
#footer-navs {
	max-width: 830px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 24px 32px;
	width: 100%;
}

@media (max-width: 1400px) {
	#footer-navs {
		grid-template-columns: 1fr 1fr;
		max-width: 500px;
	}
}
@media (max-width: 1050px) {
	footer .wrapper {
		grid-template-columns: 1fr;
	}
	#footer-about {
		max-width: none;
		width: 100%;
		order: 2;
		margin-top: 60px;
	}
	#footer-navs {
		max-width: none;
		order: 1;
	}
}
@media (max-width: 550px) {
	#footer-navs {
		grid-template-columns: 1fr;
	}
}
#footer-navs h4 {
	font-family: "ABCMonumentGrotesk", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: 1.28px;
	text-transform: uppercase;
	margin: 0;
}
#footer-navs ul {
	list-style: none;
	margin: 0;
	padding-top: 8px;
}
#footer-navs li {
	margin-top: 6px;
	margin-bottom: 0;
}
#footer-navs a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 125%;
}
#footer-navs a:hover {
	text-decoration: underline;
}

#footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.75);
	padding-top: 12px;
}
#footer-copyright {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	letter-spacing: 0.2px;
}



/* Widget: Content --------------------------- */

.widget-content { 
	font-size: 0.9rem; 
	color: #555;
}

.widget-content ol,
.widget-content ul,
.widget-content li {
	list-style: none;
	margin: 0;
}

.widget-content li {
	line-height: 140%;
	padding: 10px 0;
}

.widget-content ul ul { margin-left: 1em; }

.widget-content ul ul li:first-child { 
	margin-top: 0.5em; 
	border-top: 1px solid #eee;
}

.widget-content > ul > li:first-child { padding-top: 0; }

.widget-content a {
	text-decoration: none;
}

.widget-content li:last-child { 
	padding-bottom: 0;
	border-bottom: none; 
}

/* Widget Icons ------------------------------ */

.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_nav_menu li,
.widget_pages li { 
	color: #767676; 
}

.widget_archive li a,
.widget_categories li a,
.widget_meta li a,
.widget_nav_menu li a,
.widget_pages li a { 
	color: #333;
}

.widget_archive li a:hover,
.widget_categories li a:hover,
.widget_meta li a:hover,
.widget_nav_menu li a:hover,
.widget_pages li a:hover { 
	color: #928452; 
	text-decoration: none;
}

.widget_archive li:before,
.widget_categories li:before,
.widget_meta li:before,
.widget_nav_menu li:before,
.widget_pages li:before {
	font: 16px/1 'Genericons';
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	color: #767676;
	margin-right: 8px;
	-webkit-font-smoothing: antialiased;
}

.widget_archive li:before { content: '\f307'; }
.widget_categories li:before { content: '\f301'; }
.widget_meta li:before { content: '\f445'; }
.widget_nav_menu li:before,
.widget_pages li:before { content: '\f429'; }

/* Widget: Archive --------------------------- */

.widget_archive li { 
	text-transform: capitalize; 
}

/* Widget: Calendar -------------------------- */

.widget_calendar table {
	margin: 0;
}

#wp-calendar {
	color: #767676;
	max-width: 100%;
	text-align: center;
	width: 100%;
}

#wp-calendar caption,
#wp-calendar thead {
	color: #666;
	border-bottom: 1px solid #eee;
}

#wp-calendar caption {
	font-size: 0.9em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #767676;
}

#wp-calendar thead {
	color: #928452;
}

#wp-calendar thead th {
	color: inherit;
	font-size: 0.9em;
}

#wp-calendar tfoot{ 
	border-top: 1px solid #EEE; 
}

.wp-calendar-nav {
	display: flex;
	justify-content: space-between;
}

#wp-calendar tfoot td { padding: 0; }
#wp-calendar tfoot #prev { text-align: left; }
#wp-calendar tfoot #next { text-align: right; }

.wp-calendar-nav a,
#wp-calendar tfoot a {
	color: #767676;
	display: block;
	font-size: 0.8em;
	font-weight: 600;
	letter-spacing: 1px;
	margin-top: 10px;
	text-decoration: none;
	text-transform: uppercase;
}

.wp-calendar-nav a:hover,
#wp-calendar tfoot a:hover {
	color: #333;
}

/* Widget: Image ----------------------------- */

.widget_media_image .wp-caption {
	margin: 0;
}

/* Widget: Recent Posts, Recent Comments ----- */

.hoffman-widget-list a {
	display: block;
	position: relative;
	min-height: 50px;
}

.hoffman-widget-list .post-icon {
	display: block;
	width: 50px;
	height: 50px;
	border: 1px solid #eee;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -25px;	
}

.hoffman-widget-list .post-icon img {
	display: block;
}

.hoffman-widget-list .genericon {
	position: absolute;
	z-index: 1;
	font-size: 32px;
	height: 32px;
	width: 32px;
	top: 50%;
	left: 50%;
	margin-top: -16px;
	margin-left: -16px;
	color: #ccc;
}

.hoffman-widget-list .inner { 
	margin-left: 60px; 
}

.widget_hoffman_recent_posts .inner { 
	padding-top: 8px; 
}

.hoffman-widget-list .title {
	color: #333;
	font-weight: 700;
	line-height: 110%;
	margin: 0;
}

.hoffman-widget-list .meta,
.hoffman-widget-list .excerpt {
	color: #767676;
	font-size: 0.9em;
	font-weight: 400;
	line-height: 1.4;
	margin: 4px 0 0;
}

.hoffman-widget-list a:hover .title { 
	color: #928452; 
	text-decoration: underline;
}

.hoffman-widget-list a:hover .genericon { 
	color: #928452; 
}

/* Widget: RSS ------------------------------- */

.widget_rss .widget-title {
	display: flex;
}

.widget_rss .widget-title a:first-child { 
	margin-right: 5px;
}

/* Widget: Tag Cloud ------------------------- */

.widget_tag_cloud .tagcloud a { 
	font-size: 13px !important; 
}

.tagcloud a {
	display: block;
	float: left;
	padding: 8px 8px;
	background: #eee;
	border-radius: 3px;
	font-family: 'ABCMonumentGrotesk', sans-serif;
	line-height: 1;
	margin: 0 5px 5px 0;
	color: #666;
}

.tagcloud a:hover {
	background: #928452;
	color: #FFF;
	text-decoration: none;
}


/* -------------------------------------------------------------------------------- */
/*	18.	Media queries
/* -------------------------------------------------------------------------------- */


@media ( -webkit-min-device-pixel-ratio: 2 ), ( min-resolution: 192dpi ) { 

	/* 2X IMAGES */

	.flex-direction-nav .flex-prev { background-image: url(assets/images/icons/chevron-left-w_2x.png); }
	.flex-direction-nav .flex-next { background-image: url(assets/images/icons/chevron-right-w_2x.png); }
	
}

@media ( max-width: 1266px ) {

	/* Post Content -------------------------- */

	/* ALIGNMENT CLASSES */

	.post-content .alignfull {
		margin-left: calc( ( 95vw - 700px ) / -2 );
		max-width: 95vw;
		width: 95vw;
	}

	.post-content .alignwide {
		margin-left: calc( ( 95vw - 700px ) / -4 );
		max-width: calc( 95vw - ( ( 95vw - 700px ) / 2 ) );
		width: calc( 95vw - ( ( 95vw - 700px ) / 2 ) );
	}

}

@media ( max-width: 1100px ) {
	
	/* Navigation ---------------------------- */
	
	.main-menu ul {
		opacity: 1;
		display: none;
	}

	.main-menu > li:hover > ul,
	.main-menu ul li:hover > ul { 
		display: block;
	}
	
}

@media ( max-width: 1030px ) {

	/* Post Content -------------------------- */
	
	/* ALIGNMENT CLASSES */
	
	.post-content .alignleft,
	.post-content .alignright {
		max-width: 40%;
	}
	
	.post-content .alignleft { margin-left: auto; }
	.post-content .alignright { margin-right: auto; }

}

@media ( max-width: 818px ) {

	/* Post Content --------------------------------------- */

	/* ALIGNMENT CLASSES */

	.post-content .alignfull {
		margin-left: calc( ( 95vw - ( 95vw * .9 ) ) / -2 );
	}

	.post-content .alignwide {
		margin-left: calc( ( 95vw - ( 95vw * .9 ) ) / -4 );
		max-width: calc( 95vw - ( ( 95vw - ( 95vw * .9 ) ) / 2 ) );
		width: calc( 95vw - ( ( 95vw - ( 95vw * .9 ) ) / 2 ) );
	}

}

@media ( max-width: 800px ) {

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

	.footer .column { 
		width: 47.5%; 
	}

	.footer .column:nth-child(3) { 
		display: none; 
	}

	/* Credits ------------------------------- */
	
	.credits-menu { 
		display: none; 
	}

}

@media ( max-width: 750px ) {

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

	.header { 
		padding: 30px 5%;
		flex-direction: row-reverse;
	}
	
	.header-titles {
		padding: 0 20px 0 0;
		text-align: left; 
	}
	
	.blog-title { 
		font-size: 1.5em; 
	}
	
	.blog-description {
		font-size: 0.9em;
		margin-top: 10px;
	}

	.blog-logo {
		justify-content: flex-start;
	}
	
	.blog-logo img { 
		max-height: 60px;
	}
	
	.header .menu-social { 
		display: none; 
	}
	
	.nav-toggle { 
		max-width: none;
        width: auto;
	}
	
	.nav-toggle .bars { 
		left: auto; 
		right: 0;
	}
	
	.nav-toggle p { 
		margin: 0 24px 0 0;
		text-align: right;
	}
    
    /* Navigation ---------------------------- */
	
    .navigation,
	.main-menu { 
        display: none; 
    }

	.mobile-menu,
	.mobile-menu ul,
	.mobile-menu li {
		list-style: none;
		margin: 0;
	}
	
	.mobile-menu { 
		display: block; 
		padding: 20px 0;
	}
	
	.mobile-menu li { margin-top: 10px; }
	.mobile-menu > li:first-child { margin-top: 0; }
	
	.mobile-menu a {
		color: #767676;
		display: block;
		font-weight: 700;
		letter-spacing: 1px;
		padding: 5px 0;
		text-decoration: none;
		text-transform: uppercase;
	}
	
	.mobile-menu .current_menu_item a,
	.mobile-menu .current_page_item a,
	.mobile-menu a:hover { 
		color: #fff; 
	}
	
	.mobile-menu li li { 
		margin-left: 30px;
	}
	
}

@media ( max-width: 600px ) {

	body { 
		font-size: 16px; 
	}

	/* Element Base -------------------------- */
	
	h1, h2, h3, h4, h5, h6 {
		margin: 20px 0 20px;
	}
	
	h1 { font-size: 1.4em; }
	h2 { font-size: 1.3em; }
	h3 { font-size: 1.2em; }
	h4 { font-size: 1.1em; }
	h5 { font-size: 1em; }
	h6 { font-size: 0.8em; }
		
	blockquote cite { 
		margin-top: 20px; 
		font-size: 0.9rem; 
	}
		
	/* Structure ----------------------------- */
	
	.section { 
		padding: 45px 0; 
	}
	
	/* Blog ---------------------------------- */

	/* ARCHIVE HEADER */

	.archive-header,
	.archive-nav { 
		padding: 28px 0; 
	}
	
	.archive-description p { 
		margin-top: 15px; 
	}

	/* POST */
	
	.sticky .is-sticky {
		top: 10px;
		width: 24px;
		height: 22px;
	}
	
	.sticky .is-sticky:before,
	.sticky .is-sticky:after {
		content: "";
		display: block;
		border-width: 6px;
		position: absolute;
		right: -12px;
	}
	
	.sticky .is-sticky .genericon {
		font-size: 16px;
		width: 16px;
		height: 16px;
		top: 4px;
		left: 4px;
	}
	
	figcaption.caption { 
		padding: 18px 0 0; 
	}
	
	.post-content a.more-link { 
		padding: 12px; 
	}
	
	/* POST HEADER */
	
	.post-title { 
		font-size: 2.3em;
	}
	
	.post-meta.top { 
		font-size: 0.9em;
		margin-bottom: 15px; 
	}
	
	.post-meta.top .sep { 
		margin: 0 5px; 
	}
	.option-menu-container {
		display: none;
	}
	
	/* TABS */
	
	.tab-selector span { 
		display: none; 
	}
	
	.tab-selector a { 
		padding: 12px; 
	}
		
	.tab-selector .genericon {
		font-size: 32px;
		height: 32px;
		width: 32px;
	}
	
	.post-meta-tabs { 
		padding: 45px 0; 
	}
	
	/* Post Formats -------------------------- */
	
	/* POST FORMAT: GALLERY */
	
	.flex-direction-nav { 
		margin-top: -16px; 
	}
	
	.flex-direction-nav a {
		width: 32px;
		height: 32px;
		background-size: auto 12px;
	}
	
	.flexslider-caption p { 
		padding: 8px 9px 6px; 
		border-radius: 2px 2px 0 0;
	}

	/* Post Content -------------------------- */

	/* ALIGNMENT CLASSES */

	.post-content .alignfull {
		margin-left: -5vw;
		max-width: 100vw;
		width: 100vw;
	}

	.post-content .alignwide {
		margin-left: -2.5vw;
		max-width: 95vw;
		width: 95vw;
	}
	
	/* Comments ------------------------------ */
	
	.comments-inner { 
		padding: 40px 0; 
	}
	
	.comments-title-container {
		padding-bottom: 15px;
		margin-bottom: 30px;
	}
	
	.comments-subtitle { 
		display: none;
	}
	
	div.comment { 
		margin-bottom: 30px; 
	}
	
	.commentlist .children { 
		padding-left: 30px; 
	}
	
	.comment .avatar { 
		display: none; 
	}
	
	.comment-inner { 
		margin-left: 0; 
	}
	
	.comment-inner:before { 
		content: none; 
	}
	
	.comment-actions .comment-date-link span { 
		display: none; 
	}
	
	.comments-nav { 
		padding: 20px 0; 
		margin-top: 45px;
	}
	
	/* Respond ------------------------------- */
	
	.comments + .comment-respond { 
		margin-top: 45px; 
	}
	
	.comment-reply-title { 
		margin-bottom: 30px; 
	}
	
	.comment-notes, .logged-in-as { 
		margin-bottom: 25px; 
	}
	
	/* Post Meta ----------------------------- */
	
	.tab-post-meta .two-thirds,
	.tab-post-meta .one-third {
		width: 100%;
		float: none;
		margin-left: 0;
	}
	
	.post-meta-item {
		padding-top: 14px;
		margin-top: 14px;
	}
	
	.tab-post-meta .post-nav {
		margin-top: 28px;
		border-top: 4px solid #eee;
		padding-top: 28px;
	}
	
	.post-nav hr { 
		margin: 14px 0; 
	}
	
	.tab-post-meta .post-nav p { 
		font-size: 0.8em; 
	}
	
	/* Author Meta --------------------------- */
	
	.author-meta-aside { 
		width: 60px; 
	}
	
	.author-meta-inner { 
		margin-left: 80px; 
	}
	
	.author-description { 
		font-size: 0.9em; 
	}
	
	/* Pagination ---------------------------- */
	
	.archive-nav { 
		padding: 28px 0; 
	}
	
	/* Jetpack Infinite Scroll */
	
	.infinite-loader,
	#infinite-handle { 
		margin-bottom: 45px; 
	}
	
	/* Footer -------------------------------- */
	
	.footer { 
		padding: 45px 0; 
	}
	
	.footer .column,
	.footer .column:nth-child(3) {
		display: block;
		float: none;
		width: 100%;
		margin-left: 0;
	}
	
	.footer .column + .column { 
		margin-top: 40px; 
	}
	
	/* Credits ------------------------------- */
	
	.credits { 
		padding: 30px 0; 
	}
	
}

@media ( max-width: 500px ) {

	/* Element Base -------------------------- */
	
	blockquote {
		padding-left: 72px; 
	}
	
	blockquote:before {
		font-size: 48px;
		width: 72px;
		top: 22px;
	}

	/* Single Post --------------------------- */
	
	.post-header:after { 
		width: 64px; 
	}
	
	.post-title { 
		font-size: 1.8em; 
	}
	
	/* Blocks -------------------------------- */

	/* BLOCK BASE MARGINS */

	.wp-block-archives,
	.wp-block-button,
	.wp-block-buttons,
	.wp-block-calendar,
	.wp-block-categories,
	.wp-block-code,
	.wp-block-columns,
	.wp-block-cover,
	.wp-block-cover-image,
	.wp-block-embed,
	.wp-block-file,
	.wp-block-gallery,
	.wp-block-group,
	.wp-block-image,
	.wp-block-latest-comments,
	.wp-block-latest-posts,
	.wp-block-media-text,
	.wp-block-preformatted,
	.wp-block-pullquote,
	.wp-block-quote,
	.wp-block-quote.is-large,
	.wp-block-quote.is-style-large,
	.wp-block-search,
	.wp-block-social,
	.wp-block-tag-cloud,
	.wp-block-verse,
	.wp-block-video {
		margin-bottom: 30px;
		margin-top: 30px;
	}

	/* BLOCK: QUOTE */

	.wp-block-quote.has-text-align-right {
		padding-right: 72px;
	}

	/* Post Content -------------------------- */
	
	/* ALIGNMENT CLASSES */
	
	.post-content .alignleft,
	.post-content .alignright {
		float: none;
		margin: 2em auto;
		max-width: 100%;
	}
	
	.post-content .alignleft img,
	.post-content .alignright img {
		display: block;
		width: 100%;
	}
	
	/* Respond ------------------------------- */
	
	.comment-form p { 
        margin-bottom: 15px;
    }
		
	.comment-form-author, 
	.comment-form-email {
		width: 100%;
		float: none;
	}

	p.comment-form-email {
		margin-left: 0;
	}
	
	/* Pagination ---------------------------- */
	
	.archive-header span {
		display: block;
		margin-top: 10px;
		text-align: center;
	}

	/* Credits ------------------------------- */

	.credits-menus {
		margin-bottom: 25px;
	}
	
	.credits .menu-social {
		justify-content: center;
		width: 100%;
	}
	
	.credits p { text-align: center; }

}

@media ( max-width: 400px ) {

	/* Element Base -------------------------- */
	
	blockquote {
		padding: 20px; 
	}

	blockquote:before { 
		content: none; 
	}

	/* INPUTS */
	
	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="url"],
	input[type="date"],
	input[type="month"],
	input[type="time"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="week"],
	input[type="number"],
	input[type="search"],
	input[type="tel"],
	input[type="color"],
	textarea {
		padding: 10px;
	}

	
	/* Header -------------------------------- */
	
	.header { 
		padding: 25px 5%; 
	}
	
	.blog-description { 
		display: none; 
	}
	
	.blog-logo img { 
		max-height: 40px; 
	}
	
	/* Blog ---------------------------------- */
	
	.author-meta-aside { 
		width: 40px; 
	}
	
	.author-meta-inner { 
		margin-left: 55px; 
	}
	
	/* Blocks -------------------------------- */

	/* BLOCK: PULL QUOTE */

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

	/* BLOCK: QUOTE */

	.wp-block-quote.has-text-align-center,
	.wp-block-quote.has-text-align-right,
	.wp-block-quote.is-large, 
	.wp-block-quote.is-style-large {
		padding: 20px;
	}
	
	/* Post Content -------------------------- */

	.post-content .alignwide {
		margin-left: 0;
		max-width: 100%;
		width: 100%;
	}

	/* Respond ------------------------------- */
	
	.comment-form { 
		padding: 15px; 
	}
	
	/* Pagination ---------------------------- */
	
	.archive-nav span { 
		display: none; 
	}
	
}