/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

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

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content .fl-button:is(a, button) *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1380px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
 }@media (min-width: 1381px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1380px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1380px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap, .fl-builder-content > .fl-module-box {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





.fl-node-l93d57xgm4ws.fl-row-fixed-width, .fl-node-l93d57xgm4ws .fl-row-fixed-width {
	max-width: 1380;
}
 .fl-node-l93d57xgm4ws > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-syag2xlro5up {
	width: 100%;
}
 .fl-node-syag2xlro5up > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
/**
 * PX In-Page Nav – Static CSS
 * Horizontal anchor nav auto-built from H2 headings on the page.
 */


/* ── Container ────────────────────────────────── */

.inpage-nav {
	padding: var(--space-m) 0;
}


/* ── Nav list ─────────────────────────────────── */

.inpage-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--space-s);
	list-style: none;
	margin: 0;
	padding: var(--space-xs) 0;
	position: relative;
}


/* ── Nav link ─────────────────────────────────── */

.inpage-nav__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-xs) var(--space-s);

	font-family: var(--font-display);
	font-size: var(--text-m-plus);
	font-weight: var(--weight-semibold);
	line-height: var(--lh-snug);
	letter-spacing: var(--ls-none);
	color: var(--text-base);
	text-decoration: none;

	border-bottom: var(--space-2xs) solid var(--transparent);

	transition: color var(--duration-normal) var(--ease-smooth),
	            border-color var(--duration-normal) var(--ease-smooth);
}

.inpage-nav__link:hover {
	border-bottom-color: var(--action);
}

/* Active state is handled visually by .inpage-nav__indicator. */


/* ── Sliding indicator ───────────────────────── */

.inpage-nav__indicator {
	position: absolute;
	left: 0;
	top: 0;
	height: var(--space-2xs);
	background-color: var(--action);
	border-radius: 999px;
	pointer-events: none;
	opacity: 0;
	transition: transform var(--duration-normal) var(--ease-smooth),
	            width var(--duration-normal) var(--ease-smooth),
	            opacity var(--duration-normal) var(--ease-smooth);
}

.inpage-nav__link:focus-visible {
	outline: solid 3px var(--btn-focus-ring);
	outline-offset: 2px;
	background-color: var(--white);
	border-bottom-color: var(--action);
}


/* ── Sticky state (toggled by JS) ────────────── */

.inpage-nav--sticky {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: var(--white);
	box-shadow: var(--shadow-elevated);
	transition: top var(--duration-normal) var(--ease-smooth);
}

.inpage-nav__placeholder {
	display: none;
}
/**
 * PX Hero - Static CSS
 *
 * Full-viewport hero with background image, navy gradient overlay,
 * two-column layout (content + slot). Always full-width, no border-radius.
 * Sits behind the fixed header — no top padding needed.
 */

/* ==========================================================================
   Hero container
   ========================================================================== */

.px-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	height: 900px;
}

/* BB edit mode — collapse to a sensible height so it's editable */
.fl-builder-edit .px-hero {
	min-height: 640px;
}

/* ==========================================================================
   Background image
   ========================================================================== */

.px-hero__image {
	position: absolute;
	inset: 0;
	margin: 0;
	z-index: 0;
}

.px-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Desktop / mobile image toggle */
.px-hero__img--mobile {
	display: none;
}

@media (max-width: 767px) {
	.px-hero__img--desktop {
		display: none;
	}

	.px-hero__img--mobile {
		display: block;
	}
}

/* ==========================================================================
   Gradient overlay (navy, darkens the content side)
   ========================================================================== */

.px-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		rgba(16, 80, 112, 0.85) 0%,
		rgba(16, 80, 112, 0.45) 35%,
		rgba(16, 80, 112, 0) 60%
	);
}

/* Flip overlay when content is on the right */
.px-hero--content-right .px-hero__overlay {
	background: linear-gradient(
		to left,
		rgba(16, 80, 112, 0.85) 0%,
		rgba(16, 80, 112, 0.45) 35%,
		rgba(16, 80, 112, 0) 60%
	);
}

/* ==========================================================================
   Container (centered, max-width)
   ========================================================================== */

.px-hero__container {
	position: relative;
	z-index: 2;
	max-width: var(--row-width);
	margin: 0 auto;
	height: 900px;
}

/* ==========================================================================
   Two-column grid
   ========================================================================== */

.px-hero__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: var(--space-3xl) var(--space-2xl);
	height: 900px;
	gap: var(--space-2xl);
}

/* Content column */
.px-hero__col--content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Slot column (for child modules) */
.px-hero__col--slot {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Flip column order when content is on the right */
.px-hero--content-right .px-hero__col--content {
	order: 2;
}

.px-hero--content-right .px-hero__col--slot {
	order: 1;
}

/* ==========================================================================
   Content (heading + button)
   ========================================================================== */

.px-hero__content {
	display: flex;
	flex-direction: column;
	gap: var(--space-xl);
}

/* White text on dark overlay */
.px-hero__content .heading {
	color: var(--white);
}

/* Blue divider bar (accent bar above heading) */
.px-hero__content .heading__divider::before {
	background-color: var(--action);
}

/* ==========================================================================
   Responsive — Tablet (≤ 992px)
   ========================================================================== */

@media (max-width: 992px) {
	.px-hero {
		height: 720px;
	}

	.px-hero__container {
		height: 720px;
	}

	.px-hero__columns {
		padding: var(--space-2xl) var(--space-xl);
		height: 720px;
		gap: var(--space-xl);
	}
}

/* ==========================================================================
   Responsive — Phone (≤ 767px)
   ========================================================================== */

@media (max-width: 767px) {
	.px-hero {
		height: 620px;
	}

	.px-hero__container {
		height: 620px;
	}

	.px-hero__columns {
		grid-template-columns: 1fr;
		padding: var(--space-3xl) var(--space-l) var(--space-xl);
		height: 620px;
		gap: var(--space-l);
	}

	/* On mobile, content always comes first */
	.px-hero--content-right .px-hero__col--content {
		order: 1;
	}

	.px-hero--content-right .px-hero__col--slot {
		order: 2;
	}

	/* Full overlay on mobile for readability */
	.px-hero__overlay,
	.px-hero--content-right .px-hero__overlay {
		background: linear-gradient(
			160deg,
			rgba(16, 80, 112, 0) 20%,
			rgba(16, 80, 112, 0.75) 60%
		);
	}

	/* Hide slot column on mobile if empty */
	.px-hero__col--slot:empty {
		display: none;
	}
}

/* ==========================================================================
   Placeholder (editor state when no image selected)
   ========================================================================== */

.px-hero__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30rem;
	font-family: var(--font-display);
	font-size: var(--text-m);
	color: var(--gray-mid);
	background-color: var(--bone);
}
.fl-node-gq94da8u03vl .px-hero__content .px-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-tight);
  font-size: var(--text-3xl);
  line-height: var(--lh-tight);
  display: flex;
  flex-direction: column;
}

.fl-node-gq94da8u03vl .px-hero__content .px-heading::before {
  content: '';
  display: block;
  background-color: var(--divider-primary);
  width: 2em;
  height: 0.15em;
}

.fl-node-gq94da8u03vl .px-btn-group .px-btn svg {
  flex-shrink: 0;
}

/**
 * PX Intro Text - Static CSS
 */

.px-intro-text {
	padding: var(--space-2xl) 0;
}

.px-intro-text__container {
	max-width: var(--row-width-narrow);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.px-intro-text__body {
	margin-top: var(--space-s);
}

.px-intro-text__body p:last-child {
	margin-bottom: 0;
}

.px-intro-text__btn {
	margin-top: var(--space-m);
}
.fl-node-c57x8f3pyevs .px-intro-text .px-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-tight);
  font-size: var(--text-2xl);
  line-height: var(--lh-tight);
  display: flex;
  flex-direction: column;
}

.fl-node-c57x8f3pyevs .px-intro-text .px-heading::before {
  content: '';
  display: block;
  background-color: var(--divider-primary);
  width: 1.66em;
  height: 0.166em;
}

.fl-node-c57x8f3pyevs .px-intro-text__btn .px-btn svg {
  flex-shrink: 0;
}

/**
 * PX Action Cards - Static CSS
 *
 * Figma: Sectie 5 (node 201-37213)
 * Layout: section → container (max-width) → header + card grid
 * Cards: square aspect-ratio, image cover, gradient + hover overlay
 */


/* ==========================================================================
   Section
   ========================================================================== */

.px-action-cards {
	padding: var(--space-2xl) 0;
}


/* ==========================================================================
   Container (centered, max-width)
   ========================================================================== */

.px-action-cards__container {
	max-width: var(--row-width);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	gap: var(--space-xl);
	padding: var(--space-2xl) 0;
}


/* ==========================================================================
   Card Grid
   ========================================================================== */

.px-action-cards__grid {
	display: flex;
	gap: var(--space-2xl);
}


/* ==========================================================================
   Single Card
   ========================================================================== */

.px-action-card {
	flex: 1;
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-m);
	overflow: hidden;
	display: flex;
	text-decoration: none;
}


/* -- Card image (absolute cover) -- */

.px-action-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* -- Dark gradient at bottom for text readability -- */

.px-action-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
	pointer-events: none;
	transition: opacity var(--duration-normal) var(--ease-smooth);
	z-index: 1;
}


/* -- Blue overlay (visible on hover) -- */

.px-action-card__overlay {
	position: absolute;
	inset: 0;
	background-color: var(--action);
	opacity: 0;
	transition: opacity var(--duration-normal) var(--ease-smooth);
	z-index: 2;
}


/* -- Card content (positioned at bottom) -- */

.px-action-card__content {
	position: relative;
	z-index: 3;
	margin-top: auto;
	padding: var(--space-2xl);
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
}


/* -- Divider bar (::before on content) -- */

.px-action-card__content::before {
	content: "";
	display: block;
	width: var(--space-2xl);
	height: var(--space-2xs);
	background-color: var(--action);
	transition: background-color var(--duration-normal) var(--ease-smooth);
}


/* -- Card title -- */

.px-action-card__title {
	font-family: var(--font-display);
	font-weight: var(--weight-semibold);
	font-size: var(--text-xl);
	line-height: var(--lh-snug);
	letter-spacing: var(--ls-tight);
	color: var(--white);
}


/* ==========================================================================
   Hover state
   ========================================================================== */

.px-action-card:hover .px-action-card__overlay {
	opacity: 0.85;
}

.px-action-card:hover::after {
	opacity: 0;
}

.px-action-card:hover .px-action-card__content::before {
	background-color: var(--yellow);
}


/* ==========================================================================
   Focus state (WCAG keyboard)
   ========================================================================== */

.px-action-card:focus-visible {
	outline: solid 3px var(--btn-focus-ring);
	outline-offset: 2px;
}

.px-action-card:focus-visible .px-action-card__overlay {
	opacity: 0.85;
}

.px-action-card:focus-visible::after {
	opacity: 0;
}

.px-action-card:focus-visible .px-action-card__content::before {
	background-color: var(--yellow);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet: tighter gaps */
@media screen and (max-width: 992px) {
	.px-action-cards__container {
		padding: var(--space-xl) 0;
	}
}

/* Mobile: stack cards vertically */
@media screen and (max-width: 767px) {
	.px-action-cards__grid {
		flex-direction: column;
	}

	.px-action-card {
		aspect-ratio: 16 / 9;
	}
}
.fl-node-j9uv6dpogmya .px-action-cards__header .px-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-tight);
  font-size: var(--text-2xl);
  line-height: var(--lh-tight);
  display: flex;
  flex-direction: column;
}

.fl-node-j9uv6dpogmya .px-action-cards__header .px-heading::before {
  content: '';
  display: block;
  background-color: var(--divider-primary);
  width: 1.66em;
  height: 0.166em;
}

/**
 * PX Card - Static CSS
 *
 * Two visual styles:
 *   --card:    white card with shadow, floats on section background.
 *   --section: full-bleed white background, no shadow.
 *
 * Both share the same two-column image + content grid.
 */

/* ==========================================================================
   Section wrapper
   ========================================================================== */

.px-card {
	padding: var(--space-2xl) 0;
}

/* Section style — transparent, no card appearance */

/* ==========================================================================
   Container (two-column grid)
   ========================================================================== */

.px-card__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	max-width: var(--row-width);
	margin: 0 auto;
}

/* Card style — shadow + white bg on the container */
.px-card--card .px-card__container {
	background-color: var(--white);
	box-shadow: var(--shadow-elevated);
}

/* ==========================================================================
   Image position (left / right via grid-template-areas)
   ========================================================================== */

.px-card--image-left .px-card__container {
	grid-template-areas: "image content";
}

.px-card--image-right .px-card__container {
	grid-template-areas: "content image";
}

/* ==========================================================================
   Image column
   ========================================================================== */

.px-card__image {
	grid-area: image;
	margin: 0;
	min-height: 17.5rem;
	overflow: hidden;
}

.px-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Desktop / mobile image toggle */
.px-card__img--mobile {
	display: none;
}

/* ==========================================================================
   Content column
   ========================================================================== */

.px-card__content {
	grid-area: content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--space-m);
	padding: var(--space-2xl);
}

/* Body text */
.px-card__body {
	font-family: var(--font-body);
	font-size: var(--text-m);
	line-height: var(--lh-relaxed);
	color: var(--text-base);
}

.px-card__body p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Responsive — Tablet (≤ 992px)
   ========================================================================== */

@media (max-width: 992px) {
	.px-card__container {
		grid-template-columns: 1fr;
	}

	/* Image always on top on tablet/mobile */
	.px-card--image-left .px-card__container {
		grid-template-areas:
			"image"
			"content";
	}

	.px-card--image-right .px-card__container {
		grid-template-areas:
			"image"
			"content";
	}
}

/* ==========================================================================
   Responsive — Phone (≤ 767px)
   ========================================================================== */

@media (max-width: 767px) {
	.px-card__content {
		padding: var(--space-xl);
	}

	.px-card__img--desktop {
		display: none;
	}

	.px-card__img--mobile {
		display: block;
	}
}
.fl-node-yum349n7ldce .px-card__content .px-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-tight);
  font-size: var(--text-2xl);
  line-height: var(--lh-tight);
  display: flex;
  flex-direction: column;
}

.fl-node-yum349n7ldce .px-card__content .px-heading::before {
  content: '';
  display: block;
  background-color: var(--divider-primary);
  width: 1.66em;
  height: 0.166em;
}

.fl-node-yum349n7ldce .px-btn-group .px-btn svg {
  flex-shrink: 0;
}

/**
 * PX Button Bar - Static CSS
 */

.px-button-bar {
	padding: var(--space-2xl) 0;
}

.px-button-bar__container {
	max-width: var(--row-width);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-s);
}

.px-button-bar__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-xs);
}

.px-button-bar__item {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);
	padding: var(--space-xs) var(--space-m) var(--space-xs) var(--space-s);
	border: 2px solid var(--action);
	border-radius: var(--radius-pill);
	background-color: var(--white);
	color: var(--gray-dark);
	font-family: var(--font-display);
	font-weight: var(--weight-medium);
	font-size: var(--text-m);
	line-height: var(--lh-normal);
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.px-button-bar__item:hover,
.px-button-bar__item:focus-visible {
	background-color: var(--action);
	color: var(--white);
	border-color: var(--action);
}

.px-button-bar__text {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.px-button-bar__heading {
	font-family: var(--font-display);
	font-size: var(--text-m-plus);
	line-height: var(--lh-snug);
	text-align: center;
	margin: 0;
}

.px-button-bar__icon svg {
	width: 1em;
	height: 1em;
	flex-shrink: 0;
}
/**
 * PX CTA Banner – Static CSS
 * Two-column card: heading left, Gravity Form right.
 */


/* ── Section ──────────────────────────────────── */

.px-cta-banner {
	padding: var(--space-2xl) 0;
}


/* ── Card container ───────────────────────────── */

.px-cta-banner__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: var(--space-2xl);
	max-width: var(--row-width);
	margin: 0 auto;
	padding: var(--space-2xl);
	border-radius: var(--radius-m);
}

@media (max-width: 992px) {
	.px-cta-banner__inner {
		grid-template-columns: 1fr;
		padding: var(--space-xl);
	}
}


/* ── Background variants ──────────────────────── */

.px-cta-banner--bg-yellow .px-cta-banner__inner {
	background-color: var(--yellow);
}

.px-cta-banner--bg-sand .px-cta-banner__inner {
	background-color: var(--sand);
}


/* ── Heading column ───────────────────────────── */

.px-cta-banner__heading {
	display: flex;
	flex-direction: column;
	gap: var(--space-m);
}


/* ── Form column ──────────────────────────────── */

.px-cta-banner__form {
	display: flex;
	flex-direction: column;
	gap: var(--space-l);
}


/* ── Placeholder text ─────────────────────────── */

.px-cta-banner__placeholder {
	font-family: var(--font-display);
	font-size: var(--text-m);
	font-weight: var(--weight-medium);
	color: var(--gray-dark);
	opacity: 0.7;
	margin: 0;
}


/* ── Gravity Forms overrides ──────────────────── */

.px-cta-banner__form .gform_wrapper {
	margin: 0;
	padding: 0;
}

.px-cta-banner__form .gform_wrapper .gform_body {
	margin-bottom: var(--space-l);
}

.px-cta-banner__form .gform_fields {
	display: flex;
	flex-direction: column;
	gap: var(--space-s);
}

.px-cta-banner__form .gfield {
	margin: 0;
	padding: 0;
}

.px-cta-banner__form .gfield_label {
	font-family: var(--font-display);
	font-size: var(--text-m);
	font-weight: var(--weight-semibold);
	line-height: var(--lh-normal);
	letter-spacing: var(--ls-tight);
	color: var(--text-base);
	margin-bottom: var(--space-xs);
}

.px-cta-banner__form .gfield_required {
	color: var(--action);
}

.px-cta-banner__form input[type="text"],
.px-cta-banner__form input[type="email"],
.px-cta-banner__form input[type="number"],
.px-cta-banner__form input[type="tel"],
.px-cta-banner__form textarea,
.px-cta-banner__form select {
	font-family: var(--font-display);
	font-size: var(--text-m);
	font-weight: var(--weight-medium);
	line-height: var(--lh-normal);
	color: var(--text-base);
	background-color: var(--white);
	border: 2px solid var(--transparent);
	border-radius: var(--radius-s);
	padding: var(--space-xs) var(--space-s);
	width: 100%;
	transition: border-color var(--duration-normal) var(--ease-smooth);
}

.px-cta-banner__form input:focus,
.px-cta-banner__form textarea:focus,
.px-cta-banner__form select:focus {
	border-color: var(--action);
	outline: none;
}

.px-cta-banner__form .gform_button,
.px-cta-banner__form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);

	font-family: var(--font-display);
	font-size: var(--text-l);
	font-weight: var(--weight-medium);
	line-height: var(--lh-snug);
	letter-spacing: var(--ls-none);
	color: var(--white);

	padding: var(--space-m) var(--space-l);
	background-color: var(--navy);
	border: 3px solid var(--transparent);
	border-radius: var(--radius-m);
	box-shadow: var(--shadow-subtle);

	cursor: pointer;
	transition: var(--transition-btn);
}

.px-cta-banner__form .gform_button:hover,
.px-cta-banner__form input[type="submit"]:hover {
	color: var(--gray-dark);
	background-color: var(--transparent);
	border-color: var(--navy);
	box-shadow: var(--shadow-hover);
}

.px-cta-banner__form .gform_button:focus-visible,
.px-cta-banner__form input[type="submit"]:focus-visible {
	outline: solid 3px var(--btn-focus-ring);
	background-color: var(--transparent);
	border-color: var(--navy);
	box-shadow: none;
}

.px-cta-banner__form .gform_button:active,
.px-cta-banner__form input[type="submit"]:active {
	color: var(--gray-dark);
	background-color: var(--yellow);
	border-color: var(--transparent);
	box-shadow: var(--shadow-pressed);
}


/* ── Radio buttons ────────────────────────────── */

.px-cta-banner__form .gfield_radio {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xl);
	list-style: none;
	margin: 0;
	padding: 0;
}

.px-cta-banner__form .gfield_radio li {
	margin: 0;
}

.px-cta-banner__form .gfield_radio label {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);
	font-family: var(--font-display);
	font-size: var(--text-m);
	font-weight: var(--weight-semibold);
	color: var(--text-base);
	cursor: pointer;
}

.px-cta-banner__form .gfield_radio input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: var(--space-l);
	height: var(--space-l);
	border: 2px solid var(--gray-dark);
	border-radius: var(--radius-full);
	background-color: var(--white);
	cursor: pointer;
	flex-shrink: 0;
	position: relative;
	transition: border-color var(--duration-fast) var(--ease-smooth);
}

.px-cta-banner__form .gfield_radio input[type="radio"]:checked {
	border-color: var(--action);
}

.px-cta-banner__form .gfield_radio input[type="radio"]:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: 50%;
	border-radius: var(--radius-full);
	background-color: var(--action);
}
.fl-node-9548grxwzukm .px-cta-banner__heading .px-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-tight);
  font-size: var(--text-2xl);
  line-height: var(--lh-tight);
  display: flex;
  flex-direction: column;
}

.fl-node-9548grxwzukm .px-cta-banner__heading .px-heading::before {
  content: '';
  display: block;
  background-color: var(--divider-primary);
  width: 1.66em;
  height: 0.166em;
}

/**
 * PX Posts Overview - Static CSS
 *
 * Editorial layout: featured card + medium cards + compact sidebar.
 * Main body ~65% / Sidebar ~30% with gap between.
 */

/* ==========================================================================
   Section
   ========================================================================== */

.px-posts-overview {
	padding: var(--space-2xl) 0;
}

/* ==========================================================================
   Container
   ========================================================================== */

.px-posts-overview__container {
	max-width: var(--row-width);
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: var(--space-2xl);
}

/* ==========================================================================
   Body (main + sidebar)
   ========================================================================== */

.px-posts-overview__body {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: var(--space-2xl);
	align-items: start;
}

/* ==========================================================================
   Main column
   ========================================================================== */

.px-posts-overview__main {
	display: flex;
	flex-direction: column;
	gap: var(--space-2xl);
}

/* ==========================================================================
   Featured card (first post — image background + gradient overlay)
   ========================================================================== */

.px-posts-overview__featured {
	position: relative;
	overflow: hidden;
	min-height: 31.25rem;
	display: flex;
	isolation: isolate;
}

.px-posts-overview__featured-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.px-posts-overview__featured-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to bottom left,
		rgba(16, 80, 112, 0) 30%,
		rgba(16, 80, 112, 0.85) 80%
	);
}

.px-posts-overview__featured-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: var(--space-s);
	padding: var(--space-l);
	width: 100%;
	text-decoration: none;
	color: var(--white);
}

.px-posts-overview__featured-content:hover {
	color: var(--white);
}

.px-posts-overview__featured-title {
	color: var(--white);
}

/* White divider bar on featured card */
.px-posts-overview__featured-title.heading__divider::before {
	background-color: var(--action);
}

/* ==========================================================================
   Medium cards row (posts 2-3)
   ========================================================================== */

.px-posts-overview__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-2xl);
}

/* ==========================================================================
   Medium card
   ========================================================================== */

.px-posts-overview__card {
	display: flex;
	flex-direction: column;
	gap: var(--space-l);
}

/* Card image */
.px-posts-overview__card-image-wrap {
	display: block;
	overflow: hidden;
}

.px-posts-overview__card-img {
	width: 100%;
	height: auto;
	aspect-ratio: 35 / 26;
	object-fit: cover;
	display: block;
	transition: transform var(--duration-normal) var(--ease-smooth);
}

.px-posts-overview__card-image-wrap:hover .px-posts-overview__card-img {
	transform: scale(1.03);
}

/* Card content */
.px-posts-overview__card-content {
	display: flex;
	flex-direction: column;
	gap: var(--space-s);
}

.px-posts-overview__card-title a {
	color: inherit;
	text-decoration: none;
}

.px-posts-overview__card-title a:hover {
	color: var(--action);
}

/* ==========================================================================
   Date (shared across cards)
   ========================================================================== */

.px-posts-overview__date {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);
	font-family: var(--font-display);
	font-size: var(--text-m);
	font-weight: var(--weight-semibold);
	line-height: var(--lh-normal);
	letter-spacing: var(--ls-tight);
	color: var(--text-base);
}

.px-posts-overview__date svg {
	width: var(--space-l);
	height: var(--space-l);
	flex-shrink: 0;
}

/* Light variant (on dark / featured card) */
.px-posts-overview__date--light {
	color: var(--white);
}

.px-posts-overview__date--light svg {
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.35));
}

/* Small variant (sidebar) */
.px-posts-overview__date--small {
	font-size: var(--text-s);
}

.px-posts-overview__date--small svg {
	width: var(--space-m);
	height: var(--space-m);
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.px-posts-overview__sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--space-l);
}

.px-posts-overview__sidebar-title {
	color: var(--text-heading);
}

/* Sidebar list */
.px-posts-overview__sidebar-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-l);
}

/* ==========================================================================
   Sidebar card (horizontal: thumbnail + content)
   ========================================================================== */

.px-posts-overview__sidebar-card {
	display: grid;
	grid-template-columns: 10rem 1fr;
	gap: var(--space-s);
	align-items: start;
}

/* Sidebar thumbnail */
.px-posts-overview__sidebar-image-wrap {
	display: block;
	overflow: hidden;
}

.px-posts-overview__sidebar-img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	transition: transform var(--duration-normal) var(--ease-smooth);
}

.px-posts-overview__sidebar-image-wrap:hover .px-posts-overview__sidebar-img {
	transform: scale(1.03);
}

/* Sidebar content */
.px-posts-overview__sidebar-content {
	display: flex;
	flex-direction: column;
	gap: var(--space-2xs);
}

.px-posts-overview__sidebar-card-title {
	font-family: var(--font-display);
	font-size: var(--text-m);
	font-weight: var(--weight-semibold);
	line-height: var(--lh-snug);
	letter-spacing: var(--ls-tight);
	color: var(--text-heading);
}

.px-posts-overview__sidebar-card-title a {
	color: inherit;
	text-decoration: none;
}

.px-posts-overview__sidebar-card-title a:hover {
	color: var(--action);
}

/* ==========================================================================
   No results
   ========================================================================== */

.px-posts-overview__no-results {
	font-family: var(--font-body);
	font-size: var(--text-m);
	color: var(--gray-mid);
}

/* ==========================================================================
   Responsive — Tablet (≤ 992px)
   ========================================================================== */

@media (max-width: 992px) {
	.px-posts-overview__body {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.px-posts-overview__featured {
		min-height: 25rem;
	}

	.px-posts-overview__cards {
		gap: var(--space-xl);
	}

	/* Sidebar becomes full-width horizontal scroll on tablet */
	.px-posts-overview__sidebar-card {
		grid-template-columns: 8rem 1fr;
	}
}

/* ==========================================================================
   Responsive — Phone (≤ 767px)
   ========================================================================== */

@media (max-width: 767px) {
	.px-posts-overview__container {
		gap: var(--space-xl);
	}

	.px-posts-overview__main {
		gap: var(--space-xl);
	}

	.px-posts-overview__featured {
		min-height: 20rem;
	}

	.px-posts-overview__cards {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.px-posts-overview__sidebar-card {
		grid-template-columns: 6rem 1fr;
	}
}
.fl-node-b7f9xtoz1ykj .px-posts-overview__container .px-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-tight);
  font-size: var(--text-2xl);
  line-height: var(--lh-tight);
  display: flex;
  flex-direction: column;
}

.fl-node-b7f9xtoz1ykj .px-posts-overview__container .px-heading::before {
  content: '';
  display: block;
  background-color: var(--divider-primary);
  width: 1.66em;
  height: 0.166em;
}

/**
 * PX Posts – Static CSS
 * Card grid with featured image, heading divider, date and CTA link.
 */


/* ── Section ──────────────────────────────────── */

.px-posts {
	padding: var(--space-2xl) 0;
}


/* ── Container (centered, max-width) ─────────── */

.px-posts__container {
	max-width: var(--row-width);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}


/* ── Card grid ────────────────────────────────── */

.px-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-2xl);
}

@media (max-width: 992px) {
	.px-posts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.px-posts__grid {
		grid-template-columns: 1fr;
	}
}


/* ── Card ─────────────────────────────────────── */

.px-post-card {
	display: flex;
	flex-direction: column;
	gap: var(--space-l);
}


/* ── Card image ───────────────────────────────── */

.px-post-card__image-wrap {
	display: block;
	overflow: hidden;
}

.px-post-card__image {
	width: 100%;
	height: auto;
	aspect-ratio: 35 / 26;
	object-fit: cover;
	display: block;
	transition: transform var(--duration-normal) var(--ease-smooth);
}

.px-post-card__image-wrap:hover .px-post-card__image {
	transform: scale(1.03);
}


/* ── Card content ─────────────────────────────── */

.px-post-card__content {
	display: flex;
	flex-direction: column;
	gap: var(--space-s);
}


/* ── Card title ───────────────────────────────── */

.px-post-card__title a {
	color: inherit;
	text-decoration: none;
}

.px-post-card__title a:hover {
	color: var(--action);
}


/* ── Card date ────────────────────────────────── */

.px-post-card__date {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);

	font-family: var(--font-display);
	font-size: var(--text-m);
	font-weight: var(--weight-semibold);
	line-height: var(--lh-normal);
	letter-spacing: var(--ls-tight);
	color: var(--text-base);
}

.px-post-card__date svg {
	width: var(--space-l);
	height: var(--space-l);
	flex-shrink: 0;
}


/* ── Card CTA link ────────────────────────────── */

.px-post-card__cta {
	align-self: flex-start;
}


/* ── No results ───────────────────────────────── */

.px-posts__no-results {
	font-family: var(--font-body);
	font-size: var(--text-m);
	color: var(--gray-mid);
}
/**
 * PX Banner - Static CSS
 *
 * Image banner with overlay gradient, two-column layout (content + slot).
 * Three sizes: Full-width (L), 12-column (M), 10-column (S).
 * Content position flips via modifier classes.
 */

/* ==========================================================================
   Section wrapper (inherits px-section-bg for top/bottom backgrounds)
   ========================================================================== */

.px-banner {
	padding: var(--space-2xl) 0;
}

/* ==========================================================================
   Container (centered, max-width)
   ========================================================================== */

/* 12-column: constrained to row width */
.px-banner--m .px-banner__container {
	max-width: var(--row-width);
	margin-left: auto;
	margin-right: auto;
}

/* 10-column: narrower */
.px-banner--s .px-banner__container {
	max-width: 71.875rem; /* 1150px = 10/12 of 1380 */
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Banner card — the image + overlay container
   ========================================================================== */

.px-banner__card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-m);
	isolation: isolate;
}

/* Full-width: no max-width, edge to edge */
.px-banner--l .px-banner__card {
	border-radius: 0;
}

/* ==========================================================================
   Background image
   ========================================================================== */

.px-banner__image {
	position: absolute;
	inset: 0;
	margin: 0;
	z-index: 0;
}

.px-banner__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Desktop / mobile image toggle */
.px-banner__img--mobile {
	display: none;
}

@media (max-width: 767px) {
	.px-banner__img--desktop {
		display: none;
	}

	.px-banner__img--mobile {
		display: block;
	}
}

/* ==========================================================================
   Overlay gradient
   ========================================================================== */

.px-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		rgba(16, 80, 112, 0.85) 0%,
		rgba(16, 80, 112, 0.6) 35%,
		rgba(16, 80, 112, 0) 60%
	);
}

/* Flip overlay when content is on the right */
.px-banner--content-right .px-banner__overlay {
	background: linear-gradient(
		to left,
		rgba(16, 80, 112, 0.85) 0%,
		rgba(16, 80, 112, 0.6) 35%,
		rgba(16, 80, 112, 0) 60%
	);
}

/* ==========================================================================
   Two-column grid (content + slot)
   ========================================================================== */

.px-banner__columns {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 28rem;
	padding: var(--space-2xl);
}

/* Content column */
.px-banner__col--content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--space-xl);
}

/* Slot column (for child modules) */
.px-banner__col--slot {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Flip column order when content is on the right */
.px-banner--content-right .px-banner__col--content {
	order: 2;
}

.px-banner--content-right .px-banner__col--slot {
	order: 1;
}

/* ==========================================================================
   Content styling (heading + button on dark overlay)
   ========================================================================== */

.px-banner__content {
	display: flex;
	flex-direction: column;
	gap: var(--space-xl);
}

/* White text on dark overlay */
.px-banner__content .heading {
	color: var(--white);
}

/* White divider bar */
.px-banner__content .heading__divider::before {
	background-color: var(--white);
}

/* ==========================================================================
   Size-specific heights
   ========================================================================== */

/* Full-width — tallest */
.px-banner--l .px-banner__columns {
	min-height: 32rem;
}

/* 12-column — medium */
.px-banner--m .px-banner__columns {
	min-height: 28rem;
}

/* 10-column — smaller */
.px-banner--s .px-banner__columns {
	min-height: 24rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
	.px-banner__columns {
		padding: var(--space-xl);
		min-height: 24rem;
	}

	.px-banner--l .px-banner__columns {
		min-height: 26rem;
	}

	.px-banner--m .px-banner__columns,
	.px-banner--s .px-banner__columns {
		min-height: 22rem;
	}
}

@media (max-width: 767px) {
	.px-banner__columns {
		grid-template-columns: 1fr;
		padding: var(--space-l) var(--space-m);
		min-height: 20rem;
		gap: var(--space-l);
	}

	.px-banner--l .px-banner__columns,
	.px-banner--m .px-banner__columns,
	.px-banner--s .px-banner__columns {
		min-height: 18rem;
	}

	/* On mobile, content always comes first */
	.px-banner--content-right .px-banner__col--content {
		order: 1;
	}

	.px-banner--content-right .px-banner__col--slot {
		order: 2;
	}

	/* Full overlay on mobile */
	.px-banner__overlay,
	.px-banner--content-right .px-banner__overlay {
		background: rgba(16, 80, 112, 0.7);
	}

	/* Hide slot column on mobile if empty */
	.px-banner__col--slot:empty {
		display: none;
	}
}

/* ==========================================================================
   Placeholder text (editor state when no image)
   ========================================================================== */

.px-banner__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 20rem;
	font-family: var(--font-display);
	font-size: var(--text-m);
	color: var(--gray-mid);
	background-color: var(--bone);
	border-radius: var(--radius-m);
}
.fl-node-n6c298r1z5io .px-banner__content .px-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-tight);
  font-size: var(--text-2xl);
  line-height: var(--lh-tight);
  display: flex;
  flex-direction: column;
}

.fl-node-n6c298r1z5io .px-banner__content .px-heading::before {
  content: '';
  display: block;
  background-color: var(--divider-primary);
  width: 1.66em;
  height: 0.166em;
}

.fl-node-n6c298r1z5io .px-btn-group .px-btn svg {
  flex-shrink: 0;
}

/**
 * PX Quote - Static CSS
 *
 * Lightweight inline quote with accent line, text, and author persona.
 * Supports two color variants: default (dark) and white.
 */


/* ── Figure (quote content) ───────────────────── */

.px-quote__figure {
	display: flex;
	flex-direction: column;
	gap: var(--space-s);
	margin: 0;
}


/* ── Quote body (accent + text) ───────────────── */

.px-quote__body {
	display: flex;
	flex-direction: column;
	gap: var(--space-m);
}


/* ── Accent line ──────────────────────────────── */

.px-quote__accent {
	width: 60px;
	height: 5px;
	background: var(--action);
	flex-shrink: 0;
}


/* ── Quote text ───────────────────────────────── */

.px-quote__text {
	margin: 0;
}

.px-quote__text p {
	font-family: var(--font-display);
	font-weight: var(--weight-medium);
	font-size: var(--text-m-plus);
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--gray-dark);
	margin: 0;
}


/* ── Author (persona) ─────────────────────────── */

.px-quote__author {
	display: flex;
	align-items: center;
	gap: var(--space-s);
}

.px-quote__avatar {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-full);
	object-fit: cover;
	flex-shrink: 0;
}

.px-quote__meta {
	display: flex;
	flex-direction: column;
}

.px-quote__name {
	font-family: var(--font-display);
	font-weight: var(--weight-semibold);
	font-size: var(--text-m);
	line-height: 1.3;
	color: var(--gray-dark);
}

.px-quote__subtitle {
	font-family: var(--font-body);
	font-weight: var(--weight-regular);
	font-size: var(--text-m);
	line-height: 1.75;
	color: var(--gray-dark);
}


/* ── Color variant: white ─────────────────────── */

.px-quote__figure--white .px-quote__text p,
.px-quote__figure--white .px-quote__name,
.px-quote__figure--white .px-quote__subtitle {
	color: var(--white);
}
/**
 * PX Store Map - Static CSS
 * Auto-loaded by BB when module is on page.
 */

.px-store-map {
	padding: var(--space-2xl) 0;
}

/* ── Container (centered, max-width) ────────────── */

.px-store-map__container {
	max-width: var(--row-width);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.px-store-map__canvas {
	width: 100%;
	border-radius: var(--radius-s);
	background: var(--bone);
}

/* ── Error state ──────────────────────────────────── */

.px-store-map__error[hidden] {
	display: none;
}

.px-store-map__error {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-s);
	min-height: 300px;
	background: var(--bone);
	border-radius: var(--radius-s);
	padding: var(--space-xl);
	text-align: center;
}

.px-store-map__error-icon {
	color: var(--gray-mid);
}

.px-store-map__error-text {
	font-family: var(--font-body);
	font-size: var(--text-m);
	color: var(--gray-mid);
	margin: 0;
	max-width: 32rem;
}

/* ── Google Maps overrides ────────────────────────── */

.px-store-map__canvas .gm-style-iw {
	font-family: var(--font-body);
}
.fl-node-m6ejl8t5po41 .px-store-map__canvas {
	height: 500px;
}
/**
 * PX Slider - Static CSS
 *
 * Figma: node 167-26755
 * Layout: full-width viewport with edge-fade gradients,
 *         3 photo cards with box-shadow, pagination on center slide.
 */


/* ==========================================================================
   Section
   ========================================================================== */

.px-slider {
	padding: var(--space-2xl) 0;
	overflow: hidden;
}


/* ==========================================================================
   Viewport (full-width, holds the carousel + edge gradients)
   ========================================================================== */

.px-slider__viewport {
	position: relative;
}


/* -- Edge fade gradients (left + right) -- */

.px-slider__viewport::before,
.px-slider__viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 23%;
	z-index: 5;
	pointer-events: none;
}

.px-slider__viewport::before {
	left: 0;
	background: linear-gradient(90deg, var(--Brand-11, #F3F0ED) 0%, rgba(243, 240, 237, 0) 100%);
}

.px-slider__viewport::after {
	right: 0;
	background: linear-gradient(270deg, var(--Brand-11, #F3F0ED) 0%, rgba(243, 240, 237, 0) 100%);
}


/* ==========================================================================
   Splide overrides
   ========================================================================== */

.px-slider .splide__track {
	overflow: visible;
}


/* ==========================================================================
   Slide item
   ========================================================================== */

.px-slider .splide__slide {
	padding: var(--space-s) 0;
}

.px-slider__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: var(--shadow-elevated);
	aspect-ratio: 4 / 3;
}


/* ==========================================================================
   Pagination dots — positioned on the center slide
   ========================================================================== */

.px-slider .splide__pagination {
	position: absolute;
	top: var(--space-m);
	bottom: auto;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	gap: 0.5rem;
	z-index: 4;
	padding: 0.375rem 0.75rem 0.25rem;
	background-color: var(--white);
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-subtle);
	width: fit-content;
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
}

.px-slider .splide__pagination li {
	line-height: 0;
}

.px-slider .splide__pagination__page {
	width: 0.4375rem;
	height: 0.4375rem;
	min-width: 0;
	min-height: 0;
	background-color: transparent;
	border: 1.5px solid var(--action);
	border-radius: 50%;
	opacity: 1;
	transition: background-color var(--duration-normal) var(--ease-smooth);
	padding: 0;
	margin: 0;
	transform: none;
}

.px-slider .splide__pagination__page.is-active {
	background-color: var(--action);
	transform: none;
}


/* ==========================================================================
   Arrows — positioned on the side photos
   ========================================================================== */

.px-slider .splide__arrow {
	background-color: var(--white);
	border: 3px solid var(--action);
	box-shadow: 0 0 0 5px var(--white);
	width: 3rem;
	height: 3rem;
	opacity: 1;
	transition: border-color var(--duration-normal) var(--ease-smooth),
	            box-shadow var(--duration-normal) var(--ease-smooth),
	            opacity var(--duration-normal) var(--ease-smooth);
	z-index: 6;
}

.px-slider .splide__arrow svg {
	width: 0.875rem;
	height: 0.875rem;
	fill: var(--action);
	transition: fill var(--duration-normal) var(--ease-smooth);
}

/* -- Disabled state: dark/muted border + icon -- */

.px-slider .splide__arrow:disabled {
	border-color: var(--text-base);
	box-shadow: 0 0 0 5px var(--white);
	opacity: 0.5;
	cursor: default;
}

.px-slider .splide__arrow:disabled svg {
	fill: var(--text-base);
}

/* -- Position at inner edge of side photos (near the gap) -- */

.px-slider .splide__arrow--prev {
	left: 30%;
}

.px-slider .splide__arrow--next {
	right: 30%;
}


/* ==========================================================================
   Caption (below the slider)
   ========================================================================== */

.px-slider__caption {
	max-width: var(--row-width);
	margin: var(--space-m) auto 0;
	padding: 0;
	font-family: var(--font-body);
	font-size: var(--text-s);
	font-style: italic;
	line-height: var(--lh-relaxed);
	color: var(--text-muted, var(--text-base));
	text-align: center;
}

.px-slider__caption:empty {
	display: none;
}


/* ==========================================================================
   Responsive — Tablet (≤ 992px)
   ========================================================================== */

@media screen and (max-width: 992px) {
	.px-slider__viewport::before,
	.px-slider__viewport::after {
		width: 10%;
	}
}


/* ==========================================================================
   Responsive — Phone (≤ 767px)
   ========================================================================== */

@media screen and (max-width: 767px) {
	.px-slider__viewport::before,
	.px-slider__viewport::after {
		width: 5%;
	}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

