/**
 * Molochko theme – layout, header, footer, menu, fancy-box, no Elementor
 */

/* Global design tokens (static, were previously inline) */
:root {
	--primary-color: #ad9779;
	--primary-color-rgb: 173,151,121;
	--secondary-color: #1a243f;
	--secondary-color-rgb: 26,36,63;
	--heading-color: #10172c;
	--heading-color-rgb: 16,23,44;
	--body-color: #6d6d6d;
	--body-font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--heading-font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--content-gutter: 15px;
	--section-gap: 4rem;
}

@media (max-width: 991px) {
	:root {
		--content-gutter: 20px;
	}
}

@media (max-width: 575px) {
	:root {
		--content-gutter: 20px;
	}
}

/* Consistent horizontal padding for all main content containers */
.elementor-section .elementor-container,
.pxl-main .container {
	padding-left: var(--content-gutter);
	padding-right: var(--content-gutter);
}

html,
body {
	font-family: var(--body-font-family);
	font-weight: 300;
	color: var(--body-color);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--heading-font-family);
	font-weight: 300;
	color: var(--heading-color);
}

/* --- Reset body --- */
body {
	margin: 0;
	padding: 0;
}

/* --- Page & Overlay --- */
.pxl-page {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

.pxl-page-overlay {
	position: fixed;
	z-index: 603;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	background: rgba(var(--heading-color-rgb), 0.8);
	opacity: 0;
	transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.side-panel-open .pxl-page-overlay {
	width: 100%;
	height: 100%;
	opacity: 1;
}

.side-panel-open body,
body.side-panel-open {
	overflow: hidden;
}

/* --- Main content --- */
.pxl-main {
	padding-top: 24px;
	padding-bottom: 0;
}

/* Front page / home: no gap between header and hero */
.home .pxl-main,
body.front-page .pxl-main {
	padding-top: 0 !important;
}

@media (max-width: 1199px) {
	.pxl-main {
		padding-top: 20px;
		padding-bottom: 0;
	}
	.home .pxl-main,
	body.front-page .pxl-main {
		padding-top: 0 !important;
	}
}

/* --- Utilities (Bootstrap-like, minimal) --- */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }
@media (min-width: 1200px) {
	.d-xl-block { display: block !important; }
	.d-xl-none { display: none !important; }
	.d-xl-flex { display: flex !important; }
	.d-xl-inline { display: inline !important; }
}
@media (max-width: 1199px) {
	.d-xl-none { display: block !important; }
	.d-xl-block { display: none !important; }
}
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.text-center { text-align: center !important; }
.relative { position: relative; }

/* --- Header --- */
#pxl-header {
	transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
	background: #fff;
}

#pxl-header .header-container {
	max-width: 1570px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 15px;
}

/* --- Header: top section (email, address, hours, consultation button) – Power Legal style --- */
.header-top-section {
	background: var(--secondary-color);
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	padding: 10px 0;
}
.header-top-section .elementor-container {
	max-width: 1570px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 15px;
}
.header-top-inner {
	min-height: 40px;
}
.header-top-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0 4px;
}
.header-top-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0 20px 0 0;
}
.header-top-item:last-of-type {
	padding-right: 0;
}
.header-top-item a {
	color: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.header-top-item a:hover {
	color: #fff;
}
.header-top-item .elementor-icon-list-icon,
.header-top-item .elementor-icon-list-text {
	display: inline-flex;
	align-items: center;
}
.header-top-item i,
.header-top-item .flaticon {
	font-size: 1em;
	opacity: 0.9;
}
.header-consultation-wrap {
	flex-shrink: 0;
}
.header-consultation-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--primary-color);
	color: #fff !important;
	text-decoration: none;
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	border-radius: 2px;
	transition: background 0.3s ease, transform 0.2s ease;
}
.header-consultation-btn:hover {
	background: var(--heading-color);
	color: #fff !important;
	transform: translateY(-1px);
}
.header-consultation-btn .zmdi {
	font-size: 18px;
}

/* --- Header main section: logo (left) | menu (centered) | phone + number (right) --- */
.header-main-section {
	background: #fff;
}
.header-main-section .header-container {
	max-width: 1570px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 15px;
}
.header-main-row {
	width: 100%;
}
.header-main-right {
	min-height: 72px;
}
.pxl-header-logo {
	padding-top: 14px;
	padding-bottom: 14px;
}
/* Menu centered in the right column (visibility from d-none d-xl-flex on nav) */
@media (min-width: 1200px) {
	.header-main-right .pxl-main-navigation {
		flex-grow: 1;
		justify-content: center;
		align-items: center;
	}
}
.header-right {
	gap: 15px;
}

/* Desktop header: language switcher dropdown with flag (Polylang) */
.pxl-header-lang-switcher {
	display: flex;
	align-items: stretch;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: border-color 0.2s, box-shadow 0.2s;
	overflow: hidden;
}

.pxl-header-lang-switcher:hover {
	border-color: rgba(var(--primary-color-rgb), 0.4);
	box-shadow: 0 2px 8px rgba(var(--primary-color-rgb), 0.12);
}

.pxl-header-lang-switcher .pll-select-flag {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	background: rgba(var(--primary-color-rgb), 0.06);
	border-right: 1px solid #eee;
}

.pxl-header-lang-switcher .pll-select-flag img {
	width: 22px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
	display: block;
}

.pxl-header-lang-switcher .pll-switcher-select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	flex: 1;
	min-width: 0;
	padding: 10px 36px 10px 14px;
	font-size: 14px;
	font-weight: 500;
	font-family: var(--body-font-family);
	color: var(--heading-color);
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%236d6d6d' d='M6 7.5L1.5 3h9L6 7.5z'/%3E%3C/svg%3E") no-repeat right 12px center;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}

.pxl-header-lang-switcher .pll-switcher-select:hover,
.pxl-header-lang-switcher .pll-switcher-select:focus {
	color: var(--primary-color);
	outline: none;
}

.pxl-header-lang-switcher:focus-within {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.15);
}

.header-phone {
	gap: 10px;
	text-decoration: none;
	color: inherit;
}
.header-phone:hover {
	text-decoration: none;
	color: inherit;
}
.header-phone:hover .header-phone-number {
	color: var(--heading-color);
}
.header-phone-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: rgba(var(--primary-color-rgb), 0.12);
	color: var(--primary-color);
	border-radius: 50%;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease;
	flex-shrink: 0;
}
.header-phone:hover .header-phone-link {
	background: var(--primary-color);
	color: #fff;
}
.header-phone-link .flaticon {
	font-size: 18px;
}
/* Phone number visible next to icon (like Power Legal heading-title) */
.header-phone-number {
	font-weight: 500;
	color: var(--heading-color);
	font-size: 16px;
	margin: 0;
}
.header-phone-number.heading-title {
	font-size: 16px;
	line-height: 1.2;
}
@media (max-width: 1199px) {
	.header-phone-number {
		font-size: 15px;
	}
	.header-main-right,
	.header-mobile-right {
		min-height: auto;
		justify-content: flex-end !important;
	}
	.header-mobile-right .header-right {
		margin-left: auto !important;
	}
	.pxl-header-logo {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

/* Reduce side gap on desktop; on mobile use global gutter for consistency */
.molochko-fancy-boxes .container,
.molochko-about .container {
	padding-left: 0;
	padding-right: 0;
}

@media (max-width: 991px) {
	.molochko-fancy-boxes .container,
	.molochko-about .container {
		padding-left: var(--content-gutter);
		padding-right: var(--content-gutter);
	}
}

/* Make fancy boxes wider */
.molochko-fancy-boxes .container {
	max-width: 1570px;
}

.pxl-header-logo {
	padding-top: 14px;
	padding-bottom: 8px;
}

.pxl-header-logo img {
	max-height: 90px;
	width: auto;
}

.pxl-header-logo a {
	display: block;
}

@media (max-width: 1199px) {
	.pxl-header-logo { padding-top: 10px; padding-bottom: 10px; }
	.pxl-header-logo img {
		max-height: 155px;
	}
}

/* --- Primary menu (desktop) --- */
@media (min-width: 1200px) {
	.pxl-primary-menu {
		padding: 0;
		margin: 0 -10px;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
	}

	.pxl-primary-menu > li {
		position: relative;
		margin: 0 10px;
	}

	.pxl-primary-menu > li::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 2px;
		background: var(--primary-color);
		transition: width 0.25s ease;
	}

	.pxl-primary-menu > li.current-menu-item::before,
	.pxl-primary-menu > li.current-menu-ancestor::before {
		width: 100%;
	}

	.pxl-primary-menu > li > a {
		color: var(--heading-color);
		font-size: 15px;
		font-weight: 400;
		line-height: 64px;
		padding: 0 4px;
		display: inline-block;
		text-transform: uppercase;
		letter-spacing: 0.02em;
		transition: color 0.2s ease;
	}

	.pxl-primary-menu > li:hover > a,
	.pxl-primary-menu > li.current-menu-item > a,
	.pxl-primary-menu > li.current-menu-ancestor > a {
		color: var(--primary-color);
	}

	.pxl-primary-menu .sub-menu {
		position: absolute;
		left: 0;
		top: 100%;
		list-style: none;
		padding: 0;
		margin: 0;
		min-width: 220px;
		background: #fff;
		box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.08);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s, visibility 0.3s;
		z-index: 100;
	}

	.pxl-primary-menu > li:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
	}

	.pxl-primary-menu .sub-menu a {
		display: block;
		padding: 12px 20px;
		color: #1e1e1e;
		font-size: 16px;
		font-weight: 200;
		transition: color 0.3s;
	}

	.pxl-primary-menu .sub-menu a:hover {
		color: var(--primary-color);
	}
}

/* --- Mobile hamburger (smaller on mobile) --- */
.main-menu-mobile .btn-nav-mobile {
	display: inline-block;
	height: 21px;
	width: 22px;
	cursor: pointer;
	position: relative;
	vertical-align: middle;
	border: 0;
	padding: 0;
	background: none;
	font: inherit;
}

@media (max-width: 1199px) {
	.main-menu-mobile .btn-nav-mobile {
		height: 16px;
		width: 17px;
	}
	.main-menu-mobile .btn-nav-mobile span {
		margin: 3px 0;
		margin-top: -1px;
	}
}

.main-menu-mobile .btn-nav-mobile::before,
.main-menu-mobile .btn-nav-mobile::after,
.main-menu-mobile .btn-nav-mobile span {
	content: "";
	background: var(--heading-color);
	display: block;
	height: 2px;
	left: 0;
	right: 0;
	position: absolute;
	transition: all 0.3s ease;
}

.main-menu-mobile .btn-nav-mobile span {
	margin: 5px 0;
	top: 50%;
	margin-top: -1px;
}

.main-menu-mobile .btn-nav-mobile::before {
	top: 0;
}

.main-menu-mobile .btn-nav-mobile::after {
	bottom: 0;
}

.main-menu-mobile .btn-nav-mobile:hover::before,
.main-menu-mobile .btn-nav-mobile:hover::after,
.main-menu-mobile .btn-nav-mobile:hover span {
	background: var(--primary-color);
}

/* When menu is open: show X (cross) instead of hamburger */
.main-menu-mobile .btn-nav-mobile.cliked::before,
.main-menu-mobile .btn-nav-mobile.cliked::after {
	top: 50%;
	left: 0;
	right: 0;
	margin-top: -1px;
}
.main-menu-mobile .btn-nav-mobile.cliked::before {
	transform: rotate(45deg);
}
.main-menu-mobile .btn-nav-mobile.cliked::after {
	transform: rotate(-45deg);
}
.main-menu-mobile .btn-nav-mobile.cliked span {
	opacity: 0;
	visibility: hidden;
}

/* --- Side panel (mobile menu) — full screen --- */
/* Use left (not transform) so native select dropdown positions correctly on mobile */
/* min-height: 100dvh for iPhone; padding-bottom for safe-area so contact button is visible */
.pxl-hidden-template {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	z-index: -1;
	padding: 0;
	background: var(--secondary-color);
	right: 0;
	bottom: 0;
	transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
	opacity: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.pxl-hidden-template.pos-left {
	max-width: none;
	z-index: 604;
	left: -100%;
}

.pxl-hidden-template.open {
	left: 0;
	opacity: 1;
	z-index: 9999;
}

.pxl-mobile-panel-header .panel-header-inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 20px 24px;
	min-height: 72px;
}

.pxl-panel-content.pxl-mobile-panel-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px 28px 32px;
	padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
	min-height: 0;
}

@media (min-width: 576px) {
	.pxl-panel-content.pxl-mobile-panel-content { padding: 32px 40px 48px; padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px)); }
}


.pxl-close {
	background: rgba(255, 255, 255, 0.15);
	border: 9px solid transparent;
	padding: 0;
	font: inherit;
	color: #fff;
	width: 44px;
	height: 44px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: background 0.25s, transform 0.2s;
	border-radius: 50%;
}

.pxl-mobile-close:hover {
	background: rgba(255, 255, 255, 0.25);
}

.pxl-close::before,
.pxl-close::after {
	content: "";
	position: absolute;
	height: 2px;
	width: 50%;
	top: 50%;
	left: 25%;
	margin-top: -1px;
	background: #fff;
	transform-origin: 50% 50%;
	transition: transform 0.25s ease;
}

.pxl-close::before { transform: rotate(45deg); }
.pxl-close::after { transform: rotate(-45deg); }

.pxl-close:hover::before,
.pxl-close:hover::after {
	transform: rotate(0);
}

/* Mobile menu list — full screen panel (light text on dark) */
.pxl-side-mobile .pxl-mobile-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pxl-side-mobile .pxl-mobile-menu li { position: relative; }

.pxl-side-mobile .pxl-mobile-menu .menu-item > a {
	display: block;
	padding: 14px 0;
	color: rgba(255, 255, 255, 0.95);
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 0.02em;
	transition: color 0.2s, padding-left 0.2s;
}

.pxl-side-mobile .pxl-mobile-menu .menu-item > a:hover {
	color: var(--primary-color);
}

.pxl-side-mobile .pxl-mobile-menu .sub-menu {
	list-style: none;
	padding-left: 20px;
	margin: 0;
	display: none;
	border-left: 2px solid rgba(255, 255, 255, 0.2);
	margin-left: 4px;
}

.pxl-side-mobile .pxl-mobile-menu .sub-menu .menu-item a {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
}

.mobile-sub-toggle {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pxl-side-mobile .mobile-sub-toggle::before {
	color: rgba(255, 255, 255, 0.8);
}

.mobile-sub-toggle::before {
	content: "\f2f2";
	font-family: "Material-Design-Iconic-Font";
	font-size: 18px;
	color: var(--heading-color);
	transition: transform 0.3s, color 0.3s;
}

.mobile-sub-toggle:hover::before,
.mobile-sub-toggle.open::before {
	color: var(--primary-color);
}

.mobile-sub-toggle.open::before {
	transform: rotate(180deg);
}

.pxl-side-mobile .pxl-mobile-menu .menu-item-has-children {
	position: relative;
	padding-right: 40px;
}

/* Mobile menu footer: language switcher + phone + CTA (keep visible on iPhone, above safe-area) */
.pxl-mobile-menu-footer {
	margin-top: 32px;
	padding-top: 28px;
	padding-bottom: env(safe-area-inset-bottom, 0px);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex-shrink: 0;
}

.pxl-side-mobile .pxl-mobile-menu-footer .pxl-mobile-lang-switcher {
	display: flex;
	align-items: stretch;
	width: 100%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.pxl-side-mobile .pxl-mobile-menu-footer .pxl-mobile-lang-switcher:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.pxl-side-mobile .pxl-mobile-menu-footer .pxl-mobile-lang-switcher .pll-select-flag {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0 16px;
	background: rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.pxl-side-mobile .pxl-mobile-menu-footer .pxl-mobile-lang-switcher .pll-select-flag img {
	width: 24px;
	height: 18px;
	object-fit: cover;
	border-radius: 2px;
	display: block;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.pxl-side-mobile .pxl-mobile-menu-footer .pxl-mobile-lang-switcher .pll-switcher-select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	flex: 1;
	min-width: 0;
	width: 100%;
	padding: 14px 44px 14px 16px;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--body-font-family);
	color: #fff;
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.85)' d='M6 7.5L1.5 3h9L6 7.5z'/%3E%3C/svg%3E") no-repeat right 16px center;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}

.pxl-side-mobile .pxl-mobile-menu-footer .pxl-mobile-lang-switcher .pll-switcher-select:hover,
.pxl-side-mobile .pxl-mobile-menu-footer .pxl-mobile-lang-switcher .pll-switcher-select:focus {
	color: var(--primary-color);
	outline: none;
}

.pxl-side-mobile .pxl-mobile-menu-footer .pxl-mobile-lang-switcher:focus-within {
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.3);
}

.pxl-side-mobile .pxl-mobile-menu-footer .pxl-mobile-lang-switcher .pll-switcher-select option {
	background: var(--secondary-color);
	color: #fff;
}

.pxl-mobile-phone {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.02em;
	transition: color 0.2s, opacity 0.2s;
}

.pxl-mobile-phone:hover {
	color: var(--primary-color);
}

.pxl-mobile-phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}

.pxl-mobile-phone-icon .flaticon {
	font-size: 22px;
	color: var(--primary-color);
}

.pxl-mobile-consult-btn {
	display: block;
	text-align: center;
	padding: 16px 24px;
	background: var(--primary-color);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s, transform 0.1s;
}

.pxl-mobile-consult-btn:hover {
	background: #c4a876;
	color: #fff;
}

/* --- Page title (inner pages) --- */
.pxl-pagetitle {
	position: relative;
	padding: 50px 0;
	background: var(--secondary-color);
}

.pxl-pagetitle .main-title {
	margin: 0;
	color: #fff;
	font-size: 48px;
	font-weight: 300;
}

/* --- Footer --- */
.pxl-footer-bottom {
	padding: 30px 0;
	background: var(--secondary-color);
	color: #fff;
	font-size: 16px;
}

.pxl-copyright-text a {
	color: var(--primary-color);
	transition: color 0.3s;
}

.pxl-copyright-text a:hover {
	color: #fff;
}

/* --- Fancy Box layout-4 (same as Powerlegal) --- */
.pxl-fancy-box.layout-4 {
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.pxl-fancy-box.layout-4 {
		margin-bottom: 20px;
	}
}

.pxl-fancy-box.layout-4 .box-inner {
	background: var(--secondary-color);
}

.pxl-fancy-box.layout-4 .box-inner > .box-top:first-child {
	margin-top: 0;
	padding-top: 0;
}

.pxl-fancy-box.layout-4 .box-inner .box-top {
	align-items: center;
	background: #2a334d;
	flex-wrap: nowrap;
	display: flex;
	margin-top: 0;
	padding-top: 0;
}

.pxl-fancy-box.layout-4 .box-inner .box-top .box-icon {
	flex: none;
	width: 86px;
	height: 86px;
	background: var(--primary-color);
	align-items: center;
	justify-content: center;
	display: flex;
}

.pxl-fancy-box.layout-4 .box-inner .box-top .box-icon i,
.pxl-fancy-box.layout-4 .box-inner .box-top .box-icon .pxl-icon {
	font-family: flaticon !important;
	font-size: 50px;
	color: #fff;
	transition: transform 0.3s linear;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pxl-fancy-box.layout-4 .box-inner .box-top .box-icon i:before,
.pxl-fancy-box.layout-4 .box-inner .box-top .box-icon .pxl-icon:before {
	font-family: flaticon !important;
}

/* Explicit icon content so icons always render */
.pxl-fancy-box.layout-4 .box-icon .flaticon-calling:before { content: "\f112" !important; }
.pxl-fancy-box.layout-4 .box-icon .flaticon-reliability:before { content: "\f12d" !important; }
.pxl-fancy-box.layout-4 .box-icon .flaticon-medal:before { content: "\f12f" !important; }

.pxl-fancy-box.layout-4 .box-inner .box-top .box-title {
	margin: 0;
	padding: 0 30px;
	font-size: 28px;
	color: #fff;
	font-family: var(--heading-font-family);
	font-weight: 300;
}

.pxl-fancy-box.layout-4 .box-inner .box-center {
	color: #d9d9d9;
	padding: 30px 30px 28px;
}

.pxl-fancy-box.layout-4 .box-center .box-description {
	margin-bottom: 0;
	line-height: 1.6;
	min-height: 4.8em;
}

.pxl-fancy-box.layout-4 .box-center .btn-more {
	margin-top: 22px;
}

.pxl-fancy-box.layout-4 .box-center .btn-more > span::after {
	content: none;
}

.pxl-fancy-box.layout-4 .box-center .btn-more:hover {
	color: #fff;
}

.pxl-fancy-box.layout-4 .box-inner .box-image img {
	width: 100%;
	height: auto;
	filter: grayscale(1);
	transition: filter 0.3s ease;
}

.pxl-fancy-box.layout-4 .box-inner:hover .box-top .box-icon i,
.pxl-fancy-box.layout-4 .box-inner:hover .box-top .box-icon .pxl-icon {
	transform: rotateY(360deg);
}

.pxl-fancy-box.layout-4 .box-inner:hover .box-image img {
	filter: grayscale(0);
}

/* --- .btn-more --- */
.btn-more {
	display: inline-flex;
	align-items: center;
	position: relative;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--primary-color);
	transition: color 0.3s ease;
}

.btn-more > span { position: relative; z-index: 1; }

.btn-more i {
	font-size: 17px;
	line-height: 1;
	font-weight: normal;
	margin-left: 5px;
	transition: all 0.3s ease;
	position: relative;
	bottom: 1px;
}

.btn-more:hover i {
	transform: translateX(15px);
	opacity: 0;
}

/* --- Scroll to top --- */
.pxl-scroll-top {
	position: fixed;
	z-index: 99;
	bottom: 24px;
	right: 30px;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
}

.pxl-scroll-top:hover {
	color: #fff;
	background: var(--secondary-color);
}

.pxl-scroll-top.on {
	bottom: 44px;
	opacity: 1;
	visibility: visible;
}

/* --- Front page: hero full width --- */
.molochko-hero.section-full {
	overflow: hidden;
}

/* Custom hero slider (ACF hero_slides) – no RevSlider */
.molochko-hero-custom {
	width: 100%;
	position: relative;
}
.molochko-hero-custom .molochko-hero-slides {
	width: 100%;
}
.molochko-hero-custom .molochko-hero-slide {
	position: relative;
	outline: none;
}
.molochko-hero-custom .molochko-hero-slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	max-height: 85vh;
}
.molochko-hero-custom .molochko-hero-slide-link {
	display: block;
}
.molochko-hero-custom .molochko-hero-slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 2rem;
	background: linear-gradient(transparent, rgba(0,0,0,0.6));
	color: #fff;
}
.molochko-hero-custom .molochko-hero-slide-title {
	margin: 0 0 0.25rem;
	font-size: 1.5rem;
}
.molochko-hero-custom .molochko-hero-slide-text {
	margin: 0;
	font-size: 0.95rem;
	opacity: 0.95;
}
.molochko-hero-custom .slick-arrow {
	z-index: 2;
}
.molochko-hero-custom .slick-dots {
	bottom: 1rem;
}

.molochko-hero .rev_slider,
.molochko-hero .rev_slider_wrapper {
	width: 100% !important;
}

/* Fix Revolution Slider button icons - use Material Design as fallback if revicons fails */
.molochko-hero [class^="revicon-"],
.molochko-hero [class*=" revicon-"],
.molochko-hero .tp-arr-allwrapper [class^="revicon-"],
.molochko-hero .tp-arr-allwrapper [class*=" revicon-"],
.molochko-hero .tp-leftarrow,
.molochko-hero .tp-rightarrow {
	font-family: "revicons", "Material-Design-Iconic-Font" !important;
	font-style: normal !important;
	font-weight: normal !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.molochko-hero [class^="revicon-"]:before,
.molochko-hero [class*=" revicon-"]:before,
.molochko-hero .tp-arr-allwrapper [class^="revicon-"]:before,
.molochko-hero .tp-arr-allwrapper [class*=" revicon-"]:before,
.molochko-hero .tp-leftarrow:before,
.molochko-hero .tp-rightarrow:before {
	font-family: "revicons", "Material-Design-Iconic-Font" !important;
	font-style: normal !important;
	font-weight: normal !important;
	speak: never;
	display: inline-block !important;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	font-variant: normal !important;
	text-transform: none !important;
	line-height: 1em;
	margin-left: .2em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Ensure correct icon content codes from revicons */
.molochko-hero .revicon-left-open-big:before {
	content: '\e824' !important;
}
.molochko-hero .revicon-right-open-big:before {
	content: '\e825' !important;
}
.molochko-hero .revicon-left-open:before {
	content: '\e819' !important;
}
.molochko-hero .revicon-right-open:before {
	content: '\e81a' !important;
}
.molochko-hero .revicon-left:before {
	content: '\e836' !important;
}
.molochko-hero .revicon-right:before {
	content: '\e826' !important;
}

/* Fix SR7 arrow elements - ensure revicons font loads and displays */
sr7-arrow,
sr7-arrow.sr7-arrows {
	font-family: "revicons", "Material-Design-Iconic-Font" !important;
	font-style: normal !important;
	font-weight: normal !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	margin-top: 0 !important;
}

/* Ensure :before pseudo-element exists and is styled */
sr7-arrow:before,
sr7-arrow.sr7-arrows:before {
	font-family: "revicons", "Material-Design-Iconic-Font" !important;
	font-style: normal !important;
	font-weight: normal !important;
	speak: never;
	display: flex !important;
	align-items: center;
	justify-content: center;
	text-decoration: inherit;
	width: 100%;
	height: 100%;
	text-align: center;
	font-variant: normal !important;
	text-transform: none !important;
	line-height: 1;
	font-size: 15px;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Left arrow content */
sr7-arrow.sr7-leftarrow:before,
sr7-arrow.sr7-arrows.sr7-leftarrow:before,
.sr7-arrows.sr7-leftarrow:before {
	content: '\e824' !important;
}

/* Right arrow content */
sr7-arrow.sr7-rightarrow:before,
sr7-arrow.sr7-arrows.sr7-rightarrow:before,
.sr7-arrows.sr7-rightarrow:before {
	content: '\e825' !important;
}

/* --- Front page: no top padding when hero --- */
body.home .pxl-main,
body.front-page .pxl-main {
	padding-top: 0 !important;
}

body.home .molochko-fancy-boxes {
	padding-bottom: 80px;
	margin-bottom: 0;
}

/* --- Spacing between main blocks (hero, fancy boxes, about, practice areas) --- */
/* Spacing between main front-page blocks */
.molochko-fancy-boxes {
	margin-bottom: var(--section-gap);
}
.molochko-about {
	margin-top: var(--section-gap);
}
.molochko-practice-areas {
	margin-top: var(--section-gap);
}
.molochko-case-studies {
	margin-top: var(--section-gap);
}
.molochko-reviews {
	margin-top: var(--section-gap);
}

/* --- Reviews section (client testimonials) --- */
.molochko-reviews {
	position: relative;
	padding: 72px 0 88px;
	overflow: hidden;
}

.molochko-reviews-inner {
	overflow: visible;
}

.molochko-reviews-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, var(--secondary-color) 0%, #0f1629 50%, #1a243f 100%);
	z-index: 0;
}

.molochko-reviews-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.03)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
	opacity: 1;
	pointer-events: none;
}

.molochko-reviews-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--content-gutter, 24px);
}

.molochko-reviews-header {
	text-align: center;
	margin-bottom: 48px;
}

.molochko-reviews-subtitle {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary-color);
	margin: 0 0 8px;
}

.molochko-reviews-title {
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1.2;
}

.molochko-reviews-desc {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.5;
	margin: 0;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

/* Carousel nav row: arrows above the cards (all sections) */
.mcs-carousel-nav,
.molochko-reviews-carousel-nav,
.blog-section-carousel-nav,
.lt-carousel-nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	min-height: 52px;
}
.mcs-carousel-nav .slick-prev,
.mcs-carousel-nav .slick-next,
.molochko-reviews-carousel-nav .slick-prev,
.molochko-reviews-carousel-nav .slick-next,
.blog-section-carousel-nav .slick-prev,
.blog-section-carousel-nav .slick-next,
.lt-carousel-nav .slick-prev,
.lt-carousel-nav .slick-next {
	position: static !important;
	transform: none !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
}

.molochko-reviews-carousel {
	position: relative;
	margin-top: 0;
	overflow: visible;
	padding: 0;
}

.molochko-reviews-carousel .molochko-reviews-track:not(.slick-initialized) {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	padding: 0 0 24px;
	-webkit-overflow-scrolling: touch;
}

.molochko-reviews-carousel .molochko-reviews-track:not(.slick-initialized) .molochko-review-slide {
	flex: 0 0 calc(50% - 14px);
	min-width: 280px;
}

.molochko-review-slide .molochko-review-card {
	background: rgba(255, 255, 255, 0.98);
	border-radius: 16px;
	padding: 36px 32px 32px;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	position: relative;
	border-left: 4px solid var(--primary-color);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.molochko-review-slide:hover .molochko-review-card {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.molochko-review-card-quote {
	position: absolute;
	top: 24px;
	right: 28px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--primary-color-rgb, 196, 168, 118), 0.12);
	color: var(--primary-color);
	border-radius: 12px;
	font-size: 24px;
}

.molochko-review-card-quote .zmdi {
	font-size: 26px;
}

.molochko-review-card-text {
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--heading-color);
	margin: 0 0 24px;
	padding-right: 40px;
	flex: 1;
	font-style: normal;
}

.molochko-review-card-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.molochko-review-card-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--heading-color);
	font-style: normal;
}

.molochko-review-card-type {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--primary-color);
	background: rgba(var(--primary-color-rgb, 196, 168, 118), 0.12);
	padding: 6px 12px;
	border-radius: 6px;
}

.molochko-review-card-archive-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}
.molochko-review-card-archive-link:hover {
	color: var(--heading-color);
	opacity: 0.9;
}
.molochko-review-card-archive-link .zmdi {
	font-size: 1.1em;
}

.molochko-reviews-carousel .slick-slide {
	padding: 0 14px;
}

.molochko-reviews-carousel .slick-list {
	margin: 0 -14px;
}

.molochko-reviews-carousel .slick-dots {
	position: relative;
	margin-top: 32px;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.molochko-reviews-carousel .slick-dots li button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	font-size: 0;
	cursor: pointer;
	transition: background 0.2s ease;
}

.molochko-reviews-carousel .slick-dots li.slick-active button {
	background: var(--primary-color);
}

/* Reviews Slick arrows: in nav row above cards */
.molochko-reviews-carousel .slick-prev,
.molochko-reviews-carousel .slick-next,
.molochko-reviews .molochko-reviews-prev,
.molochko-reviews .molochko-reviews-next {
	z-index: 20 !important;
	width: 52px !important;
	height: 52px !important;
	min-width: 52px !important;
	min-height: 52px !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: var(--primary-color) !important;
	color: #fff !important;
	font-size: 24px !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background 0.2s ease, color 0.2s ease !important;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35) !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.molochko-reviews .molochko-reviews-prev::before,
.molochko-reviews .molochko-reviews-next::before {
	content: none !important;
	display: none !important;
}

.molochko-reviews-carousel .slick-prev:hover,
.molochko-reviews-carousel .slick-next:hover,
.molochko-reviews .molochko-reviews-prev:hover,
.molochko-reviews .molochko-reviews-next:hover {
	background: #c4a876 !important;
	color: #fff !important;
}

.molochko-reviews-carousel .slick-prev .zmdi,
.molochko-reviews-carousel .slick-next .zmdi,
.molochko-reviews-prev .zmdi,
.molochko-reviews-next .zmdi {
	font-size: 28px !important;
	line-height: 1 !important;
	display: block !important;
	color: inherit !important;
}

/* Reviews arrows: no side positioning (they sit in nav row above) */

/* --- Reviews archive (/reviews/) --- */
.molochko-reviews-archive {
	position: relative;
	min-height: 100vh;
}
.molochko-reviews-archive-hero {
	position: relative;
	padding: 72px 0 56px;
	overflow: hidden;
}
.molochko-reviews-archive-hero .molochko-reviews-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.molochko-reviews-archive-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--content-gutter, 24px);
	text-align: center;
}
.molochko-reviews-archive-main {
	position: relative;
	z-index: 1;
	padding: 48px 0 72px;
	background: #f5f5f5;
}
.molochko-reviews-archive-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--content-gutter, 24px);
}
.molochko-reviews-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 28px;
}
.molochko-review-archive-card {
	background: #fff;
	border-radius: 16px;
	padding: 36px 32px 32px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--primary-color);
}
.molochko-review-archive-card .molochko-review-card-quote,
.molochko-review-archive-card .molochko-review-card-text,
.molochko-review-archive-card .molochko-review-card-footer {
	margin: 0 0 16px;
}
.molochko-review-archive-card .molochko-review-card-footer { margin-bottom: 0; }
.molochko-review-archive-card .molochko-review-card-archive-link {
	margin-top: 16px;
	padding-top: 16px;
}
.molochko-reviews-archive-pagination {
	margin-top: 40px;
	text-align: center;
}
.molochko-reviews-archive-empty {
	text-align: center;
	padding: 48px 24px;
}
.molochko-reviews-archive-empty-text {
	margin: 0 0 16px;
	color: #666;
}
.molochko-reviews-archive-empty-btn {
	display: inline-block;
	padding: 12px 24px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
}
.molochko-reviews-archive-empty-btn:hover {
	opacity: 0.9;
	color: #fff;
}

/* --- Case Studies section --- */
.molochko-case-studies-header {
	margin-bottom: 2rem;
}
.molochko-case-studies .pxl-heading-wrap.layout1 .heading-subtitle {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--primary-color);
	margin-bottom: 4px;
}
.molochko-case-studies .pxl-heading-wrap .heading-title {
	font-size: 38px;
	font-weight: 300;
	color: var(--heading-color);
	margin: 0 0 1rem;
	line-height: 1.3;
}
.molochko-case-studies-desc {
	color: #6d6d6d;
	line-height: 1.7;
	margin-bottom: 1rem;
}
.molochko-case-studies-desc p { margin: 0; }
.molochko-case-studies-divider .elementor-divider-separator {
	border: 0;
	border-top: 1px solid #e0e0e0;
}
.molochko-case-studies-grid {
	gap: 30px;
}
.molochko-case-study-item .item-inner {
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: box-shadow 0.3s;
}
.molochko-case-study-item .item-inner:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.molochko-case-study-item .item-featured {
	line-height: 0;
	overflow: hidden;
}
.molochko-case-study-item .item-featured a {
	display: block;
}
.molochko-case-study-item .item-featured img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}
.molochko-case-study-item .item-inner:hover .item-featured img {
	transform: scale(1.05);
}
.molochko-case-study-item .box-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 20px 24px;
}
.molochko-case-study-item .title-wrap {
	flex: 1;
	min-width: 0;
}
.molochko-case-study-item .item-title {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35;
}
.molochko-case-study-item .item-title a {
	color: var(--heading-color);
	text-decoration: none;
	transition: color 0.2s;
}
.molochko-case-study-item .item-title a:hover {
	color: var(--primary-color);
}
.molochko-case-study-item .item-category {
	font-size: 13px;
}
.molochko-case-study-item .item-category a {
	color: var(--primary-color);
	text-decoration: none;
}
.molochko-case-study-item .item-category a:hover {
	text-decoration: underline;
}
.molochko-case-study-item .item-readmore a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(var(--primary-color-rgb), 0.12);
	color: var(--primary-color);
	border-radius: 50%;
	transition: background 0.2s, color 0.2s;
}
.molochko-case-study-item .item-readmore a:hover {
	background: var(--primary-color);
	color: #fff;
}
.molochko-case-study-item .item-readmore .zmdi {
	font-size: 20px;
}

/* --- About block (two columns: images | text) --- */
.molochko-about {
	padding-top: 28px;
	padding-bottom: 28px;
}

.molochko-about-images {
	position: relative;
	line-height: 0;
}

.molochko-about-bg {
	width: 100%;
	height: auto;
	display: block;
}

.molochko-about-person {
	position: absolute;
	bottom: 0;
	left: 0;
	width: auto;
	max-width: 58%;
	height: auto;
	display: block;
}

@media (min-width: 768px) {
	.molochko-about-person.pxl-elementor-animate {
		animation: molochko-fadeInLeft 0.8s ease 0.2s both;
	}
}

@keyframes molochko-fadeInLeft {
	from { opacity: 0; transform: translate3d(-24px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.molochko-about-content .pxl-heading-wrap.layout1 .heading-subtitle {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #ad9779;
	margin-bottom: 4px;
}

.molochko-about-content .pxl-heading-wrap .heading-title {
	font-size: 46px;
	font-weight: 300;
	color: #10172c;
	margin: 0 0 1.25rem;
	line-height: 1.3;
}

.molochko-about-description,
.molochko-about-cta,
.molochko-about-contact {
	margin-bottom: 1rem;
	color: #6d6d6d;
	line-height: 1.7;
	font-weight: 200;
}

.molochko-about-description p,
.molochko-about-cta p,
.molochko-about-contact p { margin: 0 0 0.75em; }
.molochko-about-description p:last-child,
.molochko-about-cta p:last-child,
.molochko-about-contact p:last-child { margin-bottom: 0; }

.molochko-about-contact a { color: var(--primary-color); }
.molochko-about-contact a:hover { text-decoration: underline; }

/* Phone / Book Appointment line to match original */
.molochko-about-contact {
	font-size: 18px;
	color: #10172c;
}

.molochko-about-contact a {
	color: #ad9779;
	font-size: 26px;
}

.molochko-about-divider.elementor-divider { margin: 1.25rem 0; }
.molochko-about-divider .elementor-divider-separator {
	display: block;
	border: 0;
	border-top: 1px solid #e0e0e0;
}

.molochko-about-signature-meta {
	gap: 1rem 1.5rem;
}

.molochko-about-signature {
	margin-bottom: 0;
}

.molochko-about-signature img { height: auto; width: auto; max-width: 152px; display: block; }

.molochko-about-meta .elementor-icon-box-title {
	font-size: 16px;
	font-weight: 200;
	color: #10172c;
	text-transform: uppercase;
	margin: 0 0 0.25rem;
}

.molochko-about-meta .elementor-icon-box-description {
	margin: 0;
	font-size: 16px;
	color: #6d6d6d;
	font-weight: 200;
}

.molochko-about-spacer--top { height: 20px; }
.molochko-about-spacer--bottom { height: 20px; }

@media (min-width: 768px) {
	.molochko-about-spacer--top { height: 40px; }
	.molochko-about-spacer--bottom { height: 40px; }
}

/* --- Entry / content --- */
.clearfix::after { content: ""; display: table; clear: both; }
.entry-title { margin: 0 0 0.5em; font-size: 1.5rem; }
.entry-title a { color: inherit; }
.entry-title a:hover { color: var(--primary-color); }
.entry-meta { font-size: 0.9rem; color: #6d6d6d; margin-bottom: 1em; }
.entry-summary p:last-child { margin-bottom: 0; }
.post-thumbnail { margin-bottom: 1em; overflow: hidden; }
.post-thumbnail img { width: 100%; height: auto; display: block; }
.pxl-entry-content { line-height: 1.7; }
.sidebar-sticky { position: sticky; top: 130px; }

@media (max-width: 991px) {
	.sidebar-sticky { position: static; }
}

/* --- Section heading (Legal Practice Areas, etc.) – full width, match Powerlegal layout --- */
.molochko-section-heading {
	box-sizing: border-box;
	background-color: #f3f4f5;
	color: var(--body-color);
	font-weight: 200;
	line-height: 26px;
	padding: 42px var(--content-gutter) 0;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	width: 100vw;
	position: relative;
	left: 50%;
	right: auto;
	margin-left: -50vw;
}

.molochko-section-heading .pxl-heading-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 20px;
	position: relative;
}

.molochko-section-heading .pxl-heading-inner.center {
	text-align: center;
	max-width: 750px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.molochko-section-heading .heading-subtitle {
	display: block;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 4px;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 4px;
	position: relative;
}

.molochko-section-heading .heading-title {
	margin: 0 0 0.5rem;
	font-size: 46px;
	font-weight: 300;
	letter-spacing: 2px;
	line-height: 54px;
	color: var(--heading-color);
}

.molochko-section-heading .heading-title span {
	font-weight: 200;
}

@media (max-width: 767px) {
	.molochko-section-heading .heading-title {
		font-size: 36px;
		line-height: 1.2;
	}
}

.molochko-section-heading-desc {
	margin: 12px 0 0;
	padding: 0;
	color: var(--body-color);
	line-height: 26px;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

.molochko-section-heading-desc p {
	margin: 0;
}

.molochko-section-heading-divider.elementor-divider {
	display: flex;
	justify-content: center;
	padding: 16px 0;
	margin: 0 auto 20px;
	width: 100%;
}

.molochko-section-heading-divider .elementor-divider-separator {
	display: block;
	border: 0;
	border-top: 2px solid var(--primary-color);
	width: 122px;
	height: 2px;
}

/* --- Practice Areas section --- */
.molochko-practice-areas {
	padding-top: 80px;
	padding-bottom: 80px;
	margin-top: var(--section-gap);
}

.molochko-practice-areas .elementor-container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--content-gutter);
	padding-right: var(--content-gutter);
}

/* Cross-hover overlay (diagonal reveal on hover) */
.cross-hover {
	position: relative;
	overflow: hidden;
}

.cross-hover::before {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: 0;
	width: 100%;
	clip-path: polygon(0 0, 102% 0%, 102% 102%);
	transition: all 400ms ease;
	transform: scale(0);
	transform-origin: top right;
	background-color: var(--secondary-color);
	z-index: 0;
}

.cross-hover::after {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: 0;
	width: 100%;
	clip-path: polygon(0 0, 102% 102%, 0 102%);
	background-color: #232d47;
	transition: all 400ms ease;
	transform: scale(0);
	transform-origin: bottom left;
	z-index: 0;
}

.cross-hover:hover::before,
.cross-hover:hover::after {
	transform: scale(1.005);
}

/* Practice area grid layout 1 */
/* Vertical and horizontal gap between practice area cards */
.pxl-practice-area-grid.layout-pxl-practice-area-1 .pxl-grid-inner.row {
	--bs-gutter-y: 28px;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item {
	display: flex;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner {
	background-color: #fff;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-title {
	font-size: 25px;
	margin-bottom: 10px;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-title a {
	color: var(--heading-color);
	transition: color 0.3s ease;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .area-icon-wrap {
	width: 86px;
	height: 86px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--secondary-color);
	color: #fff;
	border-radius: 3px;
	margin-top: 13px;
	margin-bottom: 23px;
	transition: all 0.3s ease;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .area-icon-wrap > * {
	max-width: 100%;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .area-icon-wrap img {
	width: 50px;
	height: auto;
	transition: all 0.35s linear 0.6s;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .area-icon-wrap i {
	font-size: 50px;
	transition: all 0.3s linear 0.6s;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-content {
	padding: 35px 35px 30px;
	transition: all 0.3s ease;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 1;
	border: 1px solid #d8d8d8;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-content .content-inner {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	align-items: center;
	text-align: center;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-content .item-excerpt {
	flex: 1 1 auto;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-content .item-readmore {
	margin-top: auto;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-content > * {
	max-width: 100%;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-excerpt {
	transition: all 0.3s ease;
	font-size: 16px;
	line-height: 1.625;
	color: var(--body-color);
}

@media (max-width: 991px) {
	.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-excerpt {
		max-height: 78px;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}
	.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-content {
		padding: 35px 20px 50px;
	}
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner .item-readmore {
	margin-top: auto;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner:hover .item-content {
	border-color: transparent;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner:hover .item-content .area-icon-wrap {
	background-color: var(--primary-color);
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner:hover .item-content .area-icon-wrap img,
.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner:hover .item-content .area-icon-wrap i {
	animation: molochko-updown 0.5s ease 0.2s;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner:hover .item-content .item-title a,
.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner:hover .item-content .btn-more {
	color: #fff;
}

.pxl-practice-area-grid.layout-pxl-practice-area-1 .grid-item-inner:hover .item-content .item-excerpt {
	color: #d9d9d9;
}

@keyframes molochko-updown {
	0% { transform: translateY(0); }
	40% { transform: translateY(-5px); }
	100% { transform: translateY(0); }
}

/* Case Studies – Power Legal style header + horizontal carousel */
.molochko-case-studies {
	margin-top: var(--section-gap);
	color: var(--body-color);
}

.mcs-header-wrapper {
	width: 100%;
}

.mcs-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 var(--content-gutter);
}

.mcs-header-left {
	flex: 1 1 60%;
	padding: 0 16px;
}

.mcs-header-right {
	flex: 1 1 40%;
	padding: 0 16px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	font-size: 14px;
	font-weight: 700;
}

.mcs-subtitle {
	color: var(--primary-color);
	font-size: 14px;
	letter-spacing: 0.02em;
	margin-bottom: 4px;
}

.mcs-title {
	color: var(--heading-color);
	font-size: 46px;
	font-weight: 700;
	margin: 0 0 8px;
}

.mcs-desc {
	margin: 0;
	max-width: 640px;
}

.mcs-view-all {
	background-color: var(--primary-color);
	color: #fff;
	padding: 10px 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}

.mcs-view-all:hover {
	background-color: #c4a876;
	color: #fff;
}

.mcs-carousel {
	margin-top: 55px;
	padding: 0 var(--content-gutter);
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

/* Fallback when Slick is not loaded */
.mcs-carousel .mcs-track:not(.slick-initialized) {
	overflow-x: auto;
	display: flex;
	gap: 24px;
	padding: 0 0 32px;
	-webkit-overflow-scrolling: touch;
}

.mcs-carousel .mcs-track:not(.slick-initialized) .mcs-slide {
	flex: 0 0 340px;
	min-width: 300px;
}

/* Slick: slide spacing and bigger cards */
.molochko-case-studies .mcs-track.slick-initialized .slick-slide {
	padding: 0 15px;
}

.molochko-case-studies .mcs-track.slick-initialized .slick-list {
	margin: 0 -15px;
}

.mcs-slide {
	position: relative;
}

.mcs-image-wrap {
	position: relative;
	overflow: hidden;
	height: 340px;
	min-height: 340px;
	max-height: 340px;
	background-color: var(--secondary-color);
}

.mcs-image-wrap img {
	width: 100%;
	height: 340px;
	min-height: 340px;
	max-height: 340px;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.4s ease;
}

.mcs-slide:hover .mcs-image-wrap img {
	transform: scale(1.05);
}

.mcs-overlay {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	background-color: var(--secondary-color);
	padding: 26px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}

.mcs-overlay-text {
	max-width: 80%;
}

.mcs-category {
	color: #d9d9d9;
	font-size: 14px;
	margin-bottom: 6px;
}

.mcs-case-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
}

@media (min-width: 768px) {
	.mcs-case-title {
		font-size: 1.4rem;
	}
}

.mcs-case-title a {
	color: #fff;
	text-decoration: none;
}

.mcs-case-title a:hover {
	color: #fff;
	text-decoration: underline;
}

.mcs-arrow-wrap {
	font-size: 18px;
}

.mcs-arrow {
	background-color: rgba(255, 255, 255, 0.2);
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
}

.mcs-arrow:hover {
	background-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 575px) {
	.mcs-header-inner {
		max-width: 767px;
	}
	.mcs-header-left,
	.mcs-header-right {
		flex: 0 0 100%;
		width: 100%;
	}
	.mcs-header-right {
		justify-content: flex-start;
		margin-top: 20px;
	}
}

@media (max-width: 991px) {
	.mcs-header-inner {
		max-width: 1024px;
	}
}

/* Slick arrows and dots for Case Studies – hide default theme icons (use only our zmdi) */
.molochko-case-studies .mcs-slick-prev::before,
.molochko-case-studies .mcs-slick-next::before {
	content: none !important;
	display: none !important;
}

.molochko-case-studies .mcs-carousel .slick-dots li button::before,
.molochko-case-studies .mcs-carousel .slick-dots li::before {
	content: none !important;
	display: none !important;
}

.molochko-case-studies .mcs-carousel {
	position: relative;
}

.molochko-case-studies .mcs-slick-prev,
.molochko-case-studies .mcs-slick-next {
	z-index: 10;
	width: 52px;
	height: 52px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.molochko-case-studies .mcs-slick-prev:hover,
.molochko-case-studies .mcs-slick-next:hover {
	background: #c4a876;
	color: #fff;
}

.molochko-case-studies .mcs-carousel .slick-dots {
	position: relative;
	bottom: 0;
	margin-top: 28px;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.molochko-case-studies .mcs-carousel .slick-dots li {
	margin: 0;
}

.molochko-case-studies .mcs-carousel .slick-dots li button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #c0c0c0;
	font-size: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.molochko-case-studies .mcs-carousel .slick-dots li button:hover,
.molochko-case-studies .mcs-carousel .slick-dots li.slick-active button {
	background: var(--primary-color);
}

.molochko-case-studies .mcs-carousel .slick-dots li.slick-active button {
	transform: scale(1.2);
}

/* ============================================
   Law Talk – blog/social about law (Reels / TikTok)
   ============================================ */
.molochko-law-talk {
	position: relative;
	margin-top: var(--section-gap);
	padding: 72px 0 80px;
	overflow: hidden;
}

.lt-bg-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.lt-bg-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.06;
	background-image: linear-gradient(135deg, #fff 25%, transparent 25%),
		linear-gradient(225deg, #fff 25%, transparent 25%),
		linear-gradient(45deg, #fff 25%, transparent 25%),
		linear-gradient(315deg, #fff 25%, transparent 25%);
	background-size: 28px 28px;
	background-position: 0 0, 14px 0, 14px 14px, 0 14px;
	background-color: var(--secondary-color);
}

.lt-bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(var(--secondary-color-rgb), 0.97) 0%,
		rgba(var(--secondary-color-rgb), 0.94) 100%
	);
}

.lt-inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--content-gutter);
}

.lt-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.lt-subtitle {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary-color);
}

.lt-title {
	margin: 0 0 16px;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}

.lt-desc {
	margin: 0 0 28px;
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
}

.lt-social-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	justify-content: center;
	align-items: center;
}

.lt-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	border-radius: 999px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.lt-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
	opacity: 0.95;
}

.lt-btn-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.lt-btn-instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.lt-btn-tiktok {
	background: #000;
	color: #fff;
}

.lt-btn-tiktok:hover {
	color: #fff;
}

.lt-cta-text {
	text-align: center;
	margin: 0;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.9);
}

/* Law Talk carousel */
.lt-carousel-wrap {
	margin-top: 40px;
}

.lt-carousel {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
}

.lt-carousel .lt-track:not(.slick-initialized) {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	padding: 0 0 24px;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
}

.lt-carousel .lt-track:not(.slick-initialized) .lt-slide {
	flex: 0 0 300px;
	min-width: 280px;
	scroll-snap-align: start;
}

.lt-slide {
	margin: 0 8px;
}

.lt-embed-responsive {
	position: relative;
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	background: #0a0a0a;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	aspect-ratio: 9 / 16;
	max-height: 520px;
}

.lt-embed-responsive iframe,
.lt-embed-responsive blockquote {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
	border-radius: 16px;
}

.lt-embed-fallback {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 320px;
	padding: 32px;
	background: linear-gradient(145deg, rgba(var(--primary-color-rgb), 0.15), rgba(var(--secondary-color-rgb), 0.2));
	border-radius: 16px;
	color: var(--heading-color);
	text-decoration: none;
	font-weight: 600;
	transition: background 0.2s ease, transform 0.2s ease;
}

.lt-embed-fallback:hover {
	background: linear-gradient(145deg, rgba(var(--primary-color-rgb), 0.25), rgba(var(--secondary-color-rgb), 0.3));
	transform: translateY(-4px);
	color: var(--heading-color);
}

.lt-embed-fallback-icon {
	font-size: 48px;
	opacity: 0.8;
}

/* Slick overrides for Law Talk */
.molochko-law-talk .lt-track.slick-initialized .slick-slide {
	padding: 0 8px;
}

.molochko-law-talk .lt-track.slick-initialized .slick-list {
	margin: 0 -8px;
}

.molochko-law-talk .lt-slick-prev::before,
.molochko-law-talk .lt-slick-next::before {
	content: none !important;
	display: none !important;
}

.molochko-law-talk .lt-carousel .slick-dots li button::before,
.molochko-law-talk .lt-carousel .slick-dots li::before {
	content: none !important;
	display: none !important;
}

.molochko-law-talk .lt-slick-prev,
.molochko-law-talk .lt-slick-next {
	z-index: 10;
	width: 48px;
	height: 48px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
}

.molochko-law-talk .lt-slick-prev:hover,
.molochko-law-talk .lt-slick-next:hover {
	background: var(--primary-color);
	color: #fff;
}

.molochko-law-talk .lt-carousel .slick-dots {
	position: relative;
	bottom: 0;
	margin-top: 28px;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.molochko-law-talk .lt-carousel .slick-dots li {
	margin: 0;
}

.molochko-law-talk .lt-carousel .slick-dots li button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	font-size: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.molochko-law-talk .lt-carousel .slick-dots li button:hover,
.molochko-law-talk .lt-carousel .slick-dots li.slick-active button {
	background: var(--primary-color);
}

.molochko-law-talk .lt-carousel .slick-dots li.slick-active button {
	transform: scale(1.2);
}

@media (max-width: 767px) {
	.molochko-law-talk {
		padding: 56px 0 64px;
	}
	.lt-header {
		margin-bottom: 36px;
	}
	.lt-carousel {
		padding: 0;
	}
	.lt-embed-responsive {
		max-height: 420px;
	}
}

/* ============================================
   Case Study Single – premium full-width layout
   ============================================ */
body.single-molochko-case-study .pxl-main {
	padding-top: 0;
	padding-bottom: 48px;
}
.molochko-case-study-single {
	background: #f8f9fa;
}
.molochko-case-study-single .cs-single-main {
	max-width: none;
	padding: 0;
}

/* Hero */
.cs-single-hero {
	position: relative;
	min-height: 320px;
	max-height: 520px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.cs-single-hero-bg {
	position: absolute;
	inset: 0;
}
.cs-single-hero-bg img {
	width: 100%;
	height: 100%;
	max-height: 520px;
	object-fit: cover;
	object-position: center;
	display: block;
}
.cs-single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient( to top, rgba(26, 36, 63, 0.92) 0%, rgba(26, 36, 63, 0.5) 50%, rgba(26, 36, 63, 0.2) 100% );
	pointer-events: none;
}
.cs-single-hero-inner {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 24px 56px;
	z-index: 2;
}
.cs-single-category {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--primary-color);
	text-decoration: none;
	margin-bottom: 12px;
	text-transform: uppercase;
}
.cs-single-category:hover {
	color: #c4a876;
}
.cs-single-title {
	font-family: var(--heading-font-family);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.02em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.cs-single-meta {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 24px;
}
.cs-single-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	opacity: 0.9;
	transition: opacity 0.2s ease, gap 0.2s ease;
}
.cs-single-back:hover {
	opacity: 1;
	color: #fff;
	gap: 12px;
}

/* Body */
.cs-single-body {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 64px;
}

/* Content block */
.cs-single-content-wrap {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(16, 23, 44, 0.08);
	margin-top: -32px;
	position: relative;
	z-index: 3;
	padding: 48px 56px 56px;
}
.cs-single-content {
	font-size: 17px;
	line-height: 1.75;
	color: var(--heading-color);
}
.cs-single-content p {
	margin: 0 0 1.25em;
}
.cs-single-content p:last-child {
	margin-bottom: 0;
}
.cs-single-content a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}
.cs-single-content a:hover {
	color: #8b7355;
	border-bottom-color: currentColor;
}
.cs-single-content h2,
.cs-single-content h3 {
	font-family: var(--heading-font-family);
	color: var(--heading-color);
	margin: 1.75em 0 0.6em;
	font-weight: 700;
}
.cs-single-content h2 { font-size: 1.35em; }
.cs-single-content h3 { font-size: 1.15em; }
.cs-single-content .page-links {
	margin-top: 1.5em;
	font-size: 0.95em;
}

/* CTA block */
.cs-single-cta {
	margin-top: 48px;
	background: var(--secondary-color);
	border-radius: 12px;
	padding: 40px 56px;
	text-align: center;
}
.cs-single-cta-inner {
	max-width: 520px;
	margin: 0 auto;
}
.cs-single-cta-title {
	font-family: var(--heading-font-family);
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}
.cs-single-cta-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 24px;
	line-height: 1.5;
}
.cs-single-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--primary-color);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 8px;
	transition: background 0.2s ease, transform 0.15s ease;
}
.cs-single-cta-btn:hover {
	background: #c4a876;
	color: #fff;
	transform: translateY(-1px);
}
.cs-single-cta-btn .zmdi {
	font-size: 20px;
}

/* Post nav */
.cs-single-nav {
	margin-top: 48px;
}
.cs-single-nav .post-navigation {
	margin: 0;
}
.cs-single-nav .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.cs-single-nav .nav-previous,
.cs-single-nav .nav-next {
	margin: 0;
}
.cs-single-nav .nav-previous a,
.cs-single-nav .nav-next a {
	display: block;
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	text-decoration: none;
	box-shadow: 0 2px 12px rgba(16, 23, 44, 0.06);
	transition: box-shadow 0.2s ease, transform 0.15s ease;
	border: 1px solid rgba(16, 23, 44, 0.06);
}
.cs-single-nav .nav-previous a:hover,
.cs-single-nav .nav-next a:hover {
	box-shadow: 0 8px 24px rgba(16, 23, 44, 0.1);
	transform: translateY(-2px);
}
.cs-single-nav .nav-next a {
	text-align: right;
}
.cs-single-nav-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--primary-color);
	text-transform: uppercase;
	margin-bottom: 6px;
}
.cs-single-nav-title {
	display: block;
	font-family: var(--heading-font-family);
	font-size: 16px;
	font-weight: 600;
	color: var(--heading-color);
	line-height: 1.4;
}
.cs-single-nav .nav-previous a .zmdi,
.cs-single-nav .nav-next a .zmdi {
	display: none;
}
@media (max-width: 767px) {
	.cs-single-hero {
		min-height: 320px;
	}
	.cs-single-hero-inner {
		padding: 32px 20px 40px;
	}
	.cs-single-content-wrap {
		margin-top: -24px;
		padding: 32px 24px 40px;
	}
	.cs-single-content {
		font-size: 16px;
	}
	.cs-single-body {
		padding: 0 16px 48px;
	}
	.cs-single-cta {
		padding: 32px 24px;
	}
	.cs-single-cta-title {
		font-size: 19px;
	}
	.cs-single-nav {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.cs-single-nav .nav-next {
		text-align: left;
	}
}

/* ============================================
   Practice Area Single – full-width premium layout
   ============================================ */
body.single-pxl-practice-area .pxl-main {
	padding-top: 0;
	padding-bottom: 56px;
}

.pa-single {
	background: #f5f6f8;
}

.pa-single-main {
	max-width: none;
	padding: 0;
}

/* Hero */
.pa-single-hero {
	position: relative;
	min-height: 320px;
	max-height: 520px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.pa-single-hero-bg {
	position: absolute;
	inset: 0;
}

.pa-single-hero-bg img {
	width: 100%;
	height: 100%;
	max-height: 520px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.pa-single-hero-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.06;
	background-image: linear-gradient(135deg, #fff 25%, transparent 25%),
		linear-gradient(225deg, #fff 25%, transparent 25%),
		linear-gradient(45deg, #fff 25%, transparent 25%),
		linear-gradient(315deg, #fff 25%, transparent 25%);
	background-size: 24px 24px;
	background-position: 0 0, 12px 0, 12px 12px, 0 12px;
	background-color: var(--secondary-color);
}

.pa-single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(var(--secondary-color-rgb), 0.88) 0%,
		rgba(var(--secondary-color-rgb), 0.92) 100%
	);
}

.pa-single-hero-overlay-solid {
	background: rgba(var(--secondary-color-rgb), 0.92);
}

.pa-single-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 64px var(--content-gutter) 56px;
}

.pa-single-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.pa-single-back:hover {
	opacity: 1;
	color: #fff;
}

.pa-single-back .zmdi {
	font-size: 20px;
}

.pa-single-title {
	margin: 0 0 16px;
	font-family: var(--heading-font-family);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.pa-single-lead {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	max-width: 640px;
}

/* Body */
.pa-single-body {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--content-gutter) 48px;
}

.pa-single-content-wrap {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	padding: 48px 56px 56px;
	margin-top: -40px;
	position: relative;
	z-index: 3;
}

.pa-single-content {
	font-size: 17px;
	line-height: 1.75;
	color: var(--body-color);
}

.pa-single-content p {
	margin: 0 0 1.3em;
}

.pa-single-content p:last-child {
	margin-bottom: 0;
}

.pa-single-content a {
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.pa-single-content a:hover {
	color: #8b7355;
	border-bottom-color: currentColor;
}

.pa-single-content h2,
.pa-single-content h3 {
	font-family: var(--heading-font-family);
	color: var(--heading-color);
	margin: 1.6em 0 0.5em;
	font-weight: 600;
}

.pa-single-content h2 { font-size: 1.4em; }
.pa-single-content h3 { font-size: 1.2em; }

.pa-single-content .page-links {
	margin-top: 1.5em;
	font-size: 0.95em;
	color: var(--body-color);
}

/* CTA */
.pa-single-cta {
	margin-top: 48px;
	background: var(--secondary-color);
	border-radius: 16px;
	padding: 40px 48px;
	text-align: center;
}

.pa-single-cta-inner {
	max-width: 520px;
	margin: 0 auto;
}

.pa-single-cta-title {
	margin: 0 0 8px;
	font-family: var(--heading-font-family);
	font-size: 22px;
	font-weight: 600;
	color: #fff;
}

.pa-single-cta-desc {
	margin: 0 0 24px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
}

.pa-single-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	color: var(--secondary-color);
	background: #fff;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pa-single-cta-btn:hover {
	background: var(--primary-color);
	color: #fff;
	transform: translateY(-2px);
}

.pa-single-cta-btn .zmdi {
	font-size: 20px;
}

/* Nav */
.pa-single-nav {
	margin-top: 48px;
}

.pa-single-nav .post-navigation {
	margin: 0;
}

.pa-single-nav .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.pa-single-nav .nav-previous,
.pa-single-nav .nav-next {
	margin: 0;
}

.pa-single-nav .nav-previous a,
.pa-single-nav .nav-next a {
	display: block;
	background: #fff;
	border-radius: 12px;
	padding: 20px 24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	text-decoration: none;
	color: var(--heading-color);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pa-single-nav .nav-previous a:hover,
.pa-single-nav .nav-next a:hover {
	box-shadow: 0 8px 24px rgba(16, 23, 44, 0.1);
	transform: translateY(-2px);
}

.pa-single-nav .nav-next a {
	text-align: right;
}

.pa-single-nav-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--primary-color);
	margin-bottom: 4px;
}

.pa-single-nav-title {
	display: block;
	font-family: var(--heading-font-family);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--heading-color);
}

.pa-single-nav .nav-previous a .zmdi,
.pa-single-nav .nav-next a .zmdi {
	display: none;
}

@media (max-width: 767px) {
	.pa-single-hero {
		min-height: 320px;
	}
	.pa-single-hero-inner {
		padding: 48px var(--content-gutter) 40px;
	}
	.pa-single-content-wrap {
		margin-top: -24px;
		padding: 32px 24px 40px;
	}
	.pa-single-content {
		font-size: 16px;
	}
	.pa-single-body {
		padding: 0 var(--content-gutter) 40px;
	}
	.pa-single-cta {
		padding: 32px 24px;
	}
	.pa-single-cta-title {
		font-size: 19px;
	}
	.pa-single-nav .nav-links {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.pa-single-nav .nav-next a {
		text-align: left;
	}
}

/* ============================================
   Case Study Archive – full-width hero + grid
   ============================================ */
body.post-type-archive-molochko-case-study .pxl-main,
body.tax-case_study_category .pxl-main {
	padding-top: 0;
	padding-bottom: 72px;
}

.molochko-case-study-archive {
	background: #f8f9fa;
}

/* Hero */
.cs-archive-hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.cs-archive-hero-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.06;
	background-image: linear-gradient(135deg, #fff 25%, transparent 25%),
		linear-gradient(225deg, #fff 25%, transparent 25%),
		linear-gradient(45deg, #fff 25%, transparent 25%),
		linear-gradient(315deg, #fff 25%, transparent 25%);
	background-size: 24px 24px;
	background-position: 0 0, 12px 0, 12px 12px, 0 12px;
	background-color: var(--secondary-color);
}

.cs-archive-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(var(--secondary-color-rgb), 0.92) 0%,
		rgba(var(--secondary-color-rgb), 0.88) 100%
	);
}

.cs-archive-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 64px var(--content-gutter) 56px;
}

.cs-archive-hero-subtitle {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary-color);
}

.cs-archive-hero-title {
	margin: 0 0 16px;
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}

.cs-archive-hero-desc {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 767px) {
	.cs-archive-hero {
		min-height: 320px;
	}
	.cs-archive-hero-inner {
		padding: 48px var(--content-gutter) 40px;
	}
}

/* Main content */
.cs-archive-main {
	padding-top: 48px;
}

.cs-archive-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--content-gutter);
}

/* Category filters */
.cs-archive-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	margin-bottom: 40px;
	justify-content: center;
}

.cs-archive-filter-pill {
	display: inline-block;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: var(--heading-color);
	background: #fff;
	border: 2px solid #e2e4e8;
	border-radius: 999px;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cs-archive-filter-pill:hover,
.cs-archive-filter-pill.active {
	color: #fff;
	background: var(--primary-color);
	border-color: var(--primary-color);
}

/* Grid */
.cs-archive-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 32px 28px;
}

@media (min-width: 576px) {
	.cs-archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.cs-archive-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 32px;
	}
}

/* Card */
.cs-archive-card {
	margin: 0;
}

.cs-archive-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs-archive-card-link:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.cs-archive-card-link:hover .cs-archive-card-image img {
	transform: scale(1.06);
}

.cs-archive-card-image {
	position: relative;
	height: 240px;
	overflow: hidden;
	background: var(--secondary-color);
}

.cs-archive-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.4s ease;
}

.cs-archive-card-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(var(--secondary-color-rgb), 0.9), rgba(var(--primary-color-rgb), 0.3));
}

.cs-archive-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
	pointer-events: none;
}

.cs-archive-card-body {
	padding: 24px 24px 28px;
}

.cs-archive-card-category {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--primary-color);
}

.cs-archive-card-title {
	margin: 0 0 10px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--heading-color);
	transition: color 0.2s ease;
}

.cs-archive-card-link:hover .cs-archive-card-title {
	color: var(--primary-color);
}

.cs-archive-card-excerpt {
	margin: 0 0 16px;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--body-color);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cs-archive-card-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	transition: gap 0.2s ease;
}

.cs-archive-card-link:hover .cs-archive-card-more {
	gap: 10px;
}

.cs-archive-card-more .zmdi {
	font-size: 18px;
}

/* Pagination */
.cs-archive-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
}

.cs-archive-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.cs-archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: var(--heading-color);
	background: #fff;
	border: 2px solid #e2e4e8;
	border-radius: 8px;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cs-archive-pagination .page-numbers:hover,
.cs-archive-pagination .page-numbers.current {
	color: #fff;
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.cs-archive-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	color: var(--body-color);
}

.cs-archive-pagination .page-numbers.prev,
.cs-archive-pagination .page-numbers.next {
	gap: 4px;
}

/* Empty state */
.cs-archive-empty {
	text-align: center;
	padding: 64px 24px;
}

.cs-archive-empty-text {
	margin: 0 0 24px;
	font-size: 1.15rem;
	color: var(--body-color);
}

.cs-archive-empty-btn {
	display: inline-block;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: var(--primary-color);
	border-radius: 8px;
	transition: background 0.2s ease;
}

.cs-archive-empty-btn:hover {
	background: #c4a876;
	color: #fff;
}

/* ============================================
   Practice Area archive (/practice-area/)
   ============================================ */
.pa-archive {
	background: #f8f9fa;
}

.pa-archive-hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.pa-archive-hero-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.06;
	background-image: linear-gradient(135deg, #fff 25%, transparent 25%),
		linear-gradient(225deg, #fff 25%, transparent 25%),
		linear-gradient(45deg, #fff 25%, transparent 25%),
		linear-gradient(315deg, #fff 25%, transparent 25%);
	background-size: 24px 24px;
	background-position: 0 0, 12px 0, 12px 12px, 0 12px;
	background-color: var(--secondary-color);
}

.pa-archive-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(var(--secondary-color-rgb), 0.92) 0%,
		rgba(var(--secondary-color-rgb), 0.88) 100%
	);
}

.pa-archive-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 64px var(--content-gutter) 56px;
}

.pa-archive-hero-subtitle {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary-color);
}

.pa-archive-hero-title {
	margin: 0 0 16px;
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}

.pa-archive-hero-desc {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 767px) {
	.pa-archive-hero {
		min-height: 320px;
	}
	.pa-archive-hero-inner {
		padding: 48px var(--content-gutter) 40px;
	}
}

.pa-archive-main {
	padding-top: 48px;
	padding-bottom: 72px;
}

.pa-archive-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--content-gutter);
}

.pa-archive-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 28px 24px;
}

@media (min-width: 576px) {
	.pa-archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.pa-archive-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 36px 32px;
	}
}

.pa-archive-card {
	margin: 0;
}

.pa-archive-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 260px;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.pa-archive-card-link:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
	border-color: rgba(var(--primary-color-rgb), 0.25);
}

.pa-archive-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	margin: 28px 24px 0;
	flex-shrink: 0;
	background: rgba(var(--primary-color-rgb), 0.12);
	border-radius: 14px;
	color: var(--primary-color);
	transition: background 0.25s ease, color 0.25s ease;
}

.pa-archive-card-link:hover .pa-archive-card-icon {
	background: var(--primary-color);
	color: #fff;
}

.pa-archive-card-icon img {
	width: 44px;
	height: auto;
	max-height: 44px;
	object-fit: contain;
}

.pa-archive-card-icon i {
	font-size: 44px;
}

.pa-archive-card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	padding: 20px 24px 28px;
}

.pa-archive-card-title {
	margin: 0 0 10px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--heading-color);
	transition: color 0.2s ease;
}

.pa-archive-card-link:hover .pa-archive-card-title {
	color: var(--primary-color);
}

.pa-archive-card-excerpt {
	margin: 0 0 16px;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--body-color);
	flex: 1 1 auto;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pa-archive-card-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	transition: gap 0.2s ease;
}

.pa-archive-card-link:hover .pa-archive-card-more {
	gap: 10px;
}

.pa-archive-card-more .zmdi {
	font-size: 18px;
}

.pa-archive-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
}

.pa-archive-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.pa-archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: var(--heading-color);
	background: #fff;
	border: 2px solid #e2e4e8;
	border-radius: 8px;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pa-archive-pagination .page-numbers:hover,
.pa-archive-pagination .page-numbers.current {
	color: #fff;
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.pa-archive-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	color: var(--body-color);
}

.pa-archive-empty {
	text-align: center;
	padding: 64px 24px;
}

.pa-archive-empty-text {
	margin: 0 0 24px;
	font-size: 1.15rem;
	color: var(--body-color);
}

.pa-archive-empty-btn {
	display: inline-block;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: var(--primary-color);
	border-radius: 8px;
	transition: background 0.2s ease;
}

.pa-archive-empty-btn:hover {
	background: #c4a876;
	color: #fff;
}

/* ============================================
   Blog archive (home.php) & single post
   ============================================ */
.molochko-blog-archive {
	background: #f8f9fa;
}

.blog-archive-hero {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.blog-archive-hero-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.06;
	background-image: linear-gradient(135deg, #fff 25%, transparent 25%),
		linear-gradient(225deg, #fff 25%, transparent 25%),
		linear-gradient(45deg, #fff 25%, transparent 25%),
		linear-gradient(315deg, #fff 25%, transparent 25%);
	background-size: 24px 24px;
	background-position: 0 0, 12px 0, 12px 12px, 0 12px;
	background-color: var(--secondary-color);
}

.blog-archive-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(var(--secondary-color-rgb), 0.92) 0%,
		rgba(var(--secondary-color-rgb), 0.88) 100%
	);
}

.blog-archive-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 56px var(--content-gutter) 48px;
}

.blog-archive-hero-subtitle {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary-color);
}

.blog-archive-hero-title {
	margin: 0 0 12px;
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}

.blog-archive-hero-desc {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
}

.blog-archive-main {
	padding-top: 48px;
	padding-bottom: 72px;
}

.blog-archive-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--content-gutter);
}

.blog-archive-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 32px 28px;
}

@media (min-width: 576px) {
	.blog-archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.blog-archive-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 32px;
	}
}

.blog-archive-card {
	margin: 0;
}

.blog-archive-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-archive-card-link:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.blog-archive-card-image {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: var(--secondary-color);
}

.blog-archive-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.4s ease;
}

.blog-archive-card-link:hover .blog-archive-card-image img {
	transform: scale(1.05);
}

.blog-archive-card-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(var(--secondary-color-rgb), 0.9), rgba(var(--primary-color-rgb), 0.3));
}

.blog-archive-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
	pointer-events: none;
}

.blog-archive-card-body {
	padding: 24px 24px 28px;
}

.blog-archive-card-date {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	color: var(--primary-color);
	font-weight: 600;
}

.blog-archive-card-title {
	margin: 0 0 10px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--heading-color);
	transition: color 0.2s ease;
}

.blog-archive-card-link:hover .blog-archive-card-title {
	color: var(--primary-color);
}

.blog-archive-card-excerpt {
	margin: 0 0 14px;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--body-color);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-archive-card-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	transition: gap 0.2s ease;
}

.blog-archive-card-link:hover .blog-archive-card-more {
	gap: 10px;
}

.blog-archive-card-more .zmdi {
	font-size: 18px;
}

.blog-archive-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
}

.blog-archive-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.blog-archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: var(--heading-color);
	background: #fff;
	border: 2px solid #e2e4e8;
	border-radius: 8px;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.blog-archive-pagination .page-numbers:hover,
.blog-archive-pagination .page-numbers.current {
	color: #fff;
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.blog-archive-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	color: var(--body-color);
}

.blog-archive-empty {
	text-align: center;
	padding: 64px 24px;
}

.blog-archive-empty-text {
	margin: 0 0 24px;
	font-size: 1.15rem;
	color: var(--body-color);
}

.blog-archive-empty-btn {
	display: inline-block;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: var(--primary-color);
	border-radius: 8px;
	transition: background 0.2s ease;
}

.blog-archive-empty-btn:hover {
	background: #c4a876;
	color: #fff;
}

/* Blog single – full-width, no sidebar */
body.single-post .pxl-main {
	padding-top: 0;
	padding-bottom: 64px;
}

body.single-post #pxl-sidebar-area {
	display: none;
}

body.single-post #pxl-content-area {
	max-width: 840px;
	margin: 0 auto;
}

.molochko-blog-single {
	background: #fff;
	padding: 48px 0 56px;
}

.molochko-blog-single .entry-header {
	margin-bottom: 28px;
}

.molochko-blog-single .entry-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--heading-color);
	margin: 0 0 16px;
}

.molochko-blog-single .entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	font-size: 14px;
	color: var(--body-color);
}

.molochko-blog-single .post-thumbnail {
	margin: 0 0 32px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--secondary-color);
}

.molochko-blog-single .post-thumbnail {
	max-height: 420px;
}
.molochko-blog-single .post-thumbnail img {
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.molochko-blog-single .pxl-entry-content {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--body-color);
}

.molochko-blog-single .pxl-entry-content p {
	margin: 0 0 1.25em;
}

.molochko-blog-single .pxl-entry-content h2,
.molochko-blog-single .pxl-entry-content h3 {
	font-size: 1.25rem;
	margin: 1.25em 0 0.4em;
	color: var(--heading-color);
}

.molochko-blog-single .pxl-entry-content ul,
.molochko-blog-single .pxl-entry-content ol {
	margin: 0 0 1.25em;
	padding-left: 1.5em;
}

/* Post navigation (previous/next) – card-style links */
.molochko-blog-single .post-navigation {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid #e8e8e8;
}

.molochko-blog-single .post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.molochko-blog-single .post-navigation .nav-previous,
.molochko-blog-single .post-navigation .nav-next {
	margin: 0;
}

.molochko-blog-single .post-navigation .nav-previous a,
.molochko-blog-single .post-navigation .nav-next a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 20px;
	background: #f7f7f7;
	border: 1px solid #eee;
	border-radius: 8px;
	color: var(--heading-color);
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.molochko-blog-single .post-navigation .nav-previous a {
	justify-content: flex-start;
}

.molochko-blog-single .post-navigation .nav-next a {
	justify-content: flex-end;
	text-align: right;
}

.molochko-blog-single .post-navigation .nav-previous a:hover,
.molochko-blog-single .post-navigation .nav-next a:hover {
	background: rgba(var(--primary-color-rgb), 0.08);
	border-color: rgba(var(--primary-color-rgb), 0.35);
	color: var(--primary-color);
}

.molochko-blog-single .post-navigation .nav-previous a .zmdi,
.molochko-blog-single .post-navigation .nav-next a .zmdi {
	font-size: 22px;
	opacity: 0.85;
	flex-shrink: 0;
}

.molochko-blog-single .post-navigation .nav-previous a:hover .zmdi,
.molochko-blog-single .post-navigation .nav-next a:hover .zmdi {
	opacity: 1;
	color: var(--primary-color);
}

@media (max-width: 575px) {
	.molochko-blog-single .post-navigation .nav-links {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.molochko-blog-single .post-navigation .nav-next a {
		justify-content: flex-start;
		text-align: left;
	}

	.molochko-blog-single .post-navigation .nav-next a .zmdi {
		order: 1;
		margin-left: auto;
	}
}

/* Blog section (front page) – card layout, distinct from case studies */
.molochko-blog-section {
	margin-top: var(--section-gap);
	padding: 56px 0 64px;
	background: #f7f7f7;
	color: var(--body-color);
}

.blog-section-header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--content-gutter);
}

.blog-section-header-centered .blog-section-inner {
	text-align: center;
	margin-bottom: 40px;
}

.blog-section-heading .blog-section-subtitle {
	color: var(--primary-color);
	font-size: 14px;
	letter-spacing: 0.02em;
	margin-bottom: 6px;
}

.blog-section-heading .blog-section-title {
	color: var(--heading-color);
	font-size: 38px;
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.2;
}

.blog-section-heading .blog-section-desc {
	margin: 0 auto 20px;
	max-width: 560px;
	line-height: 1.6;
	color: #5a5a5a;
}

.blog-section-heading .blog-section-view-all {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	font-size: 14px;
	font-weight: 700;
	background: var(--primary-color);
	color: #fff;
	text-decoration: none;
	border: none;
}

.blog-section-heading .blog-section-view-all:hover {
	background: #c4a876;
	color: #fff;
}

.blog-section-carousel {
	position: relative;
	margin-top: 0;
	padding: 0 var(--content-gutter);
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.blog-section-carousel .blog-section-track:not(.slick-initialized) {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	padding: 0 0 24px;
	-webkit-overflow-scrolling: touch;
}

.blog-section-carousel .blog-section-track:not(.slick-initialized) .blog-section-slide {
	flex: 0 0 320px;
	min-width: 280px;
}

/* Card: image on top, content below (no overlay) */
.blog-section-slide .blog-section-card {
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border-radius: 8px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.3s ease;
}

.blog-section-slide .blog-section-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-section-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #e8e8e8;
}

.blog-section-card-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.blog-section-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.35s ease;
}

.blog-section-slide:hover .blog-section-card-image img {
	transform: scale(1.04);
}

.blog-section-placeholder {
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(135deg, #d4c4a8 0%, #b8a078 100%);
}

.blog-section-card-body {
	padding: 22px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-section-card-date {
	font-size: 13px;
	color: var(--primary-color);
	margin-bottom: 8px;
	display: block;
}

.blog-section-card-title {
	margin: 0 0 10px;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.35;
}

.blog-section-card-title a {
	color: var(--heading-color);
	text-decoration: none;
	transition: color 0.2s;
}

.blog-section-card-title a:hover {
	color: var(--primary-color);
}

.blog-section-card-excerpt {
	margin: 0 0 14px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #5a5a5a;
	flex: 1;
}

.blog-section-card-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: none;
	align-self: flex-start;
}

.blog-section-card-link:hover {
	text-decoration: underline;
}

.molochko-blog-section .blog-section-track.slick-initialized .slick-slide {
	padding: 0 15px;
}

.molochko-blog-section .blog-section-track.slick-initialized .slick-list {
	margin: 0 -15px;
}

.molochko-blog-section .blog-section-slick-prev::before,
.molochko-blog-section .blog-section-slick-next::before {
	content: none !important;
	display: none !important;
}

.molochko-blog-section .blog-section-carousel .slick-dots {
	position: relative;
	margin-top: 28px;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.molochko-blog-section .blog-section-carousel .slick-dots li button::before,
.molochko-blog-section .blog-section-carousel .slick-dots li::before {
	content: none !important;
	display: none !important;
}

.molochko-blog-section .blog-section-carousel .slick-dots li {
	margin: 0;
}

.molochko-blog-section .blog-section-carousel .slick-dots li button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #c0c0c0;
	font-size: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.molochko-blog-section .blog-section-carousel .slick-dots li button:hover,
.molochko-blog-section .blog-section-carousel .slick-dots li.slick-active button {
	background: var(--primary-color);
}

.molochko-blog-section .blog-section-slick-prev,
.molochko-blog-section .blog-section-slick-next {
	z-index: 10;
	width: 52px;
	height: 52px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.molochko-blog-section .blog-section-slick-prev:hover,
.molochko-blog-section .blog-section-slick-next:hover {
	background: #c4a876;
	color: #fff;
}

/* ========== Contact page (Template: Contact Us) ========== */
.page-contact .pxl-main {
	padding-top: 0;
	padding-bottom: 0;
}

.molochko-contact-hero {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #2a3548 100%);
	color: #fff;
	padding: 64px 24px 56px;
	text-align: center;
}

.molochko-contact-hero-inner {
	max-width: 640px;
	margin: 0 auto;
}

.molochko-contact-hero-subtitle {
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 8px;
}

.molochko-contact-hero-title {
	font-size: 42px;
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.2;
	color: #fff;
}

.molochko-contact-hero-desc {
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.molochko-contact-content {
	padding: 56px 0 80px;
}

.molochko-contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--content-gutter, 24px);
}

.molochko-contact-grid {
	display: grid;
	gap: 48px;
}

@media (min-width: 992px) {
	.molochko-contact-grid {
		grid-template-columns: 1fr 1.1fr;
		align-items: start;
		gap: 56px;
	}
}

.molochko-contact-info-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0 0 24px;
}

.molochko-contact-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.molochko-contact-info-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 20px;
}

.molochko-contact-info-item:last-of-type {
	margin-bottom: 0;
}

.molochko-contact-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: rgba(var(--primary-color-rgb, 196, 168, 118), 0.12);
	color: var(--primary-color);
	border-radius: 8px;
	font-size: 20px;
}

.molochko-contact-info-icon .zmdi {
	font-size: 22px;
}

.molochko-contact-info-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #888;
	margin-bottom: 4px;
}

.molochko-contact-info-item a,
.molochko-contact-info-item span {
	font-size: 1rem;
	color: var(--heading-color);
	text-decoration: none;
}

.molochko-contact-info-item a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.molochko-contact-cta {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #eee;
}

.molochko-contact-cta p {
	margin: 0;
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
}

/* Front page contact form section – dark CTA strip + light form card */
.molochko-front-contact {
	position: relative;
	padding: 72px 0 88px;
	overflow: hidden;
}
.molochko-front-contact-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, var(--secondary-color) 0%, #0f1629 50%, #1a243f 100%);
	z-index: 0;
}
.molochko-front-contact-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(var(--primary-color-rgb), 0.12) 0%, transparent 60%);
	pointer-events: none;
}
.molochko-front-contact-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--content-gutter, 24px);
}
.molochko-front-contact-header {
	text-align: center;
	margin-bottom: 40px;
}
.molochko-front-contact-subtitle {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary-color);
	margin: 0 0 8px;
}
.molochko-front-contact-title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1.2;
}
.molochko-front-contact-desc {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.5;
	margin: 0;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}
.molochko-front-contact-form-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
	padding: 40px 28px;
	max-width: 560px;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
	.molochko-front-contact-form-card {
		padding: 48px 40px;
	}
}
.molochko-front-contact-form-inner .wpcf7-form-control-wrap {
	display: block;
	margin-bottom: 18px;
}
.molochko-front-contact-form-inner label {
	display: block;
	margin-bottom: 6px;
	font-weight: 500;
	color: var(--heading-color);
	font-size: 0.95rem;
}
.molochko-front-contact-form-inner input[type="text"],
.molochko-front-contact-form-inner input[type="email"],
.molochko-front-contact-form-inner input[type="tel"],
.molochko-front-contact-form-inner textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	font-size: 1rem;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: #fafafa;
}
.molochko-front-contact-form-inner input:focus,
.molochko-front-contact-form-inner textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.12);
	background: #fff;
}
.molochko-front-contact-form-inner textarea {
	min-height: 120px;
	resize: vertical;
}
.molochko-front-contact-form-inner input[type="submit"] {
	padding: 16px 36px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	margin-top: 8px;
}
.molochko-front-contact-form-inner input[type="submit"]:hover {
	background: #c4a876;
	transform: translateY(-1px);
}
.molochko-front-contact-form-inner .wpcf7-not-valid-tip {
	font-size: 13px;
	color: #c00;
	margin-top: 4px;
}
.molochko-front-contact-form-inner .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 14px;
	border-radius: 10px;
}
.molochko-front-contact-form-missing {
	color: #666;
	font-size: 0.95rem;
	margin: 0;
}

.molochko-contact-form-wrap {
	min-width: 0;
}

.molochko-contact-form-box {
	background: #fff;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 40px 32px;
	border: 1px solid #eee;
}

.molochko-contact-form-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0 0 24px;
}

.molochko-contact-form-missing {
	color: #888;
	font-size: 0.95rem;
	margin: 0;
}

.molochko-contact-map {
	background: #f0f0f0;
}
.molochko-contact-map-inner {
	width: 100%;
	overflow: hidden;
}
.molochko-contact-map-inner iframe {
	vertical-align: middle;
}
@media (min-width: 768px) {
	.molochko-contact-map-inner iframe {
		height: 450px;
	}
}

/* Contact page: CF7 form styling */
.molochko-contact-form-inner .wpcf7-form-control-wrap { display: block; margin-bottom: 16px; }
.molochko-contact-form-inner label { display: block; margin-bottom: 6px; font-weight: 500; color: var(--heading-color); }
.molochko-contact-form-inner input[type="text"],
.molochko-contact-form-inner input[type="email"],
.molochko-contact-form-inner input[type="tel"],
.molochko-contact-form-inner textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.molochko-contact-form-inner input:focus,
.molochko-contact-form-inner textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 196, 168, 118), 0.15);
}
.molochko-contact-form-inner textarea { min-height: 120px; resize: vertical; }
.molochko-contact-form-inner input[type="submit"] {
	padding: 14px 32px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
}
.molochko-contact-form-inner input[type="submit"]:hover { background: #c4a876; }
.molochko-contact-form-inner .wpcf7-not-valid-tip { font-size: 13px; color: #c00; margin-top: 4px; }
.molochko-contact-form-inner .wpcf7-response-output { margin: 16px 0 0; padding: 12px; border-radius: 8px; }

/* ========== Consultation popup ========== */
.molochko-consultation-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.molochko-consultation-popup:not(.is-closed) {
	opacity: 1;
	visibility: visible;
}

.molochko-consultation-popup.is-closed {
	opacity: 0;
	visibility: hidden;
}

.molochko-consultation-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	cursor: pointer;
}

.molochko-consultation-popup-dialog {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
	outline: none;
}

.molochko-consultation-popup-content {
	position: relative;
	padding: 40px 32px 36px;
}

.molochko-consultation-popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: #f5f5f5;
	color: #333;
	border-radius: 8px;
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}

.molochko-consultation-popup-close:hover {
	background: #eee;
	color: var(--primary-color);
}

.molochko-consultation-popup-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0 0 8px;
}

.molochko-consultation-popup-desc {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
	margin: 0 0 24px;
}

.molochko-consultation-popup-form .wpcf7-form-control-wrap { display: block; margin-bottom: 14px; }
.molochko-consultation-popup-form label { display: block; margin-bottom: 4px; font-weight: 500; color: var(--heading-color); font-size: 14px; }
.molochko-consultation-popup-form input[type="text"],
.molochko-consultation-popup-form input[type="email"],
.molochko-consultation-popup-form input[type="tel"],
.molochko-consultation-popup-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
}
.molochko-consultation-popup-form input:focus,
.molochko-consultation-popup-form textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}
.molochko-consultation-popup-form textarea { min-height: 100px; resize: vertical; }

/* Mobile: smaller message area so form + submit fit on screen */
@media (max-width: 767px) {
	.molochko-consultation-popup { padding: 12px; align-items: flex-start; padding-top: max(12px, env(safe-area-inset-top)); }
	.molochko-consultation-popup-dialog { max-height: min(90vh, 90dvh); }
	.molochko-consultation-popup-content { padding: 28px 20px max(24px, env(safe-area-inset-bottom)); }
	.molochko-consultation-popup-form textarea { min-height: 72px; max-height: 120px; }
}
.molochko-consultation-popup-form input[type="submit"] {
	padding: 12px 28px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
}
.molochko-consultation-popup-form input[type="submit"]:hover { background: #c4a876; }
.molochko-consultation-popup-missing { color: #888; font-size: 0.95rem; margin: 0; }

body.consultation-popup-open {
	overflow: hidden;
}
