/*
Theme Name: Disciples 2023
Theme URI: https://accessicart.com/
Description: Showcase your brand, creativity, and passion with beautiful and colorful design.
Author: AccessiCart
Author URI: https://accessicart.com/

Version: 1.2.0

Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, e-commerce, editor-style, featured-images, footer-widgets, full-width-template, left-sidebar, one-column, right-sidebar, sticky-post, theme-options, threaded-comments, translation-ready, two-columns, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Text Domain: doc-2023-theme
Requires at least: 5.4
Requires PHP: 5.6
*/

/* Table of Contents
	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Gallery
		- Forms
		- Tables
		- Screen Reader Text
	- Shapes
	- Structure and Layout
		- Site Container
		- Site Inner
		- Column Widths and Positions
	- Common Classes
		- Avatar
		- Genesis
		- Search Form
		- Titles
		- WordPress
	- Widgets
		- Featured Content
	- Plugins
		- Genesis eNews Extended
		- Genesis Plugins
		- Jetpack
		- WPForms
	- Skip Links
	- Site Header
		- Title Area
	- Site Navigation
		- Header Menu
		- Header Search
		- Footer Menu
		- Accessible Menu
	- Featured Images
	- Content Area
		- Entries
		- Entry Meta
		- Pagination
		- Genesis Editor Sidebar Options
		- Comments
	- Blog Archive
		- Archive
	- Sidebar
	- Before Footer CTA
	- Site Footer
	- Media Queries
		- Max-width: 1280px
		- Max-width: 1023px
		- Max-width: 800px
		- Max-width: 600px
		- Max-width: 480px
*/


/* HTML5 Reset
---------------------------------------------------------------------------- */

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}
/* stylelint-enable */

/* Box Sizing
--------------------------------------------- */

html,
input[type="search"] {
	box-sizing: border-box;
}

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

:root {
	--red: #DE1E30;
	--yellow: #FF9400;
	--purple: #A232BE;
	--black: #2B2B2B;
	--white: #FFFFFF;
	--grey: #949494;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --global-trans: all 0.25s ease-in-out;
}


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

.entry-container::before,
.author-box::before,
.clearfix::before,
.content-sidebar-wrap::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-footer .footer-copyright-container::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.entry-container::after,
.author-box::after,
.clearfix::after,
.content-sidebar-wrap::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-footer .footer-copyright-container::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}

.clear {
	clear: both;
}


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

/* Typographical Elements
--------------------------------------------- */

body {
	background-color: #ffffff;
	color: var(--black);
	font-family: 'Inter', sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	overflow-x: hidden;
}

body {
	animation: fadein 1s;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img,
.more-link,
.wp-custom-logo .site-title > a,
.wp-custom-logo .title-area,
.site-header,
.site-header > .wrap > * {
	outline-color: transparent; /* prevent flicker in Firefox */
	transition: var(--global-trans);
}

a {
	color: var(--red);
	border-bottom: 1px solid currentColor;
	text-decoration: none;
	font-weight: 600;
}

a:focus,
a:hover {
	color: var(--black);
	text-decoration: none;
	border-bottom-color: transparent;
}

span:target {
	display: block;
	position: relative;
	top: -120px;
	visibility: hidden;
}

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

p:last-child {
	margin-bottom: 0;
}

.more-link-wrap {
	margin-bottom: 0;
}

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

li {
	list-style-type: none;
}

hr {
	background-color: transparent;
	border-width: 0;
	border-collapse: collapse;
	border-bottom: 1px solid currentColor;
	border-right-width: 0;
	border-top-width: 0;
	margin: 2em 0;
	opacity: 0.3;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background-color: #eaeaea;
	color: var(--black);
}

pre {
	background-color: #eaeaea;
	border: 1px solid #ded8d1;
	font-family: Courier, monospace;
	font-size: 1.125rem;
	line-height: 1.6;
	max-width: 100%;
	margin-bottom: 30px;
	overflow: auto;
	padding: 3% 5% 3% 7%;
	position: relative;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
}

pre::before {
	background-color: #ded8d1;
	color: #fff;
	content: " ";
	font-size: 1rem;
	height: 100%;
	left: 0;
	padding: 0 3px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 20px;
	z-index: 5;
}

blockquote {
	color: currentColor;
	margin: 1em;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

iframe {
	margin-bottom: -11px;
}

::selection {
	background-color: var(--black);
	color: #fff;
	text-shadow: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Syne', sans-serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 30px;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
	color: var(--red);
	font-size: 1.5em;
	display: block;
}

h1.has-theme-fourth-accent-color strong,
h2.has-theme-fourth-accent-color strong,
h3.has-theme-fourth-accent-color strong,
h4.has-theme-fourth-accent-color strong,
h5.has-theme-fourth-accent-color strong,
h6.has-theme-fourth-accent-color strong {
	color: var(--white);
	font-size: 1.5em;
	display: inline;
}

h1.has-theme-fifth-accent-color strong,
h2.has-theme-fifth-accent-color strong,
h3.has-theme-fifth-accent-color strong,
h4.has-theme-fifth-accent-color strong,
h5.has-theme-fifth-accent-color strong,
h6.has-theme-fifth-accent-color strong {
	color: var(--black);
	font-size: 1.5em;
}

h1 {
	font-size: 3rem;
	letter-spacing: -0.5px;
}

h2 {
	font-size: 2.75rem;
	letter-spacing: -0.5px;
	line-height: 1.3;
}

h3 {
	font-size: 1.5rem;
}

.comment-respond h3,
.entry-comments h3 {
	font-size: 2.25rem;
	letter-spacing: -0.5px;
}

.comment-respond h3 small {
	font-size: 1rem;
}

h4 {
	font-size: 1.25rem;
}

.entry-content h3,
.entry-content h4 {
	margin-bottom: 20px;
}

h5 {
	font-size: 1.125rem;
}

h6 {
	font-size: 1rem;
}

/* Sizes
---------------------------------------------------------------------------- */

h1.has-largest-font-size {
	font-size: 6rem !important;
}

h1.has-larger-font-size,
h2.has-largest-font-size {
	font-size: 5rem !important;
}

h1.has-large-font-size,
h2.has-larger-font-size,
h3.has-largest-font-size {
	font-size: 3rem !important;
}

h1.has-normal-font-size,
h2.has-large-font-size,
h3.has-larger-font-size,
h4.has-largest-font-size,
p.has-larger-font-size {
	font-size: 2rem !important;
}

h1.has-small-font-size,
h2.has-normal-font-size,
h3.has-large-font-size,
h4.has-larger-font-size,
h5.has-largest-font-size,
p.has-large-font-size {
	font-size: 1.5rem !important;
}

h2.has-small-font-size,
h3.has-normal-font-size,
h4.has-large-font-size,
h5.has-larger-font-size,
p.has-normal-font-size {
	font-size: 1.125rem !important;
}

h3.has-small-font-size,
h4.has-normal-font-size,
h5.has-large-font-size,
p.has-small-font-size {
	font-size: 1rem !important;
}


/* Objects
--------------------------------------------- */

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

img {
	height: auto;
}

figure {
	/* margin: 0; */
}

figure a {
	border-width: 0;
}

/* Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 0 0 34px;
	text-align: center;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

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

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

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

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

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

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

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

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

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery img {
	border: 1px solid #eaeaea;
	height: auto;
	padding: 4px;
}

.gallery img:hover,
.gallery img:focus {
	border: 1px solid #eaeaea;
}

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

input,
input[type="search"],
select,
textarea {
	background-color: #fff;
	border: 1px solid #949494;
	border-radius: 5px;
	color: var(--black);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.625;
	padding: 12px 20px;
	width: 100%;
}

input[type="search"] {
	-webkit-appearance: none;
    width: 90%;
}

input:focus,
input[type="search"]:focus,
textarea:focus {
	border: 1px solid #999;
	outline: 2px solid var(--purple);
}

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

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

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

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

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.more-link,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.alex-faqs .kt-blocks-info-box-title {
    background: var(--red);
    border: 2px solid var(--white);
    color: var(--white);
    /* border-bottom-width: 5px; */
    cursor: pointer;
    font-size: 1rem;
    padding: 12px 20px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: normal;
    width: auto;
    border-radius: 10px;
    line-height: 1.3;
    box-shadow: 0px 7px 10px 0px rgba(0,0,0,.3);
}

.button {
	display: inline-block;
	margin-bottom: 5px;
	margin-top: 5px;
}

.button.large {
	font-size: 1rem;
}

.button.secondary {
	background-color: #eaeaea;
	color: var(--black);
}

.more-link {
	display: inline-block;
	margin-top: 10px;
}

a.button.small,
button.small,
input[type="button"].small,
input[type="reset"].small,
input[type="submit"].small {
	padding: 15px 20px;
}

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,
.more-link:focus,
.more-link:hover,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.alex-faqs a:hover .kt-blocks-info-box-title,
.alex-faqs a:focus .kt-blocks-info-box-title {
    background: transparent;
    border-color: var(--red);
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    color: var(--black);
}

.button.secondary:focus,
.button.secondary:hover {
	background-color: var(--black);
	color: #fff;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eaeaea;
	border-width: 0;
	box-shadow: none;
	color: #999;
	cursor: not-allowed;
}

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

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

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

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

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

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid #eaeaea;
}

th {
	font-weight: 700;
	padding: 0.5em;
}

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

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

.genesis-nav-menu .search input[type="submit"]:focus,
.screen-reader-shortcut:focus,
.screen-reader-text:focus,
.widget_search input[type="submit"]:focus {
	background-color: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
	clip: auto !important;
	color: var(--black);
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	position: relative;
}

/* Shapes
---------------------------------------------------------------------------- */

.error404 .site-inner .wrap::after,
.page .site-inner .wrap::after,
.single .site-inner .wrap::after,
.archive-description::before {
	background-color: #fff;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: -1;
}

.error404 .site-inner .wrap::after,
.page .site-inner .wrap::after,
.single .site-inner .wrap::after {
	max-height: 300px;
}

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

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

.site-container {
	background-color: #ffffff;
	position: relative;
	z-index: 99;
}

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

.site-inner,
.wrap {
	margin: 0 auto;
}

.site-inner {
	background-color: #ffffff;
	clear: both;
	min-height: 65vh;
	padding-top: 50px;
	position: relative;
	word-wrap: break-word;
	z-index: 100;
}

.blog .site-inner,
.archive .site-inner {
    padding-top: 1em;
}

.full-width-content.landing-page .site-inner {
	border-width: 0;
}

/* Column Widths and Positions
--------------------------------------------- */

.content-sidebar-wrap {
	max-width: 1200px;
	margin: 0 auto 120px;
	position: relative;
	z-index: 98;
}

body.unboxed .content-sidebar-wrap {
    margin-bottom: 0;
}

/* Content */

.content {
	float: right;
	position: relative;
	max-width: 1000px;
	width: 100%;
}

.blog .content,
.archive .content,
.blog .content-sidebar-wrap,
.archive .content-sidebar-wrap {
	max-width: 1300px;
	width: 100%;
}

.content-sidebar .content {
	float: left;
	max-width: 780px;
}

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

/* Sidebar */

.sidebar {
	float: right;
	max-width: 360px;
	width: 100%;
}

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


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

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

.avatar {
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.07);
	border-radius: 50%;
	float: left;
}

.entry-footer .avatar {
	margin: 12px 0;
}

.alignleft .avatar {
	margin-right: 24px;
}

.author-box .avatar {
	display: block;
	float: none;
	margin: -120px auto 40px;
	width: auto;
}

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

.comment .avatar {
	margin: 0 16px 24px 0;
	padding: 2px;
}

.comment.bypostauthor .avatar {
	background-color: var(--red);
}

.author-box .avatar {
	float: none;
	margin-bottom: 40px;
	padding: 5px;
}

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



.breadcrumb {
	background-color: var(--red);
	background-image: linear-gradient(-145deg, rgba(250, 247, 244, 0.2) 0%, var(--red) 50%);
	border-bottom: 1px solid transparent;
	color: #fff;
	font-size: 1rem;
	font-style: italic;
	margin-bottom: 1px;
	padding: 0 30px;
	position: relative;
	overflow: hidden;
	z-index: 100;
}

.breadcrumb a {
	border-width: 0;
	color: #fff;
	display: inline-block;
	font-style: normal;
	line-height: 16px;
	padding: 20px 40px 20px 0;
	position: relative;
	z-index: 1;
}

.breadcrumb a:focus,
.breadcrumb a:hover {
	border-width: 0;
	opacity: 0.8;
}

.breadcrumb a:focus {
	text-decoration: underline;
	outline: none;
}

.breadcrumb a::before,
.breadcrumb a::after {
	border-right: 1px solid currentColor;
	content: "";
	display: block;
	height: 50%;
	position: absolute;
	left: 0;
	right: 20px;
	top: 0;
	transform: skewX(35deg);
	z-index: 0;
	transition: var(--global-trans);
	opacity: 0.4;
}

.breadcrumb a:focus::before,
.breadcrumb a:focus::after,
.breadcrumb a:hover::before,
.breadcrumb a:hover::after {
	opacity: 0.8;
}

.breadcrumb a::after {
	bottom: 0;
	top: auto;
	transform: skewX(-35deg);
}

.archive-description,
.author-box {
	padding: 3em 0 1em;;
	position: relative;
	transition: var(--global-trans);
}

.archive-description {
	background-color: #ffffff;
	position: relative;
	z-index: 999;
}

.archive-description .description-wrap {
	/* display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: 1fr 2fr;
	grid-gap: 0 2em; */
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
	z-index: 999;
}

.search .archive-description .description-wrap {
	grid-template-columns: 1fr;
}

.author-box {
	background-color: #fff;
	border-top: 100px solid #eaeaea;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(0, 0, 0, 0.07);
	margin: 80px auto;
	padding: 60px 3em;
	text-align: center;
}

.author-box:hover {
	box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px #fff;
}

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

.after-entry {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.07);
	padding: 60px 3em;
	transition: var(--global-trans);
	margin-bottom: 80px;
	margin-top: 80px;
}

.after-entry:hover {
	border: 1px solid #fff;
	box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, 0.1);
}

.after-entry:last-child,
.content .author-box:last-child {
	margin-bottom: 0;
}

.archive-description p,
.author-box p {
	color: #886f6c;
}

.archive-description p:last-of-type,
.author-box p:last-of-type {
	margin-bottom: 10px;
}

.page-template-page_blog .archive-description {
	border-width: 0;
	clip: rect(0, 0, 0, 0);
	color: #fff;
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.page-template-page_blog .archive-description::before {
	display: none;
}

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

.search-form {
	overflow: hidden;
	position: relative;
}

.entry-content .search-form {
	margin-bottom: 40px;
	margin-top: 20px;
}

.error404 .entry-content .search-form input[type="search"],
.error404 .entry-content .search-form-submit {
	width: 100%;
}

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

.widget_search input[type="submit"],
.header-search-wrap input[type="submit"] {
	border-width: 0;
	margin: 0px;
	height: 100%;
	position: absolute;
	top: 0;
}

.header-search-wrap input[type="submit"] {
	border: 2px solid transparent;
}

.header-search-wrap input[type="submit"]:hover,
.header-search-wrap input[type="submit"]:focus {
	border: 2px solid var(--black);
}

.widget_search input[type="submit"] {
	right: 0;
	top: 0;
}

.widget_search input[type="submit"]:focus,
.site-header .header-search-wrap input[type="submit"]:focus {
	background-color: var(--black);
	box-shadow: none;
	clip: auto;
	color: #fff;
	height: auto;
	width: auto;
}

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

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 32px;
	font-weight: 400;
	letter-spacing: normal;
}

.archive-description .entry-title,
.archive-title {
	margin-bottom: 20px;
}

.author-box-title {
	margin-bottom: 10px;
}

.entry-title {
	font-size: 3rem;
	font-weight: 400;
}

h2.entry-title {
	font-size: 1.75rem;
	letter-spacing: -0.5px;
}

.error404 .entry-title {
	padding: 40px 40px 0;
	text-align: center;
}

.entry-title a,
.sidebar .widget-title a {
	border-width: 0;
	color: var(--black);
	text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus {
	color: var(--red);
}

.widget-title {
	font-size: 1.125rem;
	font-weight: 400;
	margin-bottom: 10px;
}

.sidebar .widget-title {
    color: var(--red);
    font-weight: 700;
    margin-bottom: 1em;
    font-size: 1.5rem;
}

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

p.attachment a {
	border-width: 0;
}

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

a.alignnone {
	display: inline-block;
}

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

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

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

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

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

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 {
	color: inherit;
	font-size: 1rem;
	font-style: italic;
	margin-bottom: 30px;
	margin-top: 25px;
	padding-left: 10px;
	padding-right: 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 34px;
}


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

.widget {
	margin-bottom: 40px;
	word-wrap: break-word;
}

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

.widget ul > li {
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.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-width: 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 .aligncenter,
.featured-content .aligncenter:hover,
.featured-content .alignleft,
.featured-content .alignleft:hover,
.featured-content .alignnone,
.featured-content .alignnone:hover,
.featured-content .alignright,
.featured-content .alignright:hover {
	border-width: 0;
}

.featured-content .entry,
.featured-content .entry:hover {
	background-color: transparent;
	border-width: 0;
	box-shadow: none;
	margin-bottom: 30px;
	padding: 0;
}

.featured-content .entry:last-of-type {
	margin-bottom: 0;
}

.featured-content .entry-header {
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 1.25rem;
	margin-bottom: 5px;
}

.featured-content .entry-content {
	padding-top: 20px;
}

.featured-content .entry-meta {
	font-size: 1rem;
	margin-bottom: 5px;
}

.featured-content .more-link {
	margin-top: 0;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.enews-widget {
	position: relative;
}

.after-entry .enews-widget .widget-title {
	font-size: 32px;
	text-align: center;
}

.sidebar .enews-widget.widget {
	background-color: #eaeaea;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.enews-widget input {
	font-size: 1rem;
	margin-bottom: 10px;
}

.enews-widget input[type="email"],
.enews-widget input[type="text"] {
	background-color: #fff;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"],
.enews-widget input[type="submit"]:focus,
.enews-widget input[type="submit"]:hover {
	background-color: var(--black);
	color: #fff;
	margin: 0;
	width: 100%;
}

.enews form + p,
.enews p + form {
	margin-top: 30px;
}

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

.entry.books::after,
.entry.books::before,
.entry.portfolio::after,
.entry.portfolio::before {
	display: none;
}

.post-type-archive-books .content .entry-content {
	padding: 0;
}

.post-type-archive-books .content .entry a,
.portfolio-featured-image a {
	border-width: 0;
}

/* Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}

/* WPForms
--------------------------------------------- */

.site-container .wpforms-container {
	margin-bottom: 40px;
}

.site-container .wpforms-form .wpforms-field {
	clear: both;
	margin: 20px 0;
	overflow: hidden;
}

.site-container .wpforms-form .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
	border-radius: 0;
	height: auto;
	padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
	font-weight: 700;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
	font-size: 1rem;
	font-weight: 400;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
	height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
	height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
	height: 300px;
}


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

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

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

/* Display outline on focus */
:focus {
	color: var(--black);
	outline: 1px solid #eaeaea;
}


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

.site-header {
	background-color: #fff;
	min-height: 80px;
	padding: 0;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 9999;
}

.site-header .wrap {
	max-width: 1300px;
	margin: 0 auto;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.search-visible > .wrap > :not(.header-search-wrap) {
	opacity: 0;
}

.shadow .site-header,
.site-header.search-visible {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}


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


.title-area {
	float: left;
}

.wp-custom-logo .title-area {
	background-color: transparent;
	margin-left: auto;
	margin-right: auto;
	max-width: 320px;
	padding: 0;
}

.site-title {
	font-family: 'Syne', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0;
	text-transform: uppercase;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	border-width: 0;
	display: block;
	min-height: 80px;
	opacity: 1;
	padding: 30px;
	text-decoration: none;
}

.site-title a:focus,
.site-title a:hover {
	box-shadow: inset 0 0 200px rgba(255, 255, 255, 0.2);
}

.wp-custom-logo .site-title > a {
	float: left;
	width: 100%;
}

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

.site-header .custom-logo-link {
	border-width: 0;
}

.site-header .custom-logo-link .custom-logo {
	display: block;
	max-height: 75px;
	width: auto;
    transition: var(--global-trans);
}

.shadow .site-header .custom-logo-link img {
    padding: 10px;
}

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

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

.genesis-nav-menu > li:not(:last-child) {
	float: none;
	list-style-type: none;
}

.genesis-nav-menu .menu-item,
.genesis-nav-menu .toggle-header-search {
	display: inline-block;
	text-align: left;
}

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

.genesis-nav-menu a,
.genesis-nav-menu .toggle-header-search {
	color: var(--red);
	border-width: 0;
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	padding: 30px;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .toggle-header-search:focus,
.genesis-nav-menu .toggle-header-search:hover {
	color: var(--black);
}

.genesis-nav-menu > .menu-bold > a {
	font-weight: 700;
}

.genesis-nav-menu > .menu-item > a,
.genesis-nav-menu .toggle-header-search {
	border-top: 4px solid #fff;
}

.genesis-nav-menu > .menu-item > a:focus,
.genesis-nav-menu > .menu-item > a:hover,
.genesis-nav-menu > .menu-item:focus-within > a,
.genesis-nav-menu > .menu-item:hover > a,
.genesis-nav-menu > .menu-item.current-menu-item > a {
	border-top: 4px solid var(--red);
	color: var(--black);
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	font-size: 15px;
	width: 180px;
}

.genesis-nav-menu .sub-menu {
	background-color: #fff;
	border-top: 1px solid #eaeaea;
	left: -9999px;
	margin-left: -1px;
	opacity: 0;
	padding-left: 0;
	position: absolute;
	transition: opacity 0.5s ease-in-out;
	z-index: 999;
}

.genesis-nav-menu .sub-menu a {
	border: 1px solid #eaeaea;
	border-top-width: 0;
	padding: 21px 15px;
	position: relative;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -59px 0 0 179px;
}

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

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

.nav-primary {
	float: right;
	text-align: right;
}

.nav-primary .genesis-nav-menu {
	display: flex;
}

.nav-primary .genesis-nav-menu .sub-menu a:focus,
.nav-primary .genesis-nav-menu .sub-menu a:hover {
	background-color: var(--red);
	color: #fff;
}

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

.header-search-wrap {
	display: none;
}

.js .header-search-wrap {
	height: 100%;
	left: 0;
	padding: 10px 30px;
	position: absolute;
	transform: translate3d(0, -100%, 0);
	transition: none;
	top: 0;
	width: 100%;
	z-index: 1001; /* Show above the menu toggle button */
}

.js .header-search-wrap .search-form,
.js .header-search-wrap input[type="search"] {
	height: 100%;
}

.search-visible .header-search-wrap {
	transform: translate3d(0, 0, 0);
}

.header-search-wrap:target {
	clear: both;
	display: block;
	position: relative;
}

.header-search-wrap input[type="search"] {
	border-width: 0;
	padding-right: 100px;
}

.toggle-header-search {
	background-color: transparent;
}

.js .toggle-header-search.close:focus {
	outline: 0;
}

.toggle-header-search.close {
	border-width: 0;
	color: var(--black);
	height: 100%;
	padding: 0;
	position: absolute;
	right: -18px;
	top: 0;
	transform: translate3d(-35px, 0, 0);
	transition: transform 0.2s ease-in-out;
	width: 30px;
	z-index: 100;
}

.header-search-wrap:target .toggle-header-search.close {
	transform: none;
}

.toggle-header-search .ionicons {
	font-size: 12px;
	transform: scale(2);
}

.site-header .toggle-header-search.close .ionicons {
	position: absolute;
	right: 50%;
	top: calc(50% - 5px);
	transform: scale(3);
}

/* DOC Max Mega Menu (!important overrides)
--------------------------------------------- */

li.mega-menu-item a:hover,
li.mega-menu-item a:focus,
li.mega-current-menu-item a {
	font-weight: 700;
}

.testing-menu-subline {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    display: block;
}

#mega-menu-primary li.menu-item {
    display: inline-flex;
    margin-left: 15px;
}

/* MM Sub-menu
--------------------- */

ul.mega-sub-menu {
	border-radius: 5px !important;
	background: rgba(255, 255, 255, 0.85) !important;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
	backdrop-filter: blur(15px) !important;
	-webkit-backdrop-filter: blur(15px) !important;		
}

ul.mega-sub-menu a {
	text-transform: none !important;
    font-family: var(--font-heading) !important;
    font-size: 1.15rem !important;
    padding: .75rem !important;
    border-radius: 5px !important;
    color: var(--black) !important;
    transition: var(--global-trans) !important;
}


ul.mega-sub-menu a:hover,
ul.mega-sub-menu a:focus {
    /* background: rgba(0,0,0,.05) !important; */
    background-color: var(--red) !important;
    color: var(--white) !important;
    transition: var(--global-trans) !important;
    
}

ul.mega-sub-menu a:before {
    font-size: 2rem !important;
    display: block !important;
    color: var(--purple) !important;
}

ul.mega-sub-menu a:hover:before,
ul.mega-sub-menu a:focus:before {
    color: var(--white) !important;
}

/* Icon consistency
********************************/

/* li#mega-menu-item-30365 ul {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
} */

ul.mega-sub-menu .mega-has-icon a::before {
	margin-bottom: 5px !important;
	line-height: 1 !important;
}

ul.mega-sub-menu a.mega-custom-icon::before {
	background-color: var(--purple) !important;
}

ul.mega-sub-menu a.mega-custom-icon:hover::before,
ul.mega-sub-menu a.mega-custom-icon:focus::before {
	background-color: var(--white) !important;
}

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

.nav-secondary {
	margin-bottom: 10px;
}

.nav-secondary .genesis-nav-menu {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	margin-top: 20px;
}

.nav-secondary .genesis-nav-menu li {
	padding-left: 2px;
}

.nav-secondary .genesis-nav-menu a {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0 10px;
	padding: 0;
	text-transform: uppercase;
}

.nav-secondary .genesis-nav-menu li:first-child a {
	margin-left: 0;
}

.nav-secondary li:not(:first-child) {
	border-left: 1px solid rgba(230, 230, 230, 0.3);
}

.nav-secondary .genesis-nav-menu > li:not(:last-child) {
	border-right-width: 0;
}

/* Accessible Menu
--------------------------------------------- */

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

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

.genesis-nav-menu .menu-item.sfHover > .sub-menu > .menu-item.sfHover > .sub-menu {
	left: 180px;
	margin-left: 0;
}

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


/* Featured Images
---------------------------------------------------------------------------- */

.singular-featured-image-wrap {
	background-color: #ffffff;
	max-height: 660px;
	position: relative;
	z-index: 99;
}

.full-width-content .singular-image {
	display: block;
	width: 100%;
}

.entry-image-link {
	border-width: 0;
}

.image-featured-blog.image-alignleft,
.image-featured-blog.image-alignright {
	margin-bottom: 0;
	max-width: 50%;
}

.image-featured-blog.image-alignleft {
	float: left;
	margin-right: 3em;
}

.image-featured-blog.image-alignleft img {
	margin-bottom: 0;
	margin-right: 0;
}

.image-featured-blog.image-alignright {
	float: right;
	margin-left: 3em;
}

.image-featured-blog.image-alignright img {
	margin-bottom: 0;
	margin-left: 0;
}

.archive-featured-image-wrap.image-aligncenter img {
	margin-bottom: 0;
}

.image-zoom {
	display: block;
	line-height: 1;
	overflow: hidden;
}

.archive-featured-image-wrap.image-zoom img {
	margin-bottom: 0;
	transition: transform 0.9s ease;
}

.archive-featured-image-wrap.image-zoom:focus-within img,
.archive-featured-image-wrap.image-zoom:hover img {
	transform: scale(1.1);
}

.post-image-aligncenter.post-image-featured-blog .image-zoom {
	transform: none;
}

/* Blog Archive
---------------------------------------------------------------------------- */

/* Archive Column Classes
--------------------------------------------- */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/* Custom DOC archives
--------------------------------------------- */

.description-wrap h1 {
    font-size: 3em;
    text-align: center;
}

/* Filter  */

form.searchandfilter {
    padding: 2em;
}

.searchandfilter ul {
    width: 100%;
    display: inline-flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.searchandfilter ul li {
    flex-grow: 1;
}

.searchandfilter ul li input[type="submit"] {
    width: 100%;
}


/* ---- */


.doc-blog-post.entry {
	box-shadow: 0px 10px 30px 0px rgba(0,0,0,.1);
	margin-bottom: 2.564102564102564%;
	border-radius: 5px;
}

.doc-blog-post .entry-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.doc-blog-post .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .doc-blog-post .entry-content {
	padding: 1em 1em 1.5em;
}

.doc-blog-post ul.post-categories {
	padding: 0;
	margin-bottom: .5em;
}

.doc-blog-post ul.post-categories li {
	list-style-type: none;
	display: inline-block;
}

.doc-blog-post ul.post-categories li a {
	font-size: 1rem;
	padding: .25rem .5rem;
	border-radius: 5px;
	line-height: 1;
	border: 1px solid var(--yellow);
	background: var(--yellow);
	color: var(--black);
	font-weight: 400;
	display: block;
}

.doc-blog-post ul.post-categories li a:hover,
.doc-blog-post ul.post-categories li a:focus {
	background: transparent;
	border-color: var(--black);
}

.doc-blog-post h2.entry-title {
	margin-bottom: .5em;
}

.doc-blog-post .entry-summary {
	margin-bottom: 1em;
}

.doc-blog-post  a.more-link {
	box-shadow: none;
	background: transparent;
	border-bottom-width: 5px;
	border-color: var(--red);
	color: var(--black);
	border-radius: 10px;
}

.doc-blog-post  a.more-link:hover,
.doc-blog-post  a.more-link:focus {
	background: var(--red);
	color: var(--white);
	border-color: var(--white);
}

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

/* Entries
--------------------------------------------- */

.entry,
.page .content .entry.archive-entry {
	background-color: #fff;
	margin-bottom: 120px;
	position: relative;
	transition: var(--global-trans);
}

.wp-block-kadence-posts .entry {
    margin-bottom: 1em;
}

.archive-entry:last-of-type {
	margin-bottom: 0;
}

.error404 .content > .entry,
.page .content > .entry,
.single .content > .entry {
	margin-bottom: 0;
}

.archive-no-results .entry,
.search-no-results .entry {
	margin-bottom: 0;
	padding: 100px 40px;
	text-align: center;
}

.archive-no-results .entry p,
.search-no-results .entry p {
	font-size: 22px;
	margin-bottom: 0;
}

.content .entry-header {
	padding: 1em 0 0;
}

.content .entry-content {
	padding: 1em 0;
}

.single .content .entry-content {
	padding: 3em 0 0;
}

.full-width-content.landing-page .entry {
	margin-bottom: 0;
}

.full-width-content.landing-page .content-sidebar-wrap {
	margin-top: 0;
}

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

.entry-content ol > li {
	list-style-type: decimal;
}

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

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

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

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

p.entry-meta {
	display: block;
	font-size: 1rem;
	margin-bottom: 0;
	overflow: hidden;
	text-align: left;
}

.entry-meta + .entry-meta {
	border-top: 1px solid rgba(0, 0, 0, 0.07);
	margin-top: 30px;
	padding-top: 30px;
}

.entry-meta a {
	border-width: 0;
}

.entry-meta a,
.entry-time-date {
	color: var(--black);
	font-weight: 700;
}


.entry-meta a:focus {
	outline: 1px solid rgba(0, 0, 0, 0.2);
	outline-offset: -1px;
}

.entry-meta a:focus,
.entry-meta a:hover {
	color: var(--red);
	text-decoration: none;
}

.entry-header {
	/* margin-bottom: 40px; */
}

.single .entry-footer {
	background-color: transparent;
    border-top: 1px solid var(--yellow);
	clear: both;
	margin: 0;
    margin-top: 2em;
	padding: 2em 0;
}

.content .entry-author,
.content .entry-comments-link,
.content .entry-date {
	display: inline-block;
	line-height: 1.5;
	margin-right: 30px;
	padding: 12px 0;
}

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

.archive .entry-categories,
.blog .entry-categories {
    display: none;
}

span.cat-before {
    font-weight: 700;
    margin-right: 1em;
}

.entry-categories a,
.entry-tags a {
    border: 1px solid var(--red);
    border-radius: 5px;
    color: var(--red);
    display: inline-block;
    line-height: 1;
    padding: 5px;
	    margin: 3px 0;
}

.entry-categories a:hover,
.entry-tags a:hover,
.entry-categories a:focus,
.entry-tags a:focus {
    background-color: var(--red);
    color: var(--white);
}

.bhm-est-reading-time:before {
	content: '\f469';
	margin-right: 10px;
	font-family: "dashicons";
}

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

.pagination {
	clear: both;
	text-align: center;
}

.archive-pagination {
	padding-top: 100px;
}

.archive-pagination a {
	background-color: transparent;
	border: 1px solid var(--red);
	border-radius: 10px;
	color: var(--black);
	font-size: 1rem;
	line-height: 1;
	padding: 10px 15px;
}

.archive-pagination a:hover,
.archive-pagination a:focus,
.archive-pagination li.active a {
	background-color: var(--red);
	box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.2);
	color: var(--white);
	transform: translateY(-1px);
}

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

.archive-pagination li {
	display: inline-block;
	margin-bottom: 10px;
}

/* Genesis Editor Sidebar Options
--------------------------------------------- */

.genesis-title-hidden:not(.unboxed) .content > .entry:not(.type-post) {
	padding-top: 3em;
}

.content-sidebar.genesis-singular-image-visible.genesis-title-hidden .content > .entry,
.sidebar-content.genesis-singular-image-visible.genesis-title-hidden .content > .entry {
	padding-top: 0;
}

.content-sidebar.genesis-singular-image-visible.genesis-title-hidden .singular-image,
.sidebar-content.genesis-singular-image-visible.genesis-title-hidden .singular-image {
	margin-bottom: 40px;
}

.full-width-content.genesis-singular-image-visible .content > .entry::before {
	display: none;
}

.full-width-content.genesis-singular-image-visible .site-inner {
	padding-top: 0;
}

.full-width-content.genesis-singular-image-visible .content > .entry {
	margin-top: -100px;
}

/* Unboxed template
--------------------------------------------- */

.unboxed.full-width-content.genesis-singular-image-visible .site-inner,
.unboxed.full-width-content.genesis-title-hidden .site-inner {
	padding-top: 0;
}

.unboxed .site-inner .wrap::after {
	display: none;
}

.unboxed .content > .entry,
.unboxed .content > .entry:hover {
	background-color: transparent;
	border-width: 0;
	box-shadow: none;
	padding-top: 0;
}

.unboxed.full-width-content.genesis-singular-image-visible .content > .entry {
	margin-top: 120px;
	padding-top: 0;
}

.unboxed.content-sidebar.genesis-singular-image-visible .singular-image,
.unboxed.sidebar-content.genesis-singular-image-visible .singular-image {
	margin-bottom: 40px;
}

.unboxed .content .entry-content,
.unboxed .content .entry-header,
.unboxed .content .entry-footer {
	background-color: transparent;
	padding: 0;
}

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

.comment-respond,
.entry-comments,
.entry-pings {
	font-size: 17px;
}

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

a.comment-author-link {
    background-color: var(--red);
    border: 1px solid var(--red);
    border-radius: 5px;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    padding: 5px;
    width: fit-content;
}

a.comment-author-link:hover,
a.comment-author-link:focus {
    background-color: transparent;
    color: var(--black);
}

.comment-list li {
	padding: 30px 0 0 44px;
}

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

.comment-list .children li li {
	padding-left: 20px;
}

.comment-list .depth-1::before {
	content: "";
	height: calc(100% - 30px);
	width: 1px;
	display: block;
	background-color: rgba(0, 0, 0, 0.07);
	position: absolute;
	left: 15px;
	z-index: -1;
}

.comment-list article {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.07);
	padding: 40px 3em;
	transition: var(--global-trans);
}

.comment-list article:hover {
	border-color: #fff;
	box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, 0.1);
}

.comment-header {
	border-bottom: 1px solid var(--yellow);
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 30px;
	padding-bottom: 30px;
}

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

.comment-author-name {
	font-weight: 700;
}

.comment-content {
	clear: both;
}

.comment-content p {
	margin-bottom: 20px;
}

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

.comment-list .comment-respond {
	padding: 60px 40px 40px;
	margin-bottom: 0;
	margin-top: 0;
}

.comment-list .children .comment-respond {
	padding-left: 0;
	padding-right: 0;
}

.comment-respond {
	margin-top: 80px;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 100%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

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

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


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

.sidebar {
	line-height: 1.75;
	margin-bottom: 100px;
    background-color: #F8F8F8;
}

.sidebar,
.sidebar p {
	font-size: 1rem;
}

.sidebar .widget {
	margin-bottom: 0px;
	padding: 2em;
}

.sidebar .simple-social-icons {
	background-color: transparent;
	border-width: 0;
	box-shadow: none;
	padding: 0;
}

.sidebar ul li {
    margin-bottom: 0;
    line-height: 1.5;
}

.sidebar ul li a {
    color: var(--black);
    border-bottom: none;
}

.sidebar .menu-quick-links-container a {
    display: inline-flex;
    align-items: center;
    column-gap: 15px;
}

.sidebar .menu-quick-links-container a i {
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 0;

    background-color: transparent;
    padding: 5px;
    border-radius: 5px;
}

.sidebar .menu-quick-links-container a:hover i,
.sidebar .menu-quick-links-container a:focus i {
    background-color: var(--red);
    color: var(--white);
    font-weight: 700;
}

.sidebar .widget_recent_entries a {
    border-bottom: 1px solid transparent;
}

.sidebar .widget_recent_entries a:hover,
.sidebar .widget_recent_entries a:focus {
    color: var(--red);
    border-bottom-color: var(--red);
}

.sidebar a.sidebar-donate {
    background-color: var(--red);
    border: 2px solid var(--white);
    box-shadow: 0px 7px 10px 0px rgba(0,0,0,.3);
    color: var(--white);
    cursor: pointer;
    display: block;
    font-size: 1rem;
    padding: 12px 20px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    white-space: normal;
    width: auto;
    border-radius: 10px;
    line-height: 1.3;
    font-weight: 600;
}

.sidebar a.sidebar-donate:hover,
.sidebar a.sidebar-donate:focus {
    background-color: transparent;
	border: 2px solid var(--red);
	border-bottom-width: 5px;
	color: var(--black);   
}


/* Before Footer CTA
---------------------------------------------------------------------------- */

.before-footer-cta {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: var(--yellow);
	/* background-image: url(images/cta-bg.jpg); */
	background-position: 0% 50%;
	background-repeat: no-repeat;
	/* background-size: 65%; */
	background-image: linear-gradient(90deg, rgba(0,0,0,0) 80%, var(--yellow) 80%), url('images/cta-bg.jpg');
	bottom: 0;
	line-height: 1.5;
	padding-bottom: 40px;
	padding-top: 45px;
}

.before-footer-cta .wrap {
	max-width: 1200px;
}

.before-footer-cta p:last-of-type,
.before-footer-cta .widget:last-of-type {
	margin-bottom: 0;
}

.before-footer-cta .widget-wrap {
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);	
    max-width: fit-content;
    padding: 3em 1.5em;
    margin-left: auto;
}

.before-footer-cta .widget-title {
	font-size: 4rem;
	text-align: left;
	line-height: 1;
	margin-bottom: .5em;
}

.before-footer-cta a {
    background: var(--red);
    border: 2px solid var(--white);
	color: var(--white);
    /* border-bottom-width: 5px; */
    display: block;
    cursor: pointer;
    font-size: 1rem;
    padding: 12px 20px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    white-space: normal;
    width: auto;
    border-radius: 10px;
    line-height: 1.3;
    box-shadow: 0px 7px 10px 0px rgba(0,0,0,.3);	
}

.before-footer-cta a:hover,
.before-footer-cta a:focus {
    background: transparent;
    border-color: var(--red);
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
	color: var(--black);
}

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

/* Find a congregation
---------------------------------- */

.footer-find-a-congregation {
    display: inline-flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
	font-size: 1.15rem;
	column-gap: 50px;
}

.footer-find-a-congregation .widget-title {	
	color: var(--white);
	font-size: 2.25rem;
}

.footer-find-a-congregation form#congregation-search-form {
    display: inline-flex;
    column-gap: 5px;
}

.footer-find-a-congregation form#congregation-search-form input:focus {
	outline: 2px solid var(--yellow);
	border: 1px solid var(--black);
}

.footer-find-a-congregation form#congregation-search-form input#congregation-submit {
	background: var(--white);
	border-bottom-width: 5px;
	border-color: var(--red);
	color: var(--black);
	margin: 0;
}

.footer-find-a-congregation form#congregation-search-form input#congregation-submit:hover,
.footer-find-a-congregation form#congregation-search-form input#congregation-submit:focus {
	background: var(--red);
	color: var(--white);
}

table#congregation-results th,
table#congregation-results td {
    width: 40%;
    word-break: break-word;
}

table#congregation-results th:first-child,
table#congregation-results td:first-child {
    width: 40%;
}


table#congregation-results th:last-child,
table#congregation-results td:last-child {
    width: 20%;
}

.page .entry-content .congregation_search_form {
    margin-bottom: 2em;
}

.connect-with-doc a i.wpel-icon.fa.fa-external-link,
.simple-social-icons i.wpel-icon.fa.fa-external-link {
	position:absolute !important;
	left:-10000px !important;
	top:auto !important;
	width:1px !important;
	height:1px !important;
	overflow:hidden !important;
}

/* Table responsiveness */

@media screen and (max-width: 600px) {
	table#congregation-results {
		margin-bottom: 20px;
	}

  table#congregation-results,
  #congregation-results thead,
  #congregation-results tbody,
  #congregation-results th,
  #congregation-results tr,
  #congregation-results td {
    display: block;
  }

  #congregation-results thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #congregation-results tr { border: 1px solid #ccc; margin-bottom: 5px; }

  #congregation-results td {
    border: none;
    position: relative;
    padding-left: 40%;
    /* text-align: right; */
	width: 100% !important;
  }

  #congregation-results td:before {
    content: attr(data-title);
    position: absolute;
    left: 0;
    width: 40%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
	padding-left: 10px;
  }

  #congregation-results  tbody {
	border-bottom: none;
  }
}


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

.site-footer {
	background-color: var(--black);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	bottom: 0;
	font-size: 13px;
	line-height: 1;
	padding-bottom: 40px;
	padding-top: 40px;
	width: 100%;
	z-index: 1;
}

.site-footer .wrap {
	max-width: 1200px;
}

.site-footer a,
.site-footer p,
.site-footer .genesis-nav-menu .current-menu-item > a,
.site-footer .genesis-nav-menu a {
	border-top-width: 0;
	border-bottom: 1px solid transparent;
	color: #fff;
}

.site-footer .wrap a {
	padding-bottom: 2px;
}

.site-footer a:hover,
.site-footer a:focus,
.site-footer .genesis-nav-menu a:focus,
.site-footer .genesis-nav-menu a:hover,
.site-footer .genesis-nav-menu .current-menu-item > a:focus,
.site-footer .genesis-nav-menu .current-menu-item > a:hover {
	border-top: 0;
	border-bottom-color: currentColor;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

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

.site-footer .footer-copyright-container {
	color: #fff;
	float: left;
	max-width: 30%;
}

.site-footer .footer-copyright {
	float: left;
}


.site-footer .footer-logo {
	float: left;
	height: 80px;
	/* margin: 0 20px 10px 0; */
	width: auto;
}

.doc-logo-wrappers {
    display: inline-flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

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

.site-footer .footer-widgets {
	color: #fff;
	float: right;
	max-width: 70%;
	width: 70%;
}

.site-footer .widget {
	line-height: 1.875;
	margin-bottom: 20px;
}

.site-footer .simple-social-icons ul li {
	margin: 0 3px 10px !important;
}

.site-footer .simple-social-icons ul li:first-of-type {
	margin-left: 0 !important;
}

.site-footer .featured-content .entry,
.site-footer .featured-content .entry-time,
.site-footer .featured-content .entry-header,
.site-footer .featured-content .entry-content {
	color: #fff;
}

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

.copyright {
    text-align: center;
    font-size: 1rem;
    padding: 1em;
}

/* Footer Column Classes
--------------------------------------------- */

.footer-widgets {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-widgets .five-sixths,
.footer-widgets .four-sixths,
.footer-widgets .one-fourth,
.footer-widgets .one-half,
.footer-widgets .one-sixth,
.footer-widgets .one-third,
.footer-widgets .three-fourths,
.footer-widgets .three-sixths,
.footer-widgets .two-fourths,
.footer-widgets .two-sixths,
.footer-widgets .two-thirds {
	float: right;
	margin-left: 0;
	padding-left: 20px;
}

.footer-widgets .no-grid {
	flex-basis: 100%;
}

.footer-widgets .one-half,
.footer-widgets .three-sixths,
.footer-widgets .two-fourths {
	flex-basis: 48.717948717948715%;
}

.footer-widgets .one-third,
.footer-widgets .two-sixths {
	flex-basis: 31.623931623931625%;
}

.footer-widgets .four-sixths,
.footer-widgets .two-thirds {
	flex-basis: 65.81196581196582%;
}

.footer-widgets .one-fourth {
	flex-basis: 23.076923076923077%;
}

.footer-widgets .three-fourths {
	flex-basis: 74.35897435897436%;
}

.footer-widgets .one-sixth {
	flex-basis: 14.52991452991453%;
}

.footer-widgets .five-sixths {
	flex-basis: 82.90598290598291%;
}

.footer-widgets .first {
	clear: both;
	margin-left: 0;
	padding-left: 0px;
}

/* Custom Classes
---------------------------------------------------------------------------- */


.alex-faqs a, .alex-faqs {
    height: 100% !important;
}


/* Glass blur */

/* Image backgrounds */

.kb-row-layout-wrap.ac-glass-blur {
    position: relative;
    overflow: hidden;
	
}

.kb-row-layout-wrap.ac-glass-blur:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    filter: blur(15px);
    z-index: 0;
    top: 0;
    left: 0;
}

/* Columns */
.wp-block-kadence-column.ac-glass-blur .kt-inside-inner-col {
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);	
}

/* Home quick links
--------------------------------------------------- */

.home-ql {
	width: 100%;
	justify-content: stretch;
	align-content: stretch;
}

.home-ql .home-ql-child {
    flex: 0 0 24%;
    height: 100%;
    flex-grow: 1;
}


/* New here - Find a Congregation
--------------------------------------------------- */
@media only screen and (min-width: 800px) {
	.cong-new-here form#congregation-search-form {
		display: inline-flex;
		gap: 10px;
		width: 100%;
	}
}

/* Kadence overrides
---------------------------------------------------------------------------- */

/* Recent Posts */
.wp-block-kadence-posts .loop-entry.type-post .entry-taxonomies .category-style-pill a {
	background-color: var(--yellow);
	color: var(--black) !important;
	font-weight: 400;
	border: 1px solid var(--yellow) !important;
	text-transform: none;
}

.wp-block-kadence-posts .loop-entry.type-post .entry-taxonomies .category-style-pill a:hover,
.wp-block-kadence-posts .loop-entry.type-post .entry-taxonomies .category-style-pill a:focus {
	background: transparent;
	border: 1px solid var(--black) !important;
}

/* Recent posts -- continue reading */

a.post-more-link {
    border-radius: 10px;
    border: 2px solid var(--red);
	border-bottom-width: 5px;
    padding: 12px 20px;
	letter-spacing: 0 !important;
	display: block;
	width: fit-content;
	margin-top: 1em;
}

a.post-more-link:hover,
a.post-more-link:focus {
	background: var(--red);
	color: var(--white) !important;
}


/*
	MINISTRIES
	CPT for DOC Ministries
	
***********************************************/

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

.ministry-archive-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
        padding-top: 2em;
}

.ministry-archive-header h1 {
    color: var(--red);
    font-size: 5rem;
    margin-bottom: 10px;
}

.ministry-archive-header p {
    max-width: 500px;
}

.ministry-archive-header img {
    box-shadow: -20px 14px 84px -10px rgba(0, 0, 0, 0.25);
}


/* Ministry Search
---------------------------------------- */

.post-type-archive-ministries .wpv-filter-form {
    margin-bottom: 2em;
    margin-top: -1em;
}

.ministry-search-outer-wrap {
    background-color: var(--yellow);
    margin-bottom: 2em;
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    padding: 4em 0px 3em;
}

.ministry-search-inner-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    padding: 0 50px;
}

.ministry-search-inner-wrap .form-group {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    column-gap: 1em;
    align-items: center;
}

.ministry-search-inner-wrap label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.ministry-search-inner-wrap .ministry-search label {
    width: 100%;
    flex-basis: 100%;
}

.ministry-search-inner-wrap .ministry-search input:not([type="submit"]) {
    width: 75%;
}

.ministry-search-inner-wrap .ministry-search input[type="submit"] {
    flex-grow: 1;
    padding: 10px 30px;
}




/* Ministry Archive
---------------------------------------- */


.row.ministry-small-view {
	margin-bottom: 2em;
}

.ministry-row {
    align-items: stretch;
        align-content: stretch;
}

.ministry-col-wrap {
    margin-bottom: 1.5em;
}

.ministry-container {
background: var(--white);
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 1.5em;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.ministry-logo-wrap {
    background: rgba(0,0,0,.05);
    padding: 1em;
    min-height: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ministry-logo-wrap img {
    max-height: 100%;
}

.ministry-content-wrapper {
    padding: 1.5em;
    display: flex;
    flex-direction: column;
        height: 100%;
}

.ministry-content-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .25em;
}

.ministry-content-wrapper p {
	margin-bottom: 1em;
}

.ministry-links {
	display: inline-flex;
	gap: 1em;
	width: 100%;
        margin-top: auto;
}

.ministry-view-links {
    display: flex;
    flex-direction: column;
}

.ministry-links a {
    display: block;
    border: 2px solid;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
	padding: 12px 20px;
	width: 100%;
	line-height: 1;
	letter-spacing: .5px;
}

.ministry-links a i {
	margin-left: 1em;
}

a.ministry-button.ministry-info {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--white);
	box-shadow: 0px 7px 10px 0px rgba(0,0,0,.3);
}

a.ministry-button.ministry-website {
    border-color: var(--white);
}

a.ministry-button:hover,
a.ministry-button:focus {
	border-color: var(--yellow);
	background-color: var(--yellow);
	color: var(--black);
	box-shadow: none;
}




/* Ministry Single
---------------------------------------- */

.single-ministries .featured-image-container {
    margin-bottom: 2em;
}

.single-ministries h1 {
	color: var(--red);
	font-weight: 600;
	margin-bottom: 10px;
}

.ministry-social-wrapper {
    margin-bottom: 2em;
}

a.ministry-social {
    font-size: 1.75rem;
    color: var(--purple);
    border: 1px solid transparent;
    padding: 5px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border-radius: 10px;
}

a.ministry-social:hover,
a.ministry-social:focus {
	background-color: var(--purple);
	color: var(--white);
}

.ministry-contact-wrapper h3 {
    font-weight: 700;
	    margin-bottom: 0.25em;
}

.contact-info-wrap {
    display: inline-flex;
    column-gap: 3em;
}

.contact-info-wrap i {
	color: var(--purple);
	margin-right: 8px;
}

/* Events
---------------------------------------------------------------------------- */
/* Global  */

.tribe-common p {
    font-family: var(--font-body);
    font-size: 1rem;
}

.tribe-filter-bar * {
    font-family: var(--font-body);
}

.post-type-archive-tribe_events .site-inner h1,
.post-type-archive-tribe_events .site-inner h2,
.post-type-archive-tribe_events .site-inner h3,
.post-type-archive-tribe_events .site-inner h4,
.post-type-archive-tribe_events .site-inner h5,
.post-type-archive-tribe_events .site-inner h6 {
    font-family: var(--font-heading);
}

.tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button {
    box-shadow: none;
    background-color: var(--red);
    border: 2px solid var(--white);
    border-radius: 5px;
    color: var(--white);    
}

.tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button:hover,
.tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button:focus {
    background-color: transparent;
    border: 2px solid var(--red);
    color: var(--black);
}



/* Events Archive
---------------------------------------- */

/* Filter  */
.tribe-filter-bar .tribe-filter-bar-c-pill--has-selections .tribe-filter-bar-c-pill__remove-button,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion .tribe-filter-bar-c-filter__toggle,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion button.tribe-filter-bar-c-filter__toggle,
.tribe-filter-bar .tribe-filter-bar-c-filter__toggle, .tribe-filter-bar button.tribe-filter-bar-c-filter__toggle {
    box-shadow: none;
    background-color: var(--red);
    border: 2px solid var(--white);
    padding: .5em 1em;
    border-radius: 5px;
    color: var(--white);
}

.tribe-filter-bar .tribe-filter-bar-c-pill--has-selections .tribe-filter-bar-c-pill__remove-button {
    padding: .5em;
}

.tribe-filter-bar .tribe-filter-bar-c-pill__remove-button-icon path,
.tribe-filter-bar .tribe-filter-bar-c-filter__toggle-minus-icon path,
.tribe-filter-bar .tribe-filter-bar-c-filter__toggle-plus-icon path {
    stroke: var(--white);
}

.tribe-filter-bar .tribe-filter-bar-c-pill--has-selections .tribe-filter-bar-c-pill__remove-button:hover,
.tribe-filter-bar .tribe-filter-bar-c-pill--has-selections .tribe-filter-bar-c-pill__remove-button:focus,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion .tribe-filter-bar-c-filter__toggle:focus,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion .tribe-filter-bar-c-filter__toggle:hover,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion button.tribe-filter-bar-c-filter__toggle:focus,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion button.tribe-filter-bar-c-filter__toggle:hover,
.tribe-filter-bar .tribe-filter-bar-c-filter__toggle:focus, .tribe-filter-bar .tribe-filter-bar-c-filter__toggle:hover,
.tribe-filter-bar button.tribe-filter-bar-c-filter__toggle:focus, .tribe-filter-bar button.tribe-filter-bar-c-filter__toggle:hover {
    background-color: transparent;
    border: 2px solid var(--red);
    color: var(--black);
}

.tribe-filter-bar .tribe-filter-bar-c-pill--has-selections .tribe-filter-bar-c-pill__remove-button:hover *,
.tribe-filter-bar .tribe-filter-bar-c-pill--has-selections .tribe-filter-bar-c-pill__remove-button:focus *,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion .tribe-filter-bar-c-filter__toggle:focus *,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion .tribe-filter-bar-c-filter__toggle:hover *,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion button.tribe-filter-bar-c-filter__toggle:focus *,
.tribe-filter-bar .tribe-filter-bar-c-filter--accordion button.tribe-filter-bar-c-filter__toggle:hover *,
.tribe-filter-bar .tribe-filter-bar-c-filter__toggle:focus, .tribe-filter-bar .tribe-filter-bar-c-filter__toggle:hover *,
.tribe-filter-bar button.tribe-filter-bar-c-filter__toggle:focus, .tribe-filter-bar button.tribe-filter-bar-c-filter__toggle:hover * {
    stroke: var(--black);
}

.tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill.tribe-filter-bar-c-filter--dropdown .tribe-filter-bar-c-filter__filter-fields, .tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill.tribe-filter-bar-c-filter--multiselect .tribe-filter-bar-c-filter__filter-fields, .tribe-filter-bar .tribe-filter-bar-c-filter--dropdown .tribe-filter-bar-c-filter__container, .tribe-filter-bar .tribe-filter-bar-c-filter--multiselect .tribe-filter-bar-c-filter__container {
    margin-top: 0 !important;
}

.tribe-filter-bar .tribe-filter-bar-c-dropdown .select2-results__option:not(:last-child) {
    border-bottom: 1px solid var(--grey);
}

/* List  */
/* .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-details, */
.tribe-events-view--list article {
    width: 100% !important;
}

.tribe-events .tribe-events-calendar-list__event-row--featured .tribe-events-calendar-list__event-date-tag-datetime:after {
    background-color: var(--purple);
}

.tribe-common .tribe-common-c-svgicon,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-datetime-featured-text {
    color: var(--purple);
}


/* Month  */

.tribe-events-calendar-month__day-cell article {
    width: 100%;
}

.tribe-events .tribe-events-calendar-month__multiday-event-bar {
    background-color: rgba(162, 50, 190, .1) !important;
}

.tribe-common .tribe-common-c-btn-border,
.tribe-common a.tribe-common-c-btn-border {
    box-shadow: none;
    background-color: var(--red);
    border: 2px solid var(--white);
    border-radius: 5px;
    color: var(--white);
}

.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover {
    background-color: transparent;
    border-color: var(--red);
    color: var(--red)
}

.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active *,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus *,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within *,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover *,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active *,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus *,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover *  {
    stroke: var(--red);
}


/* Events Single
---------------------------------------- */

.tribe-embed a, .tribe-events-event-meta a, .tribe-events-single a {
    color: var(--red);
}

.tribe-events-c-subscribe-dropdown * {
    stroke: var(--white);
}



/* Resources
---------------------------------------------------------------------------- */

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

.resources-outer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
    margin-bottom: 3em;
}

.resources-outer-wrapper h2,
.resource-item-wrap h3 {
    font-weight: 600;
}

.resources-outer-wrapper h2 {
    font-size: 2rem;
}

.resource-item-wrap {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 5px;
    padding: 1em 1em 1.5em;
}

.resource-item-wrap h3 {
    margin-bottom: .25em;
}

.resource-item-wrap p {
    margin-bottom: 1em;
}

.resource-item-wrap .resource-link,
a.toc-misc-resources {
    background-color: transparent;
    border: 2px solid var(--red);
    border-bottom-width: 5px;
    border-radius: 10px;
    color: var(--black);
    display: block;
    font-size: 1rem;
    font-weight: 600;
    padding: .5em 1em;
    text-transform: uppercase;
}

.resource-item-wrap .resource-link:hover,
.resource-item-wrap .resource-link:focus,
a.toc-misc-resources:hover,
a.toc-misc-resources:focus {
    background: var(--red);
    color: var(--white);
}

a.resource-link.resource-link-external i {
    color: var(--red);
    font-size: .65em;
    vertical-align: super;
}

i.wpel-icon.fa.fa-external-link {
    vertical-align: super;
    font-size: .65em;
}

.resource-item-wrap .resource-link:hover i,
.resource-item-wrap .resource-link:focus i {
    color: var(--white);
}

/* ToC */

.resource-index-toc {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
}


.resource-toc ul {
    padding-left: 0;
    list-style-type: none;
}

.resource-toc ul li {
    font-size: 1.25rem;
    margin-bottom: 10px;
    list-style-type: none;
}

.toc-misc-resources-li {
    margin-top: 2em;
}

/* Misc Resources List */

ul.misc-resources-list {
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
}

ul.misc-resources-list li {
    list-style-type: none;
}

ul.misc-resources-list li a,
ul.misc-resources-list li strong {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Syne', sans-serif;
}

/* Recent Resources by category */

.recent-resources-by-cat {
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
    margin-bottom: 2em;    
}

.recent-resources-by-cat  .resource-item-wrap {
    padding: 2em;
}

.recent-resources a.button {
    margin: 0 auto;
    text-align: center;
    display: block;
    width: auto;
    max-width: fit-content;
}

/* Heroes Assemble
---------------------------------------------------------------------------- */

ul.lhea-heroes {
    gap: 1em !important;
    height: 100% !important;
    display: grid !important;
    justify-content: center;
    align-items: start;
    justify-items: start;
    grid-template-columns: repeat(3, 1fr);
    /* flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start; */
}

.lhea-heroes li {
    background: var(--white) !important;
    padding: 1em !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
}

li.lhea-hero.masonry-brick {
    padding: 2em !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
}

.lhea-member-style-10 * {
    background: none !important;
    text-align: left !important;
}

h3.lhea-member-name {
    color: var(--black) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.lhea-member-position {
    font-size: 1rem !important;
    color: var(--black) !important;
    font-weight: 400 !important;
}

/* Filter */

button.lhea-term-filter {
    border-radius: 10px !important;
    border: 2px solid var(--red) !important;
    border-bottom-width: 5px !important;
    color: var(--black) !important;
    padding: 12px 20px !important;
    letter-spacing: 0 !important;
    background: var(--white) !important;   
}

button.lhea-term-filter.filter-activated {
    background-color: var(--red) !important;
    border: 2px solid var(--white) !important;
    box-shadow: none !important;
    color: var(--white) !important;
    cursor: pointer !important;
    font-size: 1.15rem !important;
    padding: 12px 20px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: normal !important;
    width: auto !important;
    border-radius: 10px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;    
}

button.lhea-term-filter:hover,
button.lhea-term-filter:focus {
    background: var(--yellow) !important;
    border-color: var(--yellow) !important;
    box-shadow: none !important;
    color: var(--black) !important;
}

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

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

	.before-footer-cta .wrap,
	.site-footer .wrap,
	.content-sidebar-wrap {
		max-width: 960px;
	}

	.sidebar-content .content,
	.content-sidebar .content {
		max-width: 600px;
	}

	.post-image-alignleft.post-image-featured-blog h2.entry-title,
	.post-image-alignright.post-image-featured-blog h2.entry-title {
		font-size: 32px;
	}

	.post-image-alignleft.post-image-featured-blog .more-link-wrap,
	.post-image-alignleft.post-image-featured-blog .more-link-wrap {
		background-color: #ffffff;
		clear: both;
		margin-bottom: -3em;
		margin-left: -3em;
		margin-right: -3em;
	}

	.post-image-alignleft.post-image-featured-blog .more-link-wrap .more-link {
		margin: 0;
		width: 100%;
	}

	.sidebar {
		max-width: 300px;
	}

	.site-footer .footer-copyright-container,
	.site-footer .footer-widgets {
		float: none;
		max-width: 100%;
		width: 100%;
	}

}

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

	.before-footer-cta .wrap,
	.site-footer .wrap,
	.content-sidebar-wrap {
		max-width: 720px;
	}

	.content,
	.content-sidebar .content,
	.full-width-content .content,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu a,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu,
	.js .nav-primary,
	.sidebar,
	.sidebar-content .content {
		max-width: 100%;
		width: 100%;
	}

	.sidebar {
		padding-top: 60px;
	}

	.sidebar .widget {
		padding: 3em;
	}

	.full-width-content.landing-page .site-inner {
		padding-top: 100px;
	}

	.breadcrumb-link-wrap a {
		padding: 20px 0;
	}

	.breadcrumb .breadcrumb-link-wrap a::before,
	.breadcrumb .breadcrumb-link-wrap a::after {
		display: none;
	}

	.breadcrumb .separator {
		clip: auto;
		height: unset;
		padding: 0 20px;
		position: static !important;
		width: unset;
	}

	.post-image-alignleft.post-image-featured-blog .entry-header,
	.post-image-alignright.post-image-featured-blog .entry-header {
		margin-bottom: 20px;
	}

	.full-width-content.genesis-singular-image-visible .content > .entry {
		margin-top: -50px;
	}

	.nav-primary {
		float: none;
		text-align: left;
	}

	.nav-primary .genesis-nav-menu {
		display: block;
	}

	.genesis-nav-menu li,
	.genesis-nav-menu.menu-primary > li:not(:last-child) {
		border-width: 0;
		float: none;
	}

	.genesis-responsive-menu {
		clear: both;
		display: none;
		position: relative;
	}

	.genesis-responsive-menu .wrap {
		padding: 0;
	}

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

	.menu-toggle,
	.sub-menu-toggle {
		background-color: transparent;
		border-width: 0;
		color: var(--black);
		display: block;
		font-family: 'Inter', sans-serif;
		margin: 0 auto;
		overflow: hidden;
		text-align: center;
		visibility: visible;
		width: auto;
	}

	.menu-toggle.activated::before {
		content: "";
	}

	.menu-toggle:focus,
	.menu-toggle:hover,
	.sub-menu-toggle:focus,
	.sub-menu-toggle:hover {
		background-color: transparent;
		border-width: 0;
		box-shadow: none;
		color: var(--red);
		outline: 1px solid #eaeaea;
		outline-offset: -1px;
	}

	.js .genesis-nav-menu .sub-menu a,
	.js #genesis-mobile-nav-primary {
		background-color: #fff;
		color: var(--black);
	}

	#genesis-mobile-nav-primary.activated {
		border-bottom-color: transparent;
	}

	#genesis-mobile-nav-primary:focus,
	#genesis-mobile-nav-primary:hover {
		color: var(--red);
	}

	.menu-toggle {
		float: right;
		font-size: 15px;
		font-weight: 400;
		line-height: 21px;
		padding: 29px 25px;
		position: relative;
		z-index: 1000;
	}

	.menu-toggle::before {
		font-size: 1.25rem;
		margin-right: 5px;
		text-rendering: auto;
		vertical-align: bottom;
	}

	.sub-menu-toggle {
		background-color: transparent;
		float: right;
		font-size: 1rem;
		padding: 14px 25px;
		position: absolute;
		right: 0;
		top: 2px;
		z-index: 100;
	}

	.sub-menu-toggle::before {
		display: inline-block;
		text-rendering: auto;
		transform: rotate(0);
		transition: transform 0.25s ease-in-out;
	}

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

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

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

	.genesis-responsive-menu .genesis-nav-menu a:focus,
	.genesis-responsive-menu .genesis-nav-menu a:hover,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu .menu-item a:focus,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu .menu-item a:hover,
	.genesis-responsive-menu.nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a {
		background-color: transparent;
		color: var(--red);
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item a,
	.genesis-responsive-menu .toggle-header-search {
		border: none;
		margin-bottom: 1px;
		padding: 15px 20px;
		width: 100%;
	}

	.genesis-responsive-menu.nav-primary .genesis-nav-menu .sub-menu a {
		color: var(--black);
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item > a:focus ul.sub-menu,
	.genesis-responsive-menu .genesis-nav-menu .menu-item > a:focus ul.sub-menu .sub-menu {
		left: 0;
		margin-left: 0;
	}

	.genesis-responsive-menu .genesis-nav-menu .sub-menu {
		border-width: 0;
		clear: both;
		display: none;
		margin: 0;
		opacity: 1;
		padding-left: 15px;
		position: static;
		width: 100%;
	}

	.genesis-responsive-menu .toggle-header-search {
		display: none;
	}

    /*
        MINISTRIES
        CPT for DOC Ministries
        
    ***********************************************/

    /* Ministry Archive
    ---------------------------------------- */

    .ministry-links {
        flex-direction: column;
    }


}

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

	.before-footer-cta,
	.site-footer {
		position: static;
	}

	.wp-custom-logo .title-area {
		display: none;
	}

	.before-footer-cta .wrap,
	.content-sidebar-wrap,
	.site-footer > .wrap {
		max-width: 100%;
		padding-left: 12%;
		padding-right: 12%;
	}

	.site-header {
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	}

	.full-width-content.landing-page .content {
		margin-bottom: 0;
	}

	h1,
	.entry-title {
		font-size: 2.25rem;
	}

	h2 {
		font-size: 32px;
	}

	.content .entry-header {
		margin-bottom: 20px;
	}

	.content-sidebar .sidebar,
	.sidebar,
	.sidebar-content .sidebar {
		clear: both;
		float: none;
	}

	.content > .entry,
	.sidebar {
		margin-left: auto;
		margin-right: auto;
		max-width: 522px;
	}

	.image-featured-blog.image-alignleft,
	.image-featured-blog.image-alignright {
		float: none;
		margin-left: 0;
		margin-right: 0;
		max-width: none;
	}

	.post-image-featured-blog .more-link-wrap {
		margin-top: 2em;
	}

	.archive-description .description-wrap {
		grid-template-columns: 1fr;
	}

	.after-entry,
	.author-box {
		padding: 40px 3em;
	}

	.author-box .avatar {
		margin-top: -90px;
	}

	.after-entry .enews-widget form {
		margin-left: 0;
		margin-right: 0;
	}

	.before-footer-cta a.button {
		float: none;
		margin: 10px auto;
	}

    /* Footer  */
    .footer-find-a-congregation {
        display: flex;
        flex-direction: column;
    }

	/* Mobile menu  */

	button.mega-toggle-animated.mega-toggle-animated-slider {
		background-color: var(--red) !important;
		padding: 1em !important;
		
	}

	#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner::before, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner::after {
		background-color: var(--white) !important;
	}

	ul.mega-sub-menu .mega-has-icon,
	ul.mega-sub-menu .mega-has-icon a {
		padding: 0 !important;
	}

	ul.mega-sub-menu .mega-has-icon {
		margin-bottom: 10px !important;
	}

	ul.mega-sub-menu .mega-has-icon a,
	ul.mega-sub-menu .mega-has-icon a::before {
		display: flex !important;
		flex-direction: row;
		align-content: center;
    	align-items: center;
	}

	ul.mega-sub-menu .mega-has-icon a::before {
		margin-right: 15px !important;
		width: 40px !important;
		    justify-content: center;
	}

    .footer-widgets {
        justify-content: flex-start;
    }

    .footer-widgets .widget:not(:last-child) {
        margin-right: 50px;
    }



    /*
        MINISTRIES
        CPT for DOC Ministries
        
    ***********************************************/

    /* Ministry Archive
    ---------------------------------------- */

    .ministry-archive-header .ministry-head-col {
        flex: 0 0 100%;
        max-width: 100%;        
    }

    .ministry-archive-header p {
        margin-bottom: 2em;
    }


    .ministry-row {
        flex-direction: column;
    }

    .ministry-col-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }


    /*
        RESOURCES
        
    ***********************************************/

    .resource-categories .category-section {
        margin-bottom: 100px;
    }

    ul.misc-resources-list,
    .resources-outer-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }



    /*
        STAFF
        
    ***********************************************/

    ul.lhea-heroes {
            grid-template-columns: repeat(2, 1fr);
    }

}

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

	.admin-bar .site-header {
		position: relative;
		top: 0;
	}

	.before-footer-cta .wrap,
	.content-sidebar-wrap,
	.site-footer > .wrap {
		max-width: 100%;
		padding-left: 6%;
		padding-right: 6%;
	}

	.before-footer-cta .button {
		display: block;
	}

	.content .entry::after,
	.content .entry::before {
		display: none;
	}

    /*
        MINISTRIES
        CPT for DOC Ministries
        
    ***********************************************/

    /* Ministry Archive
    ---------------------------------------- */

    .ministry-search-inner-wrap .form-group {
        gap: 1em;
    }

    .ministry-search-inner-wrap .ministry-search input:not([type="submit"]) {
        width: 100%;
    }

}

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

	.site-header {
		min-height: unset;
	}

	.title-area,
	.wp-custom-logo .title-area {
		max-width: 220px;
	}

	.menu-toggle {
		padding: 29px 17px;
	}

	.wp-custom-logo .menu-toggle {
		padding: 17px;
	}

	.full-width-content.landing-page .site-inner,
	.site-inner {
		padding-top: 80px;
	}

	.content-sidebar-wrap,
	.entry,
	.entry-comments,
	.entry-pings,
	.page .content .entry.archive-entry,
	.sidebar {
		margin-bottom: 80px;
	}

	.comment-respond,
	.unboxed.full-width-content.genesis-singular-image-visible .content > .entry {
		margin-top: 80px;
	}

	.content .entry-header {
		padding: 2em 2em 0;
	}

	.content .entry-content {
		padding: 0 2em 2em;
	}

	.genesis-title-hidden:not(.unboxed) .content > .entry:not(.type-post) {
		padding-top: 2em;
	}

	.after-entry,
	.author-box,
	.comment-list article,
	.entry-footer,
	.sidebar .widget {
		padding: 2em;
	}

	.post-image-alignleft.post-image-featured-blog .more-link-wrap,
	.post-image-alignleft.post-image-featured-blog .more-link-wrap {
		margin-left: -2em;
		margin-right: -2em;
	}

    .doc-blog-post.entry {
        width: 100%;
    }


    /* Footer  */
    .footer-widgets.widget-area {
        flex-direction: column;
        row-gap: 2em;
    }

    .footer-widgets .widget:not(:last-child) {
        margin-right: 0px;
    }

    .before-footer-cta {
        background-size: 165%;
    }

    /* Misc  */

    .center-mobile {
        text-align: center;
    }

    /* Font adjustments */

    h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
        font-size: 1.25em;
    }

    .before-footer-cta .widget-title {
        font-size: 1.75em;
    }

    h1.has-larger-font-size,
    h2.has-largest-font-size {
        font-size: 3.5rem !important;
    }

    h2.has-larger-font-size,
    h3.has-largest-font-size {
        font-size: 2rem !important;
    }

    .ministry-archive-header h1 {
        font-size: 3.5rem;
    }

    .mobile-long strong {
        font-size: 1em;
    }

    /*
        RESOURCES
        
    ***********************************************/

    ul.misc-resources-list,
    .resources-outer-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    /*
        STAFF
        
    ***********************************************/

    ul.lhea-heroes {
            grid-template-columns: repeat(1, 1fr);
    }
    li.lhea-hero.masonry-brick {
        padding: 1em !important;
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
    }

    /* Find a Congregation  */

    /* table#congregation-results {
        display: block;
        overflow-x: scroll;
        width: 100%;
    }

    table#congregation-results td, table#congregation-results th {
       
        min-width: fit-content;
        word-break: keep-all;
    } */


}
