/* Pathbuilders — site-wide brand chrome */
:root {
	--pb-blue: #0056a7;
	--pb-blue-dark: #0c3955;
	--pb-teal: #1c86c6;
	--pb-ink: #453e3e;
	--pb-ink-soft: #4b4f58;
	--pb-paper: #f7f9fb;
	--pb-white: #ffffff;
	--pb-rule: rgba(69, 62, 62, 0.14);
	--pb-serif: 'Libre Baskerville', Georgia, serif;
	--pb-sans: 'Source Sans 3', system-ui, sans-serif;
	--pb-maxw: 1180px;
	--pb-gut: 24px;
}

body {
	background: var(--pb-paper) !important;
	font-family: var(--pb-sans);
	color: var(--pb-ink);
}

.fusion-page-title-bar {
	display: none !important;
}

body #wrapper,
body #boxed-wrapper,
body #main,
body .fusion-row,
body #content,
body .post-content {
	background: transparent !important;
}

a {
	color: var(--pb-blue);
}

a:hover {
	color: var(--pb-teal);
}

.pb-wrap {
	max-width: var(--pb-maxw);
	margin: 0 auto;
	padding: 0 var(--pb-gut);
}

.pb-kick {
	font-family: var(--pb-sans);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--pb-teal);
}

.pb-btn {
	display: inline-block;
	padding: 0.85rem 1.6rem;
	border-radius: 4px;
	background: var(--pb-blue);
	color: var(--pb-white) !important;
	font-weight: 700;
	text-decoration: none !important;
	transition: background 0.2s;
}

.pb-btn:hover {
	background: var(--pb-blue-dark);
	color: var(--pb-white) !important;
}

.pb-btn-outline {
	background: transparent;
	border: 2px solid var(--pb-blue);
	color: var(--pb-blue) !important;
}

.pb-btn-outline:hover {
	background: var(--pb-blue);
	color: var(--pb-white) !important;
}

.pb-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}

.pb-card {
	background: var(--pb-white);
	border: 1px solid var(--pb-rule);
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 12px 30px -24px rgba(12, 57, 85, 0.45);
}

.pb-card h3 {
	margin: 0 0 0.5rem;
	font-family: var(--pb-serif);
	color: var(--pb-blue-dark);
}

.pb-card p:last-child {
	margin-bottom: 0;
}

/* Hide default Avada chrome when brand header/footer active */
body.pb-brand-chrome .fusion-tb-header,
body.pb-brand-chrome .fusion-footer,
body.pb-brand-chrome .fusion-sliding-bar-wrapper,
body.pb-brand-chrome .fusion-footer-copyright-area {
	display: none !important;
}

.pb-chrome {
	position: relative;
	z-index: 200;
	font-family: var(--pb-sans);
}

.pb-topline {
	background: var(--pb-blue-dark);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.78rem;
}

.pb-topline .pb-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding-top: 0.45rem;
	padding-bottom: 0.45rem;
}

.pb-topline-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.pb-topline a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.pb-topline a:hover {
	color: var(--pb-white);
}

.pb-mast {
	background: var(--pb-white);
	border-bottom: 1px solid var(--pb-rule);
}

.pb-mast-inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
}

.pb-logo img {
	display: block;
	height: 52px;
	width: auto;
}

.pb-nav {
	flex: 1;
}

.pb-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pb-menu a {
	color: var(--pb-ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.92rem;
}

.pb-menu a:hover,
.pb-menu .current-menu-item > a {
	color: var(--pb-blue);
}

.pb-mast-cta {
	white-space: nowrap;
	font-size: 0.88rem;
	padding: 0.65rem 1rem;
}

.pb-burger {
	display: none;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
}

.pb-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--pb-ink);
	margin: 5px 0;
}

@media (max-width: 960px) {
	.pb-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--pb-white);
		border-bottom: 1px solid var(--pb-rule);
		padding: 1rem var(--pb-gut);
	}

	.pb-nav.open {
		display: block;
	}

	.pb-menu {
		flex-direction: column;
	}

	.pb-mast-cta {
		display: none;
	}

	.pb-burger {
		display: block;
		margin-left: auto;
	}

	.pb-mast-inner {
		position: relative;
		flex-wrap: wrap;
	}
}

.pb-foot {
	background: var(--pb-blue-dark);
	color: rgba(255, 255, 255, 0.88);
	padding: 2.5rem 0 1rem;
	margin-top: 2rem;
	font-family: var(--pb-sans);
}

.pb-foot-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 1.5rem;
}

.pb-foot h4 {
	color: var(--pb-white);
	margin: 0 0 0.65rem;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pb-foot a {
	display: block;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	margin-bottom: 0.35rem;
	font-size: 0.92rem;
}

.pb-foot a:hover {
	color: var(--pb-white);
}

.pb-foot-tag {
	font-family: var(--pb-serif);
	font-size: 1.15rem;
	color: var(--pb-white);
	margin: 0 0 0.75rem;
}

.pb-foot-meta {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}

.pb-foot-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin-top: 1.5rem;
	padding-top: 1rem;
	font-size: 0.82rem;
	opacity: 0.75;
}

@media (max-width: 768px) {
	.pb-foot-grid {
		grid-template-columns: 1fr 1fr;
	}
}
