/* =============================================================
   Godhuli Theme — main.css  (refactored with CSS variables)
   Depends on: godhuli-tokens.css loaded first
   ============================================================= */

/* ── Base ─────────────────────────────────────────────────────── */

body {
	font-family: var(--font-body);
	color: var(--color-body-text);
	word-wrap: break-word;
}

a {
	color: var(--color-heading);
}

a:hover,
a:focus {
	color: var(--color-primary);
}

/* ── Headings ─────────────────────────────────────────────────── */

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
	line-height: var(--leading-heading);
}

.h2, h2 {
	font-size: var(--text-xl);
}

/* ── Links inside content ─────────────────────────────────────── */

.entry-content a {
	text-decoration: none;
	color: var(--color-primary);
}
.entry-content a:hover {
	text-decoration: underline;
}
.entry-content a:focus {
	border: 1px dashed var(--color-primary);
}

/* ── Buttons ──────────────────────────────────────────────────── */

.btn {
	text-transform: uppercase;
	font-size: var(--text-xs);
	letter-spacing: var(--letter-spacing-md);
	border-radius: var(--radius-sm);
	font-weight: var(--font-weight-semibold);
	padding: 0.6rem 0.8rem;
}

.btn-outline-custom {
	color: var(--color-primary);
	background-color: transparent;
	background-image: none;
	border-color: var(--color-primary);
}

.btn-outline-custom.active,
.btn-outline-custom:hover,
.btn-outline-custom:active,
.show > .btn-outline-custom.dropdown-toggle,
.btn-outline-custom.focus,
.btn-outline-custom:focus {
	color: var(--color-white);
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn-outline-custom.focus,
.btn-outline-custom:focus {
	box-shadow: none;
}

.btn-read-more {
	color: var(--color-body-text);
	font-weight: var(--font-weight-medium);
	display: inline-block;
	text-decoration: underline !important;
}

/* ── Badge ────────────────────────────────────────────────────── */

.badge-custom {
	color: var(--color-white) !important;
	background-color: var(--color-primary);
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */

.logo-box {
	background-color: var(--color-bg);
	text-align: center;
	padding: var(--space-5);
}

.logo-box h1,
.logo-box .site-title {
	font-size: 45px;
	line-height: 50px;
	display: inline-block;
	font-weight: var(--font-weight-semibold);
}

.logo-box a.navbar-logo {
	display: inline-block;
}

.logo-box p.site-description {
	font-weight: var(--font-weight-light);
	font-size: var(--text-lg);
	line-height: 20px;
	padding-top: 0;
	margin-bottom: 0;
	color: var(--color-heading);
}

#topnav {
	z-index: var(--z-nav);
	background-color: var(--color-bg);
	box-shadow: var(--shadow-navbar);
	border: 0;
	transition: var(--transition-slow);
	margin-bottom: 1px;
}

#topnav .logo {
	float: left;
	line-height: 70px;
	transition: var(--transition-base);
	color: var(--color-body-text);
	font-weight: var(--font-weight-bold);
	font-size: 22px;
}

#topnav .menu-extras {
	float: right;
}

/* Active nav states */
#topnav .has-submenu.active .submenu li.active > a,
#topnav .has-submenu.active > a,
#topnav .navigation-menu li.active > a {
	color: var(--color-primary);
}

#topnav .has-submenu.active .menu-arrow {
	border-color: var(--color-primary);
}

.has-submenu {
	position: relative;
}

/* Toggle button */
#topnav .navbar-toggle {
	border: 0;
	position: relative;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

#topnav .navbar-toggle .lines {
	width: 25px;
	display: block;
	position: relative;
	margin: 28px auto;
	height: 15px;
}

#topnav .navbar-toggle span {
	height: 2px;
	width: 100%;
	background-color: var(--color-white);
	display: block;
	margin-bottom: 5px;
	transition: transform 0.5s ease;
}

#topnav .navbar-toggle span:last-child {
	margin-bottom: 0;
}

#topnav .navbar-toggle.open span {
	position: absolute;
}

#topnav .navbar-toggle.open span:first-child {
	top: 6px;
	transform: rotate(45deg);
}

#topnav .navbar-toggle.open span:nth-child(2) {
	visibility: hidden;
}

#topnav .navbar-toggle.open span:last-child {
	width: 100%;
	top: 6px;
	transform: rotate(-45deg);
}

#topnav .navbar-toggle.open span:hover,
#topnav .navbar-toggle.open span:focus {
	background-color: var(--color-primary);
}

#topnav .navbar-toggle:hover,
#topnav .navbar-toggle:focus,
#topnav .navigation-menu > li > a:hover,
#topnav .navigation-menu > li > a:focus {
	background-color: transparent;
	color: var(--color-primary);
}

#topnav .navigation-menu > li .submenu li .menu-arrow {
	right: 10px;
	top: 15px;
}

.dropdown-toggle::after {
	display: none;
}

/* Nav arrows */
.menu-arrow,
.submenu-arrow {
	border: solid var(--color-border-arrow);
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 3px;
	position: absolute;
}

.menu-arrow {
	transform: rotate(45deg);
	right: 5px;
	top: 30px;
}

.submenu-arrow {
	transform: rotate(-45deg);
	right: 20px;
	top: 18px;
}

/* Responsive nav */
@media (min-width: 992px) {
	#topnav .navbar-toggle,
	#topnav .logo-mobile {
		display: none;
	}
}

@media (max-width: 991px) {
	.logo-box {
		display: none;
	}
	.menu-arrow {
		top: 15px;
		right: 20px;
	}
	.logo-mobile img {
		height: auto;
		padding: 5px 0;
	}
	.submenu-arrow {
		transform: rotate(45deg);
		position: absolute;
		right: 20px;
		top: 12px;
	}
	.logo {
		padding: 0 !important;
		line-height: 0;
	}
	#topnav .container {
		width: auto;
	}
	#topnav .navigation-menu {
		float: none;
		max-height: 400px;
		text-align: left;
	}
	#topnav .navigation-menu > li {
		display: block;
	}
	#topnav .navigation-menu > li > a {
		color: #28282e;
		padding: 10px 20px;
	}
	#topnav .navigation-menu > li > a:hover,
	#topnav .navigation-menu > li .submenu li a:hover,
	#topnav .navigation-menu > li.has-submenu.open > a,
	#topnav .menu-extras .menu-item .cart > a:hover,
	#topnav .menu-extras .menu-item .search > a:hover,
	#topnav .navigation-menu > li > a:focus,
	#topnav .navigation-menu > li .submenu li a:focus,
	#topnav .menu-extras .menu-item .cart > a:focus,
	#topnav .menu-extras .menu-item .search > a:focus {
		color: var(--color-primary);
	}
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════════════════════════ */

.toggle-search {
	font-size: 18px !important;
}

.toggle-search:focus {
	font-size: 25px !important;
}

.search-wrap {
	background-color: var(--color-bg-footer);
	color: #1d1e3a;
	z-index: var(--z-search);
	position: absolute;
	top: 0;
	display: flex;
	width: 100%;
	height: 70px;
	padding: 0 15px;
	transform: translate3d(0, -100%, 0);
	transition: 0.3s;
}

.search-wrap form {
	display: flex;
	width: 100%;
}

.search-wrap .search-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.search-wrap .search-input {
	flex: 1 1;
	border: none;
	outline: none;
	box-shadow: none;
	background-color: transparent;
}

.search-wrap .search-input:focus {
	border: 1px solid var(--color-heading);
}

.search-wrap .close-search {
	width: 36px;
	height: 64px;
	line-height: 64px;
	text-align: center;
	color: inherit;
	font-size: 24px;
}

.search-wrap .close-search:hover,
.search-wrap .close-search:focus {
	color: var(--color-error);
}

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

/* ═══════════════════════════════════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════════════════════════════════ */

.section {
	padding-top: var(--space-20);
	padding-bottom: var(--space-20);
}

/* ═══════════════════════════════════════════════════════════════
   SLIDER
═══════════════════════════════════════════════════════════════ */

.main-slide {
	float: left;
	position: relative;
	width: 100%;
}

.main-slide > img {
	width: 100%;
}

.slide-title {
	left: 50%;
	padding: 25px 50px;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	border: 5px double var(--color-white-35);
	border-radius: var(--radius-lg);
}

.slide-title a {
	color: var(--color-white);
}

.slide-title h2 {
	color: var(--color-white);
	display: table;
	font-size: 30px;
	margin: 15px 0;
	width: 100%;
}

.slide-title:before {
	background: var(--color-bg-overlay);
	content: "";
	opacity: 0.6;
	height: 100%;
	width: 100%;
	z-index: -1;
	position: absolute;
	left: 0;
	top: 0;
}

.active .slide-title {
	opacity: 1;
	transition: var(--transition-slider);
}

.slide-title a.cat-text::after {
	content: ",";
	padding: 0 2px;
}

.slide-title .cat-text:last-child::after {
	content: "";
}

/* Category pill on slides */
.cat-text {
	font-size: var(--text-xs);
	text-transform: uppercase;
	font-weight: var(--font-weight-medium);
	letter-spacing: var(--letter-spacing-lg);
	color: var(--color-white);
}

/* Meta bar */
.meta {
	display: table;
	margin-bottom: 30px;
	margin-top: -5px;
	width: 100%;
	padding-left: 0;
}

.main-slide .meta {
	margin-bottom: 0;
}

.meta > li {
	display: inline-block;
	font-size: var(--text-xs);
	font-weight: var(--font-weight-bold);
	letter-spacing: var(--letter-spacing-md);
	text-transform: uppercase;
	position: relative;
	padding: 0 10px;
}

.meta > li::before {
	background: #e3e3e3;
	content: "";
	height: 1px;
	margin-top: -1px;
	position: absolute;
	right: -5px;
	top: 50%;
	width: 10px;
}

.meta > li:last-child::before {
	display: none;
}

/* OWL nav */
.owl-nav {
	height: 0;
	padding: 0 100px;
	width: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 50%;
}

/* Slider responsive */
@media (max-width: 980px) {
	.slide-title {
		opacity: 1;
		background-color: var(--color-heading);
		float: left;
		left: auto;
		position: relative;
		top: auto;
		width: 100%;
		transform: translate(0);
	}
}

/* ═══════════════════════════════════════════════════════════════
   BLOG / POSTS
═══════════════════════════════════════════════════════════════ */

.post {
	margin: 0 0 45px;
}

.post + .post {
	border-top: 1px solid var(--color-border-muted);
	padding-top: 50px;
}

.post-preview {
	margin: 0 0 25px;
}

.post-header {
	margin: 0 0 30px;
}

.post-header a.badge {
	margin-left: 5px;
	padding: 7px 10px;
	font-weight: var(--font-weight-normal);
	font-size: 13px;
	margin-bottom: 7px;
}

.post-header a.badge:first-child {
	margin-left: 0;
}

/* Entry meta */
.entry-meta .posted-on .post-date i {
	padding-right: 5px;
}

.entry-meta .posted-on time.updated::before {
	content: "|";
	padding: 0 5px;
}

.entry-meta .posted-on time.entry-date::before {
	content: "";
}

.post .entry-meta {
	display: flex;
	justify-content: center;
}

.post .entry-meta span {
	padding-right: 10px;
	color: var(--color-muted);
}

.post .entry-meta span a {
	color: var(--color-muted);
}

.post .entry-meta span:focus,
.post .entry-meta span a:focus {
	color: var(--color-heading);
	text-decoration: underline;
}

.post .entry-meta span:last-child {
	padding-right: 0;
}

.post .entry-meta span.byline i,
.post .entry-meta span.meta_comment i {
	padding-right: 5px;
}

/* Heading padding in single post */
.single .post h1,
.single .post h2,
.single .post h3,
.single .post h4,
.single .post h5,
.single .post h6 {
	padding-bottom: 7px;
	padding-top: 7px;
}

.center {
	text-align: center;
}

.post ul,
.post ol {
	list-style-position: inside;
}

.post img {
	max-width: 100%;
	height: auto;
}

/* Post title */
h2.post-title {
	margin: 15px 0;
	line-height: 40px;
	font-size: var(--text-2xl);
}

.post-date {
	color: var(--color-muted);
	display: block;
}

.post-title a {
	transition: var(--transition-base);
	word-wrap: break-word;
}

/* Tags */
.post-tags {
	margin: 40px 0 0;
}

.post-tags a,
.tagcloud > a {
	background: var(--color-bg-light);
	border-radius: var(--radius-sm);
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: var(--letter-spacing-md);
	color: var(--color-text-alt);
	padding: 7px 8px 5px 10px;
	margin: 5px 10px 5px 0;
}

.post-tags a {
	font-size: 7px;
}

.tagcloud > a {
	font-size: 9px !important;
}

.post-tags a:hover,
.post-tags a:focus,
.tagcloud > a:hover,
.tagcloud > a:focus {
	background: var(--color-primary);
	color: var(--color-white);
}

/* Post content body */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
	margin: 30px 0 20px;
}

.post-content h1:first-child,
.post-content h2:first-child,
.post-content h3:first-child,
.post-content h4:first-child,
.post-content h5:first-child,
.post-content h6:first-child {
	margin-top: 0;
}

.post-content p {
	margin: 0 0 20px;
	line-height: var(--leading-body);
}

.post-content ul,
.post-content ol {
	line-height: var(--leading-loose);
	margin-left: 40px;
}

.post-content ul {
	list-style-type: disc;
}

.post-content ol {
	list-style-type: decimal;
}

/* Min height fallback */
.min-height {
	height: auto;
	min-height: 300px;
}

.min-height .page-content-nfound {
	padding-top: 15px;
}

.min-height .page-content-nfound .back {
	padding-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR & WIDGETS
═══════════════════════════════════════════════════════════════ */

.sidebar {
	padding-left: 30px;
}

/* Search button in sidebar */
.widget_search form {
	position: relative;
}

.search-button {
	position: absolute;
	top: 0;
	height: 100%;
	right: 10px;
	background-color: transparent;
	border: none;
	font-size: 20px;
	transition: var(--transition-base);
}

.search-button:focus,
.search-button.focus,
.search-button.active.focus,
.search-button.active:focus,
.search-button:active.focus,
.search-button:active:focus {
	outline: 0;
}

.search-button:hover,
.search-button:focus {
	color: var(--color-primary);
}

/* Widget title */
.widget-title {
	position: relative;
	font-size: var(--text-base);
	margin: 0 0 25px;
	font-weight: var(--font-weight-semibold);
	text-transform: uppercase;
	letter-spacing: var(--letter-spacing-sm);
}

.widget-title::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	border-bottom: 1px solid var(--color-border);
}

.widget-title::after {
	content: "";
	display: block;
	width: 35px;
	z-index: 1;
	position: relative;
	border-bottom: 1px solid var(--color-primary);
	margin: 20px auto 25px 0;
}

/* Widget box */
.widget {
	margin: 0 0 40px;
	font-size: var(--text-base);
	border: 4px double var(--color-primary-alpha);
	padding: var(--space-5);
	border-radius: var(--radius-lg);
}

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

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

.widget ul li:last-child,
.widget ol li:last-child {
	border: 0;
	margin-bottom: 0;
}

.widget ul li a,
.widget ol li a {
	color: var(--color-body-text);
}

.widget ul li a:hover,
.widget ol li a:focus,
.widget ul li a:focus,
.widget ol li a:hover {
	color: var(--color-primary);
}

/* Widget select — shared style (also used in blocks.css) */
.widget select,
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
	display: block;
	font-size: var(--text-md);
	font-weight: var(--font-weight-medium);
	color: var(--color-body-text);
	line-height: 1.3;
	padding: 0.6em 1.4em 0.5em 0.8em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid var(--color-border-alt);
	box-shadow: var(--shadow-select);
	border-radius: 0.5em;
	appearance: none;
	background-color: var(--color-white);
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
	background-repeat: no-repeat, repeat;
	background-position: right 0.7em top 50%, 0 0;
	background-size: 0.65em auto, 100%;
}

.widget select::-ms-expand {
	display: none;
}

.widget select:hover,
.widget select:focus {
	border-color: #888;
}

.widget select:focus {
	border-color: var(--color-border-alt);
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
	color: #222;
	outline: none;
}

.widget select option {
	font-weight: normal;
}

/* Widget-specific overrides */
.widget_archive ul li a,
.widget_categories ul li a {
	margin-right: 5px;
	font-weight: var(--font-weight-semibold);
}

.widget_recent_comments .recentcomments span.comment-author-link {
	font-weight: var(--font-weight-semibold);
}

/* Recent posts custom widget */
.widget_recent_entries_custom ul li {
	border-bottom: 1px solid var(--color-border-muted);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.widget_recent_entries_custom .wi {
	float: left;
	width: 64px;
}

.widget_recent_entries_custom ul li img {
	height: 44px;
}

.widget_recent_entries_custom .wb {
	padding-top: 2px;
	margin-left: 84px;
}

.widget_recent_entries_custom .wb a {
	color: var(--color-text-alt);
}

.text-widget-des,
.about-widget p,
.blockquote-text,
.blog-detail-description p,
.blockquote p,
.wp-block-quote p {
	line-height: var(--leading-copy);
}

/* About widget */
.about-widget {
	text-align: center;
}

.about-widget img {
	margin-bottom: var(--space-5);
	max-width: 100%;
	width: 150px;
	height: auto;
}

/* Category hierarchy */
.widget_categories ul {
	padding: 5px 0;
}

.widget_categories ul li,
.widget_pages ul li,
.widget_nav_menu ul li {
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.widget_categories ul li ul.children,
.widget_nav_menu ul li ul,
.widget_pages ul li ul {
	padding-left: 10px;
	padding-top: 10px;
	margin-top: 10px;
}

.widget_categories ul li ul li:last-child,
.widget_pages ul li ul li:last-child,
.widget_nav_menu ul li ul li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

.widget_categories ul li ul {
	padding-bottom: 0;
}

/* Pages widget */
.widget_pages ul li {
	margin: 0;
	font-weight: var(--font-weight-semibold);
}

/* Nav menu widget */
.widget_nav_menu ul li {
	font-weight: var(--font-weight-semibold);
}

/* Recent entries */
.widget_recent_entries ul li a {
	font-weight: var(--font-weight-medium);
	display: block;
	padding-bottom: 2px;
	font-size: var(--text-md);
}

.widget_recent_entries ul li span.post-date {
	font-size: var(--text-sm);
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════════ */

.gallery-item img {
	width: 100%;
	height: auto;
}

figure.gallery-item {
	margin: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH FORM (sidebar)
═══════════════════════════════════════════════════════════════ */

.searchform {
	outline: 0;
	box-shadow: var(--shadow-search);
	border-radius: var(--radius-md);
	display: flex;
}

.searchform > .textbox {
	outline: 0;
	height: auto;
	width: 85%;
	line-height: 42px;
	padding: 0 16px;
	background-color: rgba(255, 255, 255, 0.8);
	color: #212121;
	border: 0;
	border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.searchform > .textbox:focus {
	outline: 0;
	background-color: var(--color-white);
	border: 1px dashed;
}

.searchform > .button {
	outline: 0;
	background-color: var(--color-bg-search-btn);
	height: auto;
	width: 17%;
	text-align: center;
	line-height: 42px;
	border: 0;
	color: var(--color-white);
	font: normal normal normal 24px/1 "Material Design Icons";
	font-size: 16px;
	text-rendering: auto;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	transition: background-color 0.4s ease;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.searchform > .button::before {
	content: '\e8b6';
}

.searchform > .button:hover,
.searchform > .button:focus {
	background-color: var(--color-primary);
}

/* Sidebar-specific search widget */
.sidebar .widget_search .search-form {
	position: relative;
}

.sidebar .widget_search .search-form::before {
	content: "\FA48";
	position: absolute;
	bottom: 4px;
	right: 10px;
	cursor: pointer;
	height: 40px;
	width: 40px;
	padding: 0;
	color: #808080;
	font: normal normal normal 24px/1 "Material Design Icons";
	text-transform: none !important;
	line-height: 40px;
	text-align: center;
	-webkit-font-smoothing: antialiased;
	z-index: 1;
}

.sidebar .widget_search .search-form:hover::before,
.sidebar .widget_search .search-form:focus::before {
	color: var(--color-heading);
}

.sidebar .widget_search .search-form label {
	width: 100%;
	margin-bottom: 0;
}

.sidebar .widget_search .search-form label span {
	display: none;
}

.sidebar .widget_search .search-form label input.search-field {
	border: 1px solid var(--color-border-input);
	padding: 0 15px;
	height: 48px;
	line-height: 48px;
	font-size: 14.5px;
	position: relative;
	vertical-align: middle;
	width: 100%;
}

.sidebar .widget_search .search-form label input.search-field:focus {
	border: 1px dashed var(--color-border-input);
}

.sidebar .widget_search .search-form .search-submit {
	position: absolute;
	bottom: 4px;
	right: 10px;
	cursor: pointer;
	height: 40px;
	width: 40px;
	padding: 0;
	background-color: var(--color-heading);
	border-color: var(--color-white);
	opacity: 0;
	z-index: 2;
}

.sidebar .widget_search .search-form .search-submit:focus {
	opacity: 1;
	font-size: 0;
	background: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM 7
═══════════════════════════════════════════════════════════════ */

.wpcf7 label {
	font-weight: var(--font-weight-light);
	font-size: var(--text-md);
}

/* Shared input / textarea styles for CF7 */
.wpcf7 input,
.wpcf7 textarea {
	display: block;
	width: 100%;
	line-height: 1.25;
	color: var(--color-form-text);
	background-color: var(--color-white);
	background-image: none;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.15);
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	box-shadow: none;
	border-radius: var(--radius-sm);
	padding: 12px 15px;
	font-size: var(--text-base);
}

.wpcf7 input {
	height: 40px;
}

.wpcf7 textarea {
	padding: 12px 7px;
	max-height: 150px;
}

.wpcf7 [type="submit"] {
	text-transform: uppercase;
	letter-spacing: var(--letter-spacing-md);
	border-radius: var(--radius-sm);
	font-weight: var(--font-weight-semibold);
	padding: 0.6rem 0.8rem;
	color: var(--color-white);
	background-color: var(--color-dark);
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	display: inline-block;
	user-select: none;
	border: 1px solid transparent;
	line-height: 1.25;
	transition: var(--transition-fast);
	-webkit-appearance: button;
	max-width: 100px;
	font-size: var(--text-md);
}

.wpcf7 [type="submit"]:hover,
.wpcf7 [type="submit"]:focus {
	cursor: pointer;
	color: var(--color-white) !important;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG DETAIL (single post)
═══════════════════════════════════════════════════════════════ */

.blog-detail-description {
	color: var(--color-muted-dark);
}

/* Blockquote — unified for .blockquote, blockquote, and .wp-block-quote */
.blockquote,
blockquote,
.wp-block-quote {
	font-size: var(--text-body);
	font-style: italic;
	padding: 20px;
}

.blockquote::before,
blockquote::before,
.wp-block-quote::before {
	content: "\201C";
	float: left;
	position: relative;
	top: 15px;
	left: 0;
	color: var(--color-quote-mark);
	font-size: 68px;
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-copy);
}

blockquote::before {
	padding-right: 8px;
}

.wp-block-quote p {
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
}

.wp-block-quote cite::before {
	content: "\2014 \00A0";
}

.wp-block-quote {
	border-left: 0 solid var(--color-heading);
	text-align: left;
}

/* Comments */
.media,
.media-list,
.medias {
	margin-top: 50px;
}

.media img,
.medias img {
	width: 74px;
	height: 74px;
}

.comment-respond #cancel-comment-reply-link {
	font-size: var(--text-md);
	font-style: normal;
	font-weight: var(--font-weight-medium);
}

.media-heading {
	font-size: var(--text-body);
	padding-bottom: 0;
	margin-bottom: 0;
}

.media-heading a {
	color: var(--color-heading);
}

.media-heading a:hover,
.media-heading a:focus {
	color: var(--color-primary);
}

.media-body a.reply-btn,
.media-body span.reply-btn {
	float: right;
	font-size: var(--text-sm);
	text-transform: uppercase;
	color: var(--color-muted);
}

.media-body a.reply-btn {
	font-weight: var(--font-weight-semibold);
}

.media-body span.reply-btn {
	font-weight: var(--font-weight-bold);
}

.media-body span.reply-btn a {
	color: var(--color-muted);
}

.media-body p.post-date {
	margin-bottom: 20px;
	font-size: var(--text-xs);
}

.blog_comments ul {
	list-style: none;
}

.blog_comments ul .trackback a,
.blog_comments ul .pingback a {
	display: block;
	color: var(--color-primary);
	font-weight: var(--font-weight-semibold);
	margin: 5px 0;
}

/* Comment form */
.form-control {
	box-shadow: none;
	border-radius: var(--radius-sm);
	padding: 12px 15px;
	height: 49px;
	font-size: var(--text-base);
}

.form-control:focus {
	border-color: var(--color-muted);
}

textarea.form-control {
	height: auto;
}

.comment-form input[type="submit"] {
	text-transform: uppercase;
	font-size: var(--text-xs);
	letter-spacing: var(--letter-spacing-md);
	border-radius: var(--radius-sm);
	font-weight: var(--font-weight-semibold);
	padding: 0.5rem 0.8rem;
	color: var(--color-white);
	background-color: var(--color-dark);
	border-color: var(--color-dark);
}

.comment-form input[type="submit"]:hover,
.comment-form input[type="submit"]:focus {
	color: var(--color-white) !important;
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	text-decoration: none;
	opacity: 1;
	cursor: pointer;
}

/* Single entry taxonomy */
.single-entry-cat {
	margin-bottom: 15px;
	display: block;
}

/* Author box */
.post-author-box {
	padding: var(--space-5);
	border: 1px solid var(--color-border);
}

.post-author-box .socials li a {
	width: 36px;
	height: 36px;
	line-height: 34px;
	background-color: var(--color-white);
	color: #070e14 !important;
	border: 1px solid var(--color-border);
}

.post-author-box .socials li a:hover,
.post-author-box .socials li a:focus {
	background-color: var(--color-primary);
	color: var(--color-white) !important;
	border-color: var(--color-primary);
}

/* Related posts */
.related-post {
	margin-top: 30px;
}

.related-post .post-preview {
	margin-bottom: 15px;
}

.related-post .post-header a {
	color: var(--color-body-text);
	overflow: hidden;
	display: block;
}

.related-post .post-header a:hover,
.related-post .post-header a:focus {
	color: var(--color-primary);
}

/* Section headings (comments, related, etc.) */
.page-title-alt {
	text-transform: uppercase;
	font-weight: var(--font-weight-semibold);
	font-size: var(--text-body);
	letter-spacing: var(--letter-spacing-md);
}

/* Quote post format */
.quote-post .blockquote {
	border: 2px solid var(--color-primary);
	border-radius: var(--radius-lg);
	padding: 30px;
}

.quote-post .blockquote::before {
	color: var(--color-primary);
	padding-right: 10px;
}

.quote-post .blockquote-text {
	line-height: 32px;
}

/* Link post format */
.link-post {
	background-color: var(--color-primary);
	color: var(--color-white-60);
	text-align: center;
	padding: var(--space-5);
	border-radius: var(--radius-lg);
}

.link-post i {
	font-size: 48px;
	display: block;
}

.link-post-content {
	border: 3px solid var(--color-white-30);
	padding: 10px;
}

.link-post a {
	color: var(--color-white);
}

/* Archive header */
.archive-page-header {
	padding-bottom: 25px;
}

.archive-page-header .archive-description {
	padding-top: 10px;
}

.archive-page-header .archive-description p {
	font-weight: var(--font-weight-light);
	font-size: var(--text-md);
}

/* Attachment */
.single-attachment .blog-detail-description img {
	width: 100%;
	margin: 0 auto;
	display: block;
	float: none;
}

/* ═══════════════════════════════════════════════════════════════
   TABLE
═══════════════════════════════════════════════════════════════ */

table {
	width: 100%;
	max-width: 750px;
	border-collapse: collapse;
	margin: 50px auto;
}

th {
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: var(--font-weight-semibold);
}

td,
th {
	padding: 10px;
	border: 1px solid var(--color-border-table);
	text-align: left;
	font-size: 1rem;
}

td a,
th a {
	color: var(--color-body-text) !important;
}

/* ═══════════════════════════════════════════════════════════════
   DEFINITION LISTS
═══════════════════════════════════════════════════════════════ */

dt {
	font-weight: var(--font-weight-semibold);
	color: var(--color-heading);
}

dt::after {
	content: ":";
}

dd {
	margin: 0 1rem 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════════ */

.pagination {
	justify-content: center;
}

.page-numbers > li {
	display: inline-block;
	margin-right: 5px;
}

.navigation.pagination {
	padding: 0 15px;
}

.navigation.pagination .nav-links {
	width: 100%;
	text-align: center;
}

/* Shared pagination item style */
.page-numbers > li > a,
.page-numbers > li > span,
.pagination .nav-links a.page-numbers {
	border: 2px solid var(--color-border);
	color: var(--color-muted);
	display: inline-block;
	float: none;
	height: 36px;
	width: 36px;
	border-radius: var(--radius-full);
	text-align: center;
	line-height: 32px;
}

.pagination .nav-links a.page-numbers {
	margin-right: 5px;
}

/* Active / current / hover states */
.page-numbers > .active > a,
.page-numbers > .active > span,
.page-numbers > .active > a:focus,
.page-numbers > .active > a:hover,
.page-numbers > .active > span:focus,
.pagination > .active > span:hover,
.page-numbers > li > span.current,
.pagination .nav-links .page-numbers.current,
.page-numbers > li > a:hover,
.page-numbers > li > a:focus,
.page-numbers > li > span:hover,
.page-numbers > li > span:focus,
.pagination .nav-links .page-numbers:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

.page-numbers > .active > a,
.page-numbers > .active > span {
	cursor: default;
	z-index: 3;
}

.pagination .nav-links .page-numbers.dots:hover {
	background-color: transparent !important;
	color: var(--color-muted) !important;
	border: 0 solid transparent !important;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

footer {
	background: var(--color-bg-footer);
}

.instagram-footer {
	text-align: center;
	overflow: hidden;
	padding-left: 0;
}

.instagram-title {
	font-size: var(--text-body);
	text-transform: uppercase;
	margin: 30px 0;
}

.instagram-footer li {
	width: 16.6667%;
	display: inline;
	float: left;
	margin: 0;
}

.instagram-footer li img {
	max-width: 100%;
}

.copy-wrapper {
	padding: 0;
	overflow: hidden;
}

.copy-wrapper .copyright {
	margin-top: 24px;
	font-size: var(--text-md);
}

.right-socials {
	float: right;
}

.copy-wrapper .socials {
	margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL ICONS
═══════════════════════════════════════════════════════════════ */

.widget .socials {
	text-align: center;
}

.socials li {
	display: inline-block;
	margin: 0 4px 5px;
	text-align: center;
	cursor: pointer;
}

.socials li:first-child {
	margin-left: 0;
}

.socials li:last-child {
	margin-right: 0;
}

.socials li a {
	display: inline-block;
	margin-top: 0;
	width: 42px;
	height: 42px;
	line-height: 42px;
	font-size: var(--text-md);
	background-color: var(--color-bg-dark);
	border-radius: var(--radius-full);
	color: var(--color-white) !important;
}

.socials li a:hover,
.socials li a:focus {
	background-color: var(--color-primary);
}

/* ═══════════════════════════════════════════════════════════════
   ERROR PAGE
═══════════════════════════════════════════════════════════════ */

.error-page h1 {
	font-size: 98px;
	font-weight: var(--font-weight-bold);
	line-height: 150px;
	text-shadow:
		rgba(61, 61, 61, 0.3) 1px 1px,
		rgba(61, 61, 61, 0.2) 2px 2px,
		rgba(61, 61, 61, 0.3) 3px 3px;
}

/* ═══════════════════════════════════════════════════════════════
   COMMENTS LAYOUT
═══════════════════════════════════════════════════════════════ */

.media-object.float-left {
	margin-right: 15px;
}

.comment-metadata.flex-center .card-block {
	padding-top: 12px;
	display: flex;
}

.flex-center a.reply-btn::before {
	content: "\F45A";
	font: normal normal normal 14px/1 "Material Design Icons";
	padding-right: 5px;
}

.flex-center a.reply-btn:hover,
.flex-center a.reply-btn:focus {
	color: var(--color-primary);
}

.blocks-gallery-item figure:focus,
figure:focus {
	border: 1px dashed var(--color-primary);
}

/* ═══════════════════════════════════════════════════════════════
   SELECT2
═══════════════════════════════════════════════════════════════ */

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 40px;
}

/* ═══════════════════════════════════════════════════════════════
   ADDRESS
═══════════════════════════════════════════════════════════════ */

address {
	font-style: italic;
	font-weight: var(--font-weight-light);
	color: var(--color-body-text);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — ≤ 991px (tablet/mobile)
═══════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
	.sidebar {
		padding-left: 0;
		margin-top: 30px;
	}
	.slide-title h2 {
		font-size: 18px;
		line-height: 28px;
	}
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — ≤ 767px (mobile only)
═══════════════════════════════════════════════════════════════ */

@media only screen and (max-width: 767px) {
	#topnav a.navbar-logo img {
		width: 100%;
		max-width: 2000px;
	}

	#topnav a.navbar-logo,
	#topnav a.navbar-logo p.site-description {
		max-width: 400px;
		display: inline-block;
		padding: 0;
		margin-bottom: 0;
	}

	.logo-mobile {
		display: inline-block;
		width: 80%;
	}

	.logo-mobile .navbar-logo h1,
	.logo-mobile .navbar-logo .site-title {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	#topnav .container {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.post .entry-meta {
		display: inline-block;
	}

	.post .entry-meta span {
		display: inline-block;
	}

	.full-width-contain .entry-content > .alignfull {
		margin-left: calc(-50vw + 50%);
	}

	.wp-block-gallery ul {
		list-style: none !important;
		margin: 0 !important;
	}

	.post-content ul,
	.post-content ol {
		margin-left: 0;
	}

	.post ol {
		list-style-position: outside;
	}

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

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

	.comment-metadata.flex-center .card-block,
	.comment-metadata.flex-center .card-block .comment-content {
		width: 100%;
	}

	/* Calendar — mobile */
	.wp-block-calendar table {
		width: 100%;
		border-collapse: collapse;
	}

	.wp-block-calendar table caption,
	.wp-block-calendar table tbody,
	.wp-block-calendar table caption {
		color: var(--color-calendar-text);
	}

	.wp-block-calendar table th {
		font-weight: var(--font-weight-normal);
		background: var(--color-calendar-bg);
	}

	.wp-block-calendar tbody td,
	.wp-block-calendar th {
		padding: 4px;
		border: 1px solid var(--color-border-calendar);
	}

	.wp-block-calendar tfoot td {
		border: none;
	}

	.wp-block-calendar a {
		text-decoration: underline;
	}

	.wp-block-calendar table caption {
		background-color: var(--color-calendar-caption);
		width: 100%;
		caption-side: top;
		text-align: center;
	}

	.wp-block-calendar thead {
		vertical-align: bottom;
		white-space: nowrap;
	}

	.wp-block-calendar thead tr {
		position: initial;
		top: 0;
		left: 0;
	}

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

	.wp-block-calendar tfoot td {
		text-align: center;
	}

	.wp-block-search .wp-block-search__button {
		margin-left: 0;
		margin-top: 6px;
		display: block;
		padding: 6px 20px;
	}
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px–991px (tablet landscape)
═══════════════════════════════════════════════════════════════ */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#topnav a.navbar-logo img {
		width: 100%;
		max-width: 200px;
	}

	#topnav a.navbar-logo,
	#topnav a.navbar-logo p.site-description {
		max-width: 400px;
		display: inline-block;
		padding: 0;
		margin-bottom: 0;
	}

	.logo-mobile {
		display: inline-block;
		width: 80%;
	}

	.logo-mobile .navbar-logo h1,
	.logo-mobile .navbar-logo .site-title {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	#topnav .container {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.post .entry-meta {
		display: inline-block;
	}

	.post .entry-meta span {
		display: inline-block;
	}

	.full-width-contain .entry-content > .alignfull {
		margin-left: calc(-50vw + 50%);
	}

	.wp-block-gallery ul {
		list-style: none !important;
		margin: 0 !important;
	}

	.post-content ul,
	.post-content ol {
		margin-left: 0;
	}

	.post ol {
		list-style-position: outside;
	}

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

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

	.comment-metadata.flex-center .card-block,
	.comment-metadata.flex-center .card-block .comment-content {
		width: 100%;
	}

	/* Calendar — tablet */
	.wp-block-calendar table {
		width: 100%;
		border-collapse: collapse;
	}

	.wp-block-calendar table caption,
	.wp-block-calendar table tbody {
		color: var(--color-calendar-text);
	}

	.wp-block-calendar table th {
		font-weight: var(--font-weight-normal);
		background: var(--color-calendar-bg);
	}

	.wp-block-calendar tbody td,
	.wp-block-calendar th {
		padding: 4px;
		border: 1px solid var(--color-border-calendar);
	}

	.wp-block-calendar tfoot td {
		border: none;
	}

	.wp-block-calendar a {
		text-decoration: underline;
	}

	.wp-block-calendar table caption {
		color: var(--color-calendar-text);
		background-color: var(--color-calendar-caption);
		width: 100%;
		caption-side: top;
		text-align: center;
	}

	.wp-block-calendar thead {
		vertical-align: bottom;
		white-space: nowrap;
	}

	.wp-block-calendar thead tr {
		position: initial;
		top: 0;
		left: 0;
	}

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

	.wp-block-calendar tfoot td {
		text-align: center;
	}

	.wp-block-search .wp-block-search__button {
		margin-left: 10px;
		margin-top: 0;
		display: block;
		padding: 6px 20px;
		border-radius: var(--radius-md);
	}
}