/* =========================================================
   THEME OVERRIDES
   Load AFTER bootstrap.min.css
   ========================================================= */


/* =========================================================
   COLOR VARIABLES (SAGE GREEN THEME)
   ========================================================= */

:root {
    --cus-bg: #ffffff;
    --cus-text: #2f3a2f;
    --cus-text-soft: #5e6f5e;

    --cus-charcoal: #4e6a4e;
    --cus-charcoal-dark: #2f4a2f;
    --cus-charcoal-light: #dfe7df;

    --cus-accent-very-soft: #f6f9f6;
    --cus-accent-soft: #e7efe7;
    --cus-accent-medium: #c9d8c9;
    --cus-accent-strong: #6f8f6f;

    --cus-border: #e2eae2;
    --cus-border-medium: #c8d6c8;
    --cus-border-dark: #8fa88f;

    --cus-white: #ffffff;

    --cus-shadow-soft: rgba(0, 40, 0, 0.08);
    --cus-shadow-softer: rgba(0, 40, 0, 0.05);
    --cus-shadow-focus: rgba(40, 80, 40, 0.25);
	
	--bs-primary: #7F9A7F;
    --btn-primary-bg: #7F9A7F;
}

body.mce-content-body .btn-primary {
    background-color: var(--btn-primary-bg) !important;
    border-color: var(--btn-primary-bg) !important;
    color: #fff !important;
}

/* =========================================================
   STYLE CUSTOMIZE HERE: GLOBAL BASE / FONTS
   ========================================================= */

body {
    background-color: var(--cus-bg);
    color: var(--cus-text);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.428571429;
}


a,
a:link {
    color: var(--cus-text);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--cus-text-soft);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--cus-text);
    font-family: "Open Sans", Arial, sans-serif;
}

h1,
.h1 {
    font-size: 24px;
    font-weight: bold;
}

h2,
.h2 {
    font-size: 18px;
}

h3,
.h3 {
    font-size: 16px;
}

h4,
.h4 {
    font-size: 14px;
}

h5,
.h5 {
    font-size: 12px;
}

h6,
.h6 {
    font-size: 11px;
}

h1,
.h1 {
    font-size: 24px !important;
    font-weight: bold !important;
}

h2,
.h2 {
    font-size: 18px !important;
	font-weight: bold !important;
}

h3,
.h3 {
    font-size: 16px !important;
	font-weight: bold !important;
}

body {
    font-size: 16px !important;
}

hr {
    border: none;
    border-top: 1px solid var(--cus-border-medium);
    margin: 40px auto;
    width: 60%;
}

/* HERE - MIGHT NOT BE USING */
.pinkGradient,
.navHeaderClass {
    background: var(--cus-accent-very-soft);
    background: radial-gradient(circle, var(--cus-white) 0%, var(--cus-accent-soft) 100%);
}

/* =========================================================
   HEADLINE BACKER 
   ========================================================= */

.headline {
    /* background: linear-gradient(
        to bottom,
        #e8efe8 0%,
        #b7cbb7 40%,
        #7f9a7f 100%
    ); */
	
	background-color: #7f9a7f;

    color: #ffffff;

    padding: 10px 20px 12px 20px;  /* ?? tighter top/bottom */
    margin-top: 0;               /* ?? kill top gap */
    margin-bottom: 25px;         /* ?? space below */

    text-align: left;            /* ?? LEFT ALIGN */

    box-shadow:
        inset 0 -1px 3px rgba(0,0,0,0.12),
        0 2px 6px rgba(0,0,0,0.12);
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 96px);
    font-weight: 600;
    line-height: 1.05;
    margin: 0;
}

.site-sub-title {
    font-size: clamp(15px, 2.2vw, 28px);
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
}


.headline .site-title {
    color: #ffffff;
    margin: 0;

    letter-spacing: 1.5px;

    text-shadow:
        0 1px 2px rgba(0,0,0,0.35),
        0 0 6px rgba(255,255,255,0.15);
}

@media (max-width: 480px) {
	.site-title {
		font-size: 28px;
	}

	.site-sub-title {
		font-size: 14px;
	}
}


/* =========================================================
   STYLE CUSTOMIZE HERE: LAYOUT AREAS
   ========================================================= */

.main-div {
    padding: 20px;
}

.side-extra {
    padding: 10px;
}

.header {
    height: 200px;
}

.footer {
    color: var(--cus-text);
    margin-top: 50px;
    margin-bottom: 0;
    padding: 15px;
    min-height: 50px;
    background-color: var(--cus-bg);
}


/* =========================================================
   STYLE CUSTOMIZE HERE: NAVBAR / TOGGLE
   ========================================================= */

.navbar {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
    background-color: var(--cus-white);
    border: 1px solid transparent;
    box-shadow: 0 4px 10px var(--cus-shadow-soft);
}

.navbar-brand {
    padding: 5px;
}

.navbar-toggle {
    background-color: var(--cus-white);
    border: 0;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: var(--cus-white);
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: var(--cus-charcoal);
}


/* =========================================================
   STYLE CUSTOMIZE HERE: MOBILE NAV HEIGHT
   This controls how much room the mobile menu gets.
   Lower the 90px number to allow more visible menu height.
   ========================================================= */

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
    overflow-y: auto;
}

@media (max-width: 767px) {
    .navbar-collapse {
        max-height: calc(100vh - 90px);
    }

    .navbar-nav {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar-nav > li > a {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar-nav .open .dropdown-menu > li > a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 6px 15px 6px 25px;
        line-height: 1.4;
    }
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }

    .navbar-collapse.in {
        overflow-y: visible;
    }
}


/* =========================================================
   STYLE CUSTOMIZE HERE: DESKTOP SIDEBAR NAV
   Flush left on large screens with softer border/shadow.
   ========================================================= */

@media (min-width: 768px) {
    .sidebar-nav {
        padding-left: 0;
        margin-left: 0;
    }

    .sidebar-nav .navbar {
        margin-left: 0;
        margin-right: 0;
        background-color: var(--cus-white);
        border: 1px solid var(--cus-border);
        border-left: 0;
        border-radius: 0 0 8px 0;
        box-shadow: 0 3px 10px var(--cus-shadow-softer);
    }

    .sidebar-nav .navbar .navbar-collapse {
        padding: 0;
        max-height: none;
        background-color: var(--cus-white);
        border-radius: 0 0 8px 0;
        font-weight: bold;
        z-index: auto;
    }

    .sidebar-nav .navbar ul {
        float: none;
    }

    .sidebar-nav .navbar li {
        float: none;
        display: block;
    }

    .sidebar-nav .navbar li a {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}


/* =========================================================
   STYLE CUSTOMIZE HERE: NAV / DROPDOWN COLORS
   ========================================================= */

.nav > li > a:hover,
.nav > li > a:focus {
    background-color: var(--cus-charcoal-light);
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: var(--cus-charcoal-light);
    border-color: var(--cus-charcoal);
}

.dropdown-menu {
    font-size: 14px;
    background-color: var(--cus-white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.dropdown-menu > li > a {
    color: var(--cus-text);
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: var(--cus-white);
    background-color: var(--cus-charcoal);
}

.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:link,
.navbar-default .navbar-nav > li > a:visited {
    color: var(--cus-charcoal-dark);
}

/* =========================================================
   STYLE CUSTOMIZE HERE: SEARCH AREA
   ========================================================= */

.searchPad {
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .searchPad {
        margin-top: 10px;
        margin-right: 10px;
        padding: 5px;
    }
}


/* =========================================================
   STYLE CUSTOMIZE HERE: FORM FIELDS
   ========================================================= */

textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
select {
    border: 1px solid var(--cus-border-medium);
    border-radius: 8px;
    background-color: var(--cus-bg);
    color: var(--cus-text);
}

select option {
    background-color: var(--cus-bg);
    color: var(--cus-text);
}

select option:hover,
select option:checked {
    background-color: var(--cus-accent-soft);
}

.form-control {
    border-color: var(--cus-border-medium);
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--cus-border-dark);
    box-shadow: 0 0 6px var(--cus-shadow-focus);
}


/* =========================================================
   STYLE CUSTOMIZE HERE: BUTTON COLORS
   ========================================================= */

button,
.submitButton {
    background-color: var(--cus-charcoal);
    color: var(--cus-white);
    border-radius: 5px;
    font-weight: bold;
}

button {
    border: 1px solid var(--cus-charcoal);
}

.submitButton {
    border: 0;
}

button:hover,
button:focus,
.submitButton:hover,
.submitButton:focus {
    background-color: var(--cus-charcoal-dark);
    color: var(--cus-white);
}

.cartButton {
    background-color: var(--cus-accent-strong);
    color: var(--cus-white);
    border: 0;
    border-radius: 5px;
    font-weight: bold;
}

.cartButton:hover,
.cartButton:focus {
    background-color: var(--cus-charcoal-dark);
    color: var(--cus-white);
}


/* =========================================================
   STYLE CUSTOMIZE HERE: OPTIONAL BOOTSTRAP BUTTON OVERRIDES
   Uncomment only if you use .btn-primary classes.
   ========================================================= */


.btn-primary {
    color: var(--cus-white);
    background-color: var(--cus-charcoal);
    border-color: var(--cus-charcoal);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    color: var(--cus-white);
    background-color: var(--cus-charcoal-dark);
    border-color: var(--cus-charcoal-dark);
}



/* =========================================================
   IMAGE HELPERS
   ========================================================= */

.centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 400px) {
    .rightPic {
        float: right;
        margin: 10px;
    }

    .leftPic {
        float: left;
        margin: 10px;
    }
}

@media (max-width: 399px) {
    .rightPic {
        clear: right;
    }

    .leftPic {
        clear: left;
    }
}

.kindaShady {
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.22),
        0 3px 8px rgba(0, 0, 0, 0.14);
}

.social-icon {
    width: 48px;
    height: 48px;
    margin: 10px;
}


/* =========================================================
   MARQUEE
   ========================================================= */

@media (max-width: 767px) {
    .marquee {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        white-space: nowrap;
        box-sizing: border-box;
        animation: marquee 20s linear infinite;
    }
}

@media (min-width: 768px) {
    .marquee {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        white-space: nowrap;
        box-sizing: border-box;
        animation: marquee 60s linear infinite;
    }
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from { text-indent: 100%; }
    to   { text-indent: -100%; }
}

/* Pull sidebar closer to screen edge on larger screens, or there is huge gutter to left of menu */
@media (min-width: 768px) {
    .big-menu {
        margin-left: -60px;
		margin-right: 10px;
		padding: 0;
    }
}

/* for products.php page */

.img-square-frame {
    width:100%;
    aspect-ratio:1/1;      /* keeps the box square */
    display:flex;
    align-items:center;    /* vertical centering */
    justify-content:center;/* horizontal centering */
    overflow:hidden;
}

.img-square-frame img {
    max-width:100%;
    max-height:100%;
}


@media (min-width: 768px) {
	.img-square-frame_detail {
		width:100%;
		aspect-ratio:1/1;      /* keeps the box square */
		display:flex;
		align-items:center;    /* vertical centering */
		justify-content:center;/* horizontal centering */
		overflow:hidden;
	}

	.img-square-frame_detail img {
		max-width:100%;
		max-height:100%;
	}
}

.img-hover {
    transition: transform 0.25s ease;
}

.img-hover:hover {
    transform: scale(1.05);
}

.circle-img {
    border-radius: 50%;
    display: block;
}



img.image-left,
img.image-right,
img.image-centered,
img.image-full {
    max-width: 100%;
    height: auto;
}

img.image-left {
    float: left;
    max-width: 45%;
    margin: 0 20px 15px 0;
}

img.image-right {
    float: right;
    max-width: 45%;
    margin: 0 0 15px 20px;
}

img.image-centered {
    display: block;
    margin: 0 auto 15px auto;
}

img.image-full {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 15px 0;
}

img.image-preview {
    float: left;
    width: 130px ;
    margin: 0 20px 5px 0;
	border-radius: 4px;
}

@media (max-width: 767px) {
    img.image-left,
    img.image-right,
	img.image-preview,
    img.image-centered {
        float: none;
        display: block;
        width: auto;
        max-width: 85%;
        margin: 0 auto 15px auto;
        clear: both;
    }

    img.image-full {
        float: none;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 0 15px 0;
        clear: both;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================================
   SEARCH CUSTOMIZATIONS
   ========================================================= */

.searchPad {
    float: right;
    padding: 0px 10px 0px 10px !important;
	
}

#searchformsm {
    float: right;
    margin: 10px 20px 10px 0;
    background: transparent;
}

.blog-search-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.blog-search-title {
    margin: 0;
    color: var(--cus-text);
    font-weight: bold;
    white-space: nowrap;
}

.blog-search-input {
    width: 180px;
    height: 34px;
    padding: 6px 10px;
    font-size: 1.05em;
    background: var(--cus-white);
    color: var(--cus-text);
    border: 1px solid var(--cus-border-medium);
    border-radius: 4px;
    box-shadow: none;
}

.blog-search-input:focus {
    border-color: var(--cus-border-dark);
    box-shadow: 0 0 4px var(--cus-shadow-focus);
    outline: none;
}

.blog-search-button {
    border: 0;
    background: transparent;
    color: var(--cus-text);
    padding: 0;
    font-size: 1.15em;
    line-height: 1;
}

.blog-search-button:hover,
.blog-search-button:focus {
    color: var(--cus-charcoal-dark);
    background: transparent;
    outline: none;
}

@media (max-width: 767px) {
    .searchPad,
    #searchformsm {
        float: none;
        margin: 10px 0;
    }

    .blog-search-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

.navbar {
    margin: 0;
}

@media (max-width: 767px) {
	.headline {
	margin-bottom: 0 !important;
	padding-top:16px 20px 10px 20px !important;
	}



    .navbar {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .navbar-header {
        margin-top: 0;
    }

    .container,
    .container-fluid {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}


/* =========================================================
   ?? Make tags slightly lighter + styled
   ========================================================= */

.tags-line {
    margin-top: 8px;
    font-size: 0.95em;
    color: var(--cus-text-soft);
}

.tags-line b {
    color: var(--cus-text);
}

/* =========================================================
   Footer Badges
   ========================================================= */
.footer-badges {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.footer-badges a {
    display: inline-block;
    margin: 0 12px 12px;
    vertical-align: middle;
}

.footer-badges img {
    display: block;
    max-width: 125px;
    height: auto;
}


/* =========================================================
   Pagination Style for news page
   ========================================================= */
   

.pagin {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: .95em;
    font-weight: 600;
}

.pagin a {
    display: inline-block;
    padding: 5px 9px;
    margin: 0 2px;
    border: solid 1px var(--cus-border-medium);
    background-color: var(--cus-accent-soft);
    color: var(--cus-text);
    text-decoration: none;
    border-radius: 3px;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.pagin a:visited {
    border: solid 1px var(--cus-border-medium);
    background-color: var(--cus-accent-soft);
    color: var(--cus-text-soft);
    text-decoration: none;
}

.pagin a:hover,
.pagin a:active {
    border: solid 1px var(--cus-border-dark);
    background-color: var(--cus-white);
    color: var(--cus-charcoal-dark);
    text-decoration: none;
}

.pagin span {
    display: inline-block;
    cursor: default;
    padding: 5px 9px;
    margin: 0 2px;
    border: solid 1px var(--cus-charcoal);
    background-color: var(--cus-charcoal);
    color: var(--cus-white);
    border-radius: 3px;
}

/* =========================================================
   Previous and next nav buttons
   ========================================================= */
.post-nav-link {
	display: block;
	text-decoration: none;
	position: relative;
	z-index: 5;
	padding: 10px 0;
}

.post-nav-link.prev {
	text-align: left;
}

.post-nav-link.next {
	text-align: right;
}

.nav-text {
	display: inline-flex;
	flex-direction: column;
	vertical-align: middle;
}

.nav-text.right {
	text-align: right;
	align-items: flex-end;
}

.nav-label {
	font-size: 12px;
	color: var(--cus-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.nav-title {
	font-size: 15px;
	color: var(--cus-charcoal-dark);
	font-weight: 600;
	line-height: 1.3;
}

.post-nav-link:hover .nav-title {
	color: var(--cus-accent-strong);
}

/* TRIANGLE ARROWS */
.arrow {
	width: 0;
	height: 0;
	display: inline-block;
	vertical-align: middle;
}

.arrow.left {
	margin-right: 12px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 12px solid var(--cus-accent-strong);
}

.arrow.right {
	margin-left: 12px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 12px solid var(--cus-accent-strong);
}

.post-nav-link:hover .arrow.left {
	border-right-color: var(--cus-charcoal);
}

.post-nav-link:hover .arrow.right {
	border-left-color: var(--cus-charcoal);
}

/* Mobile */
@media (max-width: 767px) {
	.post-nav-link {
		padding: 12px 0;
	}

	.col-xs-6 {
		width: 100%;
		float: none;
		text-align: left !important;
	}

	.post-nav-link.next {
		text-align: left;
		margin-top: 15px;
	}

	.nav-text.right {
		text-align: left;
		align-items: flex-start;
	}

	.arrow.right {
		margin-left: 0;
		margin-right: 12px;
	}

	.post-nav-link.next .arrow.right {
		float: left;
	}
}
/* =========================================================
   Gallery Blocks for within pages- DO NOT REMOVE FOLLOWING
   ========================================================= */
   
.post-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.post-gallery .gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
}

.post-gallery .gallery-image {
    display: block;
    width: 100%;
    height: auto;
}

.post-gallery .gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .post-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .post-gallery .gallery-caption {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* =========================================================
   Carousel for Home page
   ========================================================= */

.home-carousel {
	margin-top: -25px;
}

.home-carousel .carousel-inner {
	position: relative;
	overflow: hidden;
}

.home-carousel .item {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.home-carousel .item img {
	display: block;
	width: 100%;
	height: auto;
}

/* Prevent incoming slides from dropping below current slide during transition */
.home-carousel .carousel-inner > .next,
.home-carousel .carousel-inner > .prev {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.home-carousel .carousel-caption {
	bottom: 50px;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: auto;
	max-width: 90%;
	padding: 6px 30px;
	background: rgba(0,0,0,.35);
	border-radius: 4px;
	text-align: center;
}

.home-carousel .carousel-caption h3,
.home-carousel .carousel-caption p {
	margin: 0;
	color: #fff;
	line-height: 1.2;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
}

.home-carousel .carousel-caption h3 {
	font-size: 24px;
}

.home-carousel .carousel-control {
	top: 0 !important;
	bottom: 0 !important;
	width: 70px;
	background-image: none !important;
	opacity: 1;
	display: flex !important;
	align-items: center !important;
	z-index: 20;
}

.home-carousel .left.carousel-control {
	justify-content: flex-start;
	padding-left: 12px;
}

.home-carousel .right.carousel-control {
	justify-content: flex-end;
	padding-right: 12px;
}

.home-carousel .left.carousel-control .fa-solid,
.home-carousel .right.carousel-control .fa-solid {
	position: static !important;
	top: auto !important;
	transform: none !important;
	margin: 0 !important;
	font-size: 34px !important;
	line-height: 1;
	color: rgba(255,255,255,.9);
	text-shadow: 0 1px 3px rgba(0,0,0,.7);
}

@media (max-width: 767px) {

	.home-carousel .item {
		height: 220px;
	}

	.home-carousel .item img {
		width: 100%;
		height: 220px;
		object-fit: cover;
		display: block;
	}

	/* Keep mobile slide transitions layered properly too */
	.home-carousel .carousel-inner > .next,
	.home-carousel .carousel-inner > .prev {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}

	.home-carousel .carousel-caption {
		bottom: 34px;
		width:80%;
		max-width: 88%;
		padding: 5px 10px;
	}

	.home-carousel .carousel-caption h3 {
		font-size: 18px;
	}
}

/* =========================================================
   Banner
   ========================================================= */
   
.banner {
	width: 100%;
	height: 150px;
	overflow: hidden;
}

.banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Mobile tweak */
@media (max-width: 768px) {
	.banner {
		height: 120px;
	}
}

/* ===== Betty nav override ===== */
.main-nav {
    width: 100%;
    margin: 0;
    max-width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

.main-nav .navbar-header,
.main-nav .navbar-collapse,
.main-nav .navbar-nav {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0;
    padding-right: 0;
}

.main-nav .navbar-nav {
    margin: 0;
}

.main-nav .navbar-nav > li > a {
    padding-left: 18px;
    padding-right: 18px;
}

.banner {
    margin: 0;
    padding: 0;
    display: block;
}

/* =========================================================
   hide gap
   ========================================================= */

.headline {
    margin: 0 !important;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 15px;
    padding-right: 15px;
}

.headline .site-title,
.headline .site-sub-title {
    margin: 0;
    padding: 0;
    display: inline;
}

.main-nav,
.navbar.navbar-default,
.navbar.navbar-static-top {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* =========================================================
   Captions for Post Images (using alt tags)
   ========================================================= */

.post-image-block {
    display: inline-block;
    max-width: 100%;
    margin: 0 0 15px 0;
    text-align: center;
    vertical-align: top;
}

.post-image-block img {
    display: block;
    max-width: 100%;
    height: auto;
}

.image-caption {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Wrapper takes over layout role */
.post-image-block.image-left-wrap {
    float: left;
    max-width: 45%;
    margin: 0 20px 15px 0;
}

.post-image-block.image-right-wrap {
    float: right;
    max-width: 45%;
    margin: 0 0 15px 20px;
}

.post-image-block.image-centered-wrap {
    display: block;
    max-width: 100%;
    margin: 0 auto 15px auto;
    text-align: center;
}

.post-image-block.image-full-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 15px 0;
    text-align: center;
}

.post-image-block.image-centered-wrap img {
    margin: 0 auto;
}

.post-image-block.image-full-wrap img {
    width: 100%;
}

/* Mobile */
@media (max-width: 767px) {
    .post-image-block,
    .post-image-block.image-left-wrap,
    .post-image-block.image-right-wrap,
    .post-image-block.image-centered-wrap {
        float: none !important;
        display: block !important;
        width: auto !important;
        max-width: 85% !important;
        margin: 0 auto 15px auto !important;
        clear: both !important;
        text-align: center !important;
    }

    .post-image-block.image-full-wrap {
        float: none !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 15px 0 !important;
        clear: both !important;
        text-align: center !important;
    }

    .post-image-block img,
    .post-image-block.image-left-wrap img,
    .post-image-block.image-right-wrap img,
    .post-image-block.image-centered-wrap img,
    .post-image-block.image-full-wrap img {
        float: none !important;
        display: block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .image-caption {
        display: block !important;
        width: 100% !important;
        margin: 5px auto 0 auto !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
        color: #666 !important;
        font-style: italic !important;
        text-align: center !important;
        clear: both !important;
    }
}

.hp-field {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* =========================================================
   Social Share for Posts
   ========================================================= */
.share-buttons {
    margin-top: 20px;
}

.share-btn {
    display: inline-block;
    padding: 6px 12px;
    margin-right: 8px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.share-btn i {
    margin-right: 6px;
}

/* Facebook */
.share-btn.fb {
    background-color: #3b5998;
	color: white;
}

/* Instagram */
.share-btn.ig {
    background: linear-gradient(45deg,#feda75,#d62976,#962fbf,#4f5bd5);
	color: #fff;
}

/* X */
.share-btn.x{
    background:#000;
    color:#fff;
}
/* linkedIn */
.share-btn.linkedin{
    background:#0077b5;
    color:#fff;
}

.share {
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.05;
    margin: 0;
}

/* =========================================================
   Used in post pages to break content
   ========================================================= */
.clearfloat{
	clear:both;
	height:0;
	margin:0;
	padding:0;
	overflow:hidden;
}

/* =========================================================
   Home Page Highlights
   ========================================================= */

.homeHighlightsWrap{
	display:flex;
	flex-wrap:wrap;
	margin:0 -10px 30px -10px;
}

.homeHighlightItem{
	position:relative;
	overflow:hidden;
	padding:0 10px 20px 10px;
	box-sizing:border-box;
	width:25%;
}

/* If there are exactly 3 items, make them 3-up */
.homeHighlightItem:first-child:nth-last-child(3),
.homeHighlightItem:first-child:nth-last-child(3) ~ .homeHighlightItem{
	width:33.3333%;
}

.homeHighlightLink{
	display:block;
	position:relative;
	color:#fff;
	text-decoration:none;
}

.homeHighlightImageWrap{
	position:relative;
	width:100%;
	height:0;
	padding-top:70%;
	overflow:hidden;
	background:#222;
}

.homeHighlightImageWrap img{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center center;
	display:block;
	transition:transform .6s ease;
}

.homeHighlightLink:hover .homeHighlightImageWrap img{
	transform:scale(1.06);
}

.homeHighlightOverlay{
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	z-index:5;
	padding:18px 16px 14px 16px;
	background:linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,0) 100%);
	transition:background .4s ease;
}

.homeHighlightLink:hover .homeHighlightOverlay{
	background:linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,0) 100%);
}

.homeHighlightTitle{
	margin:0;
	color:#fff !important;
	font-size:18px;
	line-height:1.15;
	font-weight:700;
	text-transform:uppercase;
	text-align:center;
	text-shadow:0 1px 2px rgba(0,0,0,.65);
}

@media (max-width:991px){
	.homeHighlightItem,
	.homeHighlightItem:first-child:nth-last-child(3),
	.homeHighlightItem:first-child:nth-last-child(3) ~ .homeHighlightItem{
		width:50%;
	}
}

@media (max-width:767px){
	.homeHighlightsWrap{
		display:block;
		margin:0 0 30px 0;
	}

	.homeHighlightItem,
	.homeHighlightItem:first-child:nth-last-child(3),
	.homeHighlightItem:first-child:nth-last-child(3) ~ .homeHighlightItem{
		width:100%;
		padding:0 0 20px 0;
	}

	.homeHighlightTitle{
		font-size:16px;
	}
}

/* --- Hover / subtle pulse effect --- */

.homeHighlightImageWrap img{
	transition:transform .6s ease;
}

.homeHighlightLink:hover .homeHighlightImageWrap img{
	transform:scale(1.06);
}

/* optional: slight overlay deepen on hover */
.homeHighlightOverlay{
	transition:background .4s ease;
}

.homeHighlightLink:hover .homeHighlightOverlay{
	background:linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,0) 100%);
}

/* leave previous UNTOUCHED */

.playfair{
    font-family: 'Playfair Display', serif;
}


@media (min-width:768px){
/* For border on side bio home page */
.faded-left-border {
    position: relative;
}

.faded-left-border::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;

    background: linear-gradient(
        to bottom,
        rgba(127,154,127,0),
        rgba(127,154,127,1) 20%,
        rgba(127,154,127,1) 80%,
        rgba(127,154,127,0)
    );
}
}