/* ====================
1. resets & defaults
2. base styles
3. layout
4. components
5. content by pages
==================== */


/* ==================== 1. resets & defaults ==================== */

*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	font-family: 'Helvetica Neue LT GEO', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #292c40;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
	padding: 0;
}

/* ----------- /resets ----------- */


/* ==================== 2. base styles ==================== */

/* ----------- css variables ----------- */

:root {
	--app-header-height: 74px;
	--app-bottom-bar-height: 0px;
	--main-padding-x: 20px;

	--radius-sm: 5px;
	--radius-md: 8px;
	--radius-lg: 14px;
	--radius-xl: 24px;
	--radius-pill: 100px;

	--shadow-soft: 0 2px 16px rgba(41, 44, 64, 0.10);
	--shadow-card: 0 4px 24px rgba(41, 44, 64, 0.12);

	/* brand colors — matches the .text-* / .bg-* literal utilities above;
	   kept as custom properties too since events.css/exhibitions.css/
	   event-detail.css/contact.css reference them via var(--color-*) */
	--color-primary: #292c40;
	--color-cream: #faeadf;
	--color-accent: #dff16d;
	--color-dark-green: #111e06;
}

@media (min-width: 576px) {
	:root {
		--main-padding-x: 30px;
	}
}

@media (min-width: 1200px) {
	:root {
		--main-padding-x: 50px;
	}
}

/* ----------- /css variables ----------- */


/* ----------- typography ----------- */

.title {
	font-family: 'Romie', 'FiraGO', Georgia, 'Times New Roman', serif;
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.title-italic {
	font-style: italic;
}

.title-xl  { font-size: 90px; }
.title-lg  { font-size: 80px; }
.title-md  { font-size: 50px; }
.title-sm  { font-size: 40px; }

@media (max-width: 991px) {
	.title-xl  { font-size: 56px; }
	.title-lg  { font-size: 48px; }
	.title-md  { font-size: 36px; }
	.title-sm  { font-size: 28px; }
}

@media (max-width: 575px) {
	.title-xl  { font-size: 40px; }
	.title-lg  { font-size: 36px; }
	.title-md  { font-size: 28px; }
	.title-sm  { font-size: 24px; }
}

/* ----------- /typography ----------- */


/* ----------- color utilities ----------- */

.text-cream       { color: #faeadf; }
.text-yellow      { color: #dff16d; }
.text-navy        { color: #292c40; }
.text-forest      { color: #111e06; }
.text-lavender    { color: #a9c0fc; }
.text-muted-cream { color: #e6e9c7; }

/* ----------- /color utilities ----------- */


/* ----------- background utilities ----------- */

.bg-forest   { background-color: #111e06; }
.bg-cream    { background-color: #faeadf; }
.bg-lavender { background-color: #a9c0fc; }
.bg-navy     { background-color: #292c40; }

/* ----------- /background utilities ----------- */


/* ----------- section ----------- */

.section {
	padding: 80px 0;
}

/* ----------- /section ----------- */


/* ==================== 3. layout ==================== */

/* ----------- app shell ----------- */

.app {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
}

.app-page {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

/* ----------- /app shell ----------- */


/* ----------- app-header ----------- */

.app-header {
	position: sticky;
	top: 0;
	z-index: 200;
}

.app-header .header-wrap {
	background-color: #111e06;
	height: var(--app-header-height);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 var(--main-padding-x);
}

.app-header .header-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.app-header .header-logo img {
	height: 40px;
	width: auto;
}

.app-header .header-nav {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.app-header .header-nav .nav-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.app-header .header-nav .nav-links li {
	margin-left: 32px;
}

.app-header .header-nav .nav-links a {
	font-size: 15px;
	font-weight: 700;
	color: #faeadf;
	text-decoration: none;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.app-header .header-nav .nav-links a:hover {
	opacity: 0.65;
}

.app-header .header-nav .nav-links a.is-active {
	opacity: 0.65;
}

.app-header .lang-btn {
	margin-left: 20px;
	background: #f0f0f0;
	border-radius: var(--radius-md);
	padding: 14px 16px;
	min-height: 44px;
	font-size: 15px;
	font-weight: 500;
	color: #231f20;
	cursor: pointer;
	border: none;
	font-family: inherit;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.app-header .lang-btn:hover {
	opacity: 0.8;
}

.app-header .hamburger {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	min-width: 44px;
	min-height: 44px;
	margin-left: auto;
}

.app-header .hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #faeadf;
	border-radius: 2px;
	margin-bottom: 5px;
}

.app-header .hamburger span:last-child {
	margin-bottom: 0;
}

/* mobile nav drawer */
.app-header .mobile-nav {
	display: none;
	background-color: #111e06;
	border-top: 1px solid rgba(250, 234, 215, 0.12);
	padding: 20px var(--main-padding-x);
}

.app-header .mobile-nav.is-open {
	display: block;
}

.app-header .mobile-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.app-header .mobile-nav ul li {
	border-bottom: 1px solid rgba(250, 234, 215, 0.08);
}

.app-header .mobile-nav ul li:last-child {
	border-bottom: none;
}

.app-header .mobile-nav ul li a {
	display: block;
	padding: 14px 0;
	font-size: 16px;
	font-weight: 700;
	color: #faeadf;
}

.app-header .mobile-nav .lang-btn {
	margin-left: 0;
	margin-top: 16px;
}

@media (max-width: 1039px) {
	.app-header .header-nav .nav-links {
		display: none;
	}

	.app-header .lang-btn {
		display: none;
	}

	.app-header .hamburger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

/* ----------- /app-header ----------- */


/* ----------- app-footer ----------- */

.app-footer {
	background-color: #111e06;
	color: #faeadf;
	padding: 60px 0 0;
}

.app-footer .footer-main {
	padding: 0 var(--main-padding-x) 48px;
}

.app-footer .footer-logo img {
	height: 36px;
	width: auto;
	margin-bottom: 20px;
}

.app-footer .footer-tagline {
	font-size: 14px;
	color: rgba(250, 234, 215, 0.6);
	margin-bottom: 20px;
}

.app-footer .footer-social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.app-footer .footer-social a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-right: 4px;
	color: #faeadf;
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.app-footer .footer-social a:hover {
	opacity: 1;
}

.app-footer .footer-social svg {
	width: 18px;
	height: 18px;
	fill: #faeadf;
}

.app-footer .footer-col-title {
	font-size: 15px;
	font-weight: 700;
	color: #faeadf;
	margin-bottom: 16px;
}

.app-footer .footer-col ul li {
	margin-bottom: 10px;
}

.app-footer .footer-col ul li a {
	font-size: 15px;
	color: #faeadf;
	opacity: 0.65;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.app-footer .footer-col ul li a:hover {
	opacity: 1;
}

.app-footer .footer-bottom {
	border-top: 1px solid rgba(250, 234, 215, 0.12);
	padding: 20px var(--main-padding-x);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.app-footer .footer-bottom p {
	font-size: 13px;
	color: rgba(250, 234, 215, 0.4);
	margin: 0;
}

.app-footer .footer-createdby {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 13px;
	color: rgba(250, 234, 215, 0.4);
}

.app-footer .footer-createdby span {
	margin-right: 8px;
}

.app-footer .footer-createdby img {
	height: 18px;
	width: auto;
}

@media (max-width: 767px) {
	.app-footer .footer-bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.app-footer .footer-createdby {
		margin-top: 8px;
	}
}

/* ----------- /app-footer ----------- */


/* ==================== 4. components ==================== */


/* ----------- buttons ----------- */

.btn-sa {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: var(--radius-pill);
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 400;
	font-family: inherit;
	border: none;
	cursor: pointer;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1;
}

.btn-sa:hover {
	opacity: 0.82;
	text-decoration: none;
}

/* variants */
.btn-sa-primary {
	background-color: #dff16d;
	color: #24150e;
}

.btn-sa-primary:hover {
	color: #24150e;
}

.btn-sa-dark {
	background-color: #292c40;
	color: #fbfed5;
}

.btn-sa-dark:hover {
	color: #fbfed5;
}

.btn-sa-outline {
	background-color: transparent;
	color: #292c40;
	border: 1.5px solid #292c40;
	padding: 13px 32px;
}

.btn-sa-outline:hover {
	background-color: #292c40;
	color: #fbfed5;
}

/* ----------- /buttons ----------- */


/* ----------- badges ----------- */

.badge-sa {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: var(--radius-pill);
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
}

.badge-sa-yellow {
	background-color: #dff16d;
	color: #292c40;
}

.badge-sa-lavender {
	background-color: #a9c0fc;
	color: #292c40;
}

/* ----------- /badges ----------- */


/* ----------- forms ----------- */

.form-group {
	margin-bottom: 20px;
}

.floating-label {
	position: relative;
	display: block;
}

.floating-label .form-control {
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(41, 44, 64, 0.25);
	border-radius: 0;
	padding: 22px 0 8px;
	font-size: 15px;
	color: #292c40;
	font-family: inherit;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	-webkit-transition: border-color 0.2s;
	transition: border-color 0.2s;
	width: 100%;
}

.floating-label .form-control:focus {
	border-bottom-color: #292c40;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
}

.floating-label span {
	position: absolute;
	left: 0;
	top: 22px;
	max-width: calc(100% - 4px);
	font-size: 15px;
	color: rgba(41, 44, 64, 0.5);
	pointer-events: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-transition: top 0.18s, font-size 0.18s;
	transition: top 0.18s, font-size 0.18s;
}

.floating-label .form-control:focus ~ span,
.floating-label .form-control:not(:placeholder-shown) ~ span {
	top: 4px;
	font-size: 12px;
}

/* dark variant (for use on dark backgrounds) */
.floating-label-dark .form-control {
	border-bottom-color: rgba(250, 234, 215, 0.3);
	color: #faeadf;
}

.floating-label-dark .form-control:focus {
	border-bottom-color: #faeadf;
}

.floating-label-dark span {
	color: rgba(250, 234, 215, 0.45);
}

.help-block {
	font-size: 12px;
	color: rgba(41, 44, 64, 0.5);
	display: block;
	margin-top: 4px;
}

.error-text {
	color: #c0392b;
	display: none;
	overflow-wrap: break-word;
	word-break: break-word;
}

.form-group.has-error .error-text {
	display: block;
}

.form-group.has-error .form-control {
	border-bottom-color: #c0392b;
}

/* ----------- /forms ----------- */


/* ----------- stat row ----------- */

.stat-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.stat-row .stat-item {
	text-align: center;
	padding: 0 48px;
}

.stat-row .stat-divider {
	width: 1.5px;
	height: 110px;
	background-color: #dff16d;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.stat-row .stat-number {
	font-family: 'Romie', 'FiraGO', Georgia, serif;
	font-style: italic;
	font-size: 120px;
	line-height: 1;
	color: #dff16d;
}

.stat-row .stat-label {
	font-family: 'Romie', 'FiraGO', Georgia, serif;
	font-size: 22px;
	color: #e6e9c7;
	margin-top: 6px;
}

@media (max-width: 991px) {
	.stat-row .stat-number { font-size: 80px; }
	.stat-row .stat-item { padding: 0 28px; }
}

@media (max-width: 575px) {
	.stat-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.stat-row .stat-divider { display: none; }
	.stat-row .stat-item { padding: 0; margin-bottom: 28px; }
	.stat-row .stat-number { font-size: 72px; }
}

/* ----------- /stat row ----------- */


/* ----------- meta block (key / value pair) ----------- */

.meta-block .meta-k {
	font-size: 11px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: rgba(250, 234, 215, 0.45);
	margin-bottom: 6px;
}

.meta-block .meta-v {
	font-family: 'Romie', 'FiraGO', Georgia, serif;
	font-style: italic;
	font-size: 22px;
	color: #faeadf;
}

/* dark-on-light variant — sits on cream / off-white backgrounds */
.meta-block-dark .meta-k { color: rgba(41, 44, 64, 0.55); }
.meta-block-dark .meta-v { color: #292c40; }

/* ----------- /meta block ----------- */


/* ----------- bordered card on dark bg ----------- */

.bordered-card-dark {
	border: 1px solid #faeadf;
	border-radius: 25px;
	padding: 45px;
	color: #faeadf;
}

@media (max-width: 575px) {
	.bordered-card-dark { padding: 28px; border-radius: 18px; }
}

/* ----------- /bordered card ----------- */


/* ----------- shared CTA popup form (events + members) ----------- */

.ed-cta-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow-y: auto;
	padding: 48px 20px;
}
.ed-cta-modal[hidden] { display: none; }
.ed-cta-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(17, 30, 6, 0.55);
}
.ed-cta-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 620px;
	margin: auto;
}
.ed-cta-modal-dialog .bordered-card-dark {
	background: var(--color-dark-green);
}
.ed-cta-modal-x {
	position: absolute;
	top: -14px;
	right: -6px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--color-accent);
	color: var(--color-dark-green);
	line-height: 1;
	cursor: pointer;
}
.ed-cta-modal-x svg {
	display: block;
}
@media (max-width: 575px) {
	.ed-cta-modal { padding: 24px 12px; }
	.ed-cta-modal-x {
		top: calc(6px + env(safe-area-inset-top));
		right: calc(6px + env(safe-area-inset-right));
	}
}

/* ----------- /shared CTA popup form ----------- */


/* ----------- logos slider ----------- */

.logos-slider-wrap {
	position: relative;
	overflow: hidden;
}

.logos-slider-wrap::before,
.logos-slider-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 140px;
	z-index: 2;
	pointer-events: none;
}

.logos-slider-wrap::before {
	left: 0;
	background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.logos-slider-wrap::after {
	right: 0;
	background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

/* dark bg variant */
.logos-slider-wrap.logos-slider-dark::before {
	background: linear-gradient(to right, #111e06 0%, rgba(17,30,6,0) 100%);
}

.logos-slider-wrap.logos-slider-dark::after {
	background: linear-gradient(to left, #111e06 0%, rgba(17,30,6,0) 100%);
}

/* navy bg variant */
.logos-slider-wrap.logos-slider-navy::before {
	background: linear-gradient(to right, #292c40 0%, rgba(41,44,64,0) 100%);
}

.logos-slider-wrap.logos-slider-navy::after {
	background: linear-gradient(to left, #292c40 0%, rgba(41,44,64,0) 100%);
}

/* cream bg variant */
.logos-slider-wrap.logos-slider-cream::before {
	background: linear-gradient(to right, #faeadf 0%, rgba(250,234,223,0) 100%);
}

.logos-slider-wrap.logos-slider-cream::after {
	background: linear-gradient(to left, #faeadf 0%, rgba(250,234,223,0) 100%);
}

/* marquee track */
.logos-marquee-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	-webkit-animation: logos-marquee 22s linear infinite;
	animation: logos-marquee 22s linear infinite;
}

.logos-marquee-track:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

.logos-marquee-track.logos-marquee-rtl {
	-webkit-animation-name: logos-marquee-rtl;
	animation-name: logos-marquee-rtl;
}

.logos-marquee-track .logo-item {
	padding: 10px 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.logos-marquee-track .logo-item img {
	height: 30px;
	width: auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: block;
}

@-webkit-keyframes logos-marquee {
	from { -webkit-transform: translateX(0); transform: translateX(0); }
	to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

@keyframes logos-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@-webkit-keyframes logos-marquee-rtl {
	from { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
	to   { -webkit-transform: translateX(0); transform: translateX(0); }
}

@keyframes logos-marquee-rtl {
	from { transform: translateX(-50%); }
	to   { transform: translateX(0); }
}

/* ----------- /logos slider ----------- */


/* ----------- logos grid (static) ----------- */

.logos-grid-wrap {
	position: relative;
	max-width: 1260px;
	margin: 0 auto;
}

.logos-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 100px 70px;
	align-items: center;
	justify-items: center;
}

.logo-grid-item {
	width: 100%;
	max-width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-grid-item img {
	width: 100%;
	height: auto;
	object-fit: contain;
	max-height: 80px;
	display: block;
}

@media (max-width: 1199px) {
	.logos-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 80px 60px;
	}
}

@media (max-width: 991px) {
	.logos-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 60px 50px;
	}
}

@media (max-width: 575px) {
	.logos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 30px;
	}

	.logo-grid-item {
		max-width: 150px;
	}

	.logo-grid-item img {
		max-height: 60px;
	}
}

/* ----------- /logos grid (static) ----------- */


/* ----------- event card ----------- */

.event-card {
	display: block;
	text-decoration: none;
}

.event-card:hover .event-card-img img {
	-webkit-transform: scale(1.04);
	transform: scale(1.04);
}

.event-card-img {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 20px;
}

.event-card-img img {
	width: 100%;
	height: 320px;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
}

.event-card-title {
	font-family: 'Romie', 'FiraGO', Georgia, serif;
	font-size: 40px;
	line-height: 1;
	color: #292c40;
	margin-bottom: 8px;
}

.event-card-date {
	font-size: 18px;
	color: #292c40;
	margin: 0;
}

/* ----------- /event card ----------- */


/* ----------- cta banner ----------- */

.cta-banner {
	background-color: #dff16d;
	border-radius: var(--radius-lg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 28px 40px;
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
}

.cta-banner-text {
	font-family: 'Romie', 'FiraGO', Georgia, serif;
	font-size: 30px;
	color: #292c40;
	margin: 0;
}

@media (max-width: 767px) {
	.cta-banner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		padding: 28px 24px;
	}

	.cta-banner-text {
		margin-bottom: 20px;
	}
}

/* split-background section that hosts a .cta-banner straddling two colors.
   pair with a variant class below to set the top/bottom colors. */
.cta-banner-split {
	padding: 50px 0;
}

.cta-banner-split-forest-cream {
	background: -webkit-linear-gradient(top, #111e06 0%, #111e06 50%, #faeadf 50%, #faeadf 100%);
	background: linear-gradient(to bottom, #111e06 0%, #111e06 50%, #faeadf 50%, #faeadf 100%);
}

.cta-banner-split-cream-forest {
	background: -webkit-linear-gradient(top, #faeadf 0%, #faeadf 50%, #111e06 50%, #111e06 100%);
	background: linear-gradient(to bottom, #faeadf 0%, #faeadf 50%, #111e06 50%, #111e06 100%);
}

.cta-banner-split-forest-navy {
	background: -webkit-linear-gradient(top, #111e06 0%, #111e06 50%, #292c40 50%, #292c40 100%);
	background: linear-gradient(to bottom, #111e06 0%, #111e06 50%, #292c40 50%, #292c40 100%);
}

.cta-banner-split-navy-forest {
	background: -webkit-linear-gradient(top, #292c40 0%, #292c40 50%, #111e06 50%, #111e06 100%);
	background: linear-gradient(to bottom, #292c40 0%, #292c40 50%, #111e06 50%, #111e06 100%);
}

/* ----------- /cta banner ----------- */


/* ----------- hero ----------- */

.sa-hero {
	position: relative;
	overflow: hidden;
}

.sa-hero-img {
	position: absolute;
	inset: 0;
	background-color: #292c40;
	background-size: cover;
	background-position: center;
}

.sa-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* .contact-hero-img — hero image rendered as an <img> tag directly (not a
   nested child), so it needs its own sizing/fit rules on top of .sa-hero-img. */
.contact-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sa-hero-overlay {
	position: absolute;
	inset: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.30)), to(rgba(1,1,1,0.75)));
	background: linear-gradient(rgba(0,0,0,0.30) 0%, rgba(1,1,1,0.75) 100%);
}

.sa-hero-content {
	position: relative;
	z-index: 2;
	padding: 80px var(--main-padding-x);
}

.sa-hero-content-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	height: 100%;
	padding-bottom: 60px;
}

@media (max-width: 575px) {
	.sa-hero-content { padding: 48px var(--main-padding-x); }
	.sa-hero-content-bottom { padding-bottom: 36px; }
}

/* ----------- /hero ----------- */


/* ----------- breadcrumb ----------- */
/* Two variants:
   .sa-breadcrumb            — light variant, sits on white/cream page bg
   .sa-breadcrumb-dark       — dark overlay variant, sits over a hero image
                               (combine with .sa-breadcrumb-overlay on the hero wrapper)
*/

.sa-breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	padding: 22px var(--main-padding-x) 0;
	font-family: 'Helvetica Neue LT GEO', Helvetica, Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: rgba(41, 44, 64, 0.55);
}

.sa-breadcrumb a {
	color: rgba(41, 44, 64, 0.55);
	text-decoration: none;
	-webkit-transition: color 0.15s ease;
	-o-transition: color 0.15s ease;
	transition: color 0.15s ease;
}

.sa-breadcrumb a:hover {
	color: #292c40;
}

.sa-breadcrumb .sep {
	opacity: 0.45;
}

.sa-breadcrumb .here {
	color: #292c40;
}

/* Dark / overlay variant — sits absolutely on top of a .sa-hero block.
   Markup:
     <section class="sa-hero sa-hero-with-breadcrumb">
       <nav class="sa-breadcrumb sa-breadcrumb-dark">…</nav>
       …hero content…
     </section>
*/
.sa-breadcrumb-dark {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	height: 40px;
	padding: 0 var(--main-padding-x);
	gap: 8px;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	font-size: 13px;
	letter-spacing: 0;
	text-transform: none;
	color: #faeadf;
}

.sa-breadcrumb-dark a {
	color: rgba(250, 234, 215, 0.5);
}

.sa-breadcrumb-dark a:hover {
	color: #faeadf;
}

.sa-breadcrumb-dark .sep {
	color: rgba(250, 234, 215, 0.5);
	opacity: 1;
}

.sa-breadcrumb-dark .here {
	color: #faeadf;
}

/* When the dark breadcrumb is used over a hero, push hero content down
   so the 40px overlay doesn't visually clip onto the title block. */
.sa-hero-with-breadcrumb {
	position: relative;
}
.sa-hero-with-breadcrumb .sa-hero-content,
.sa-hero-with-breadcrumb .et-hero-inner {
	padding-top: 80px;
}

@media (max-width: 575px) {
	.sa-breadcrumb-dark {
		height: 36px;
		font-size: 12px;
	}
}

/* ----------- /breadcrumb ----------- */


/* ----------- video block ----------- */

.video-embed {
	border-radius: var(--radius-lg);
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: rgba(255,255,255,0.06);
	position: relative;
}

.video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	z-index: 2;
}

.video-embed .video-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	transition: opacity 0.4s ease;
}

/* ----------- /video block ----------- */


/* ----------- membership icons row ----------- */

.membership-icons-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.membership-icons-row .icon-item {
	text-align: center;
	padding: 0 40px;
}

.membership-icons-row .icon-item .icon-wrap {
	height: 110px;
	margin: 0 auto 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.membership-icons-row .icon-item .icon-wrap img,
.membership-icons-row .icon-item .icon-wrap svg {
	max-height: 100%;
	width: auto;
	display: block;
}

.membership-icons-row .icon-item .icon-label {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	display: block;
}

@media (max-width: 575px) {
	.membership-icons-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.membership-icons-row .icon-item {
		margin-bottom: 28px;
		padding: 0;
	}
}

/* ----------- /membership icons row ----------- */


/* ==================== 5. content by pages ==================== */

/* ----------- homepage ----------- */

.home-hero {
	min-height: 484px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 991px) {
	.home-hero { min-height: 360px; }
}

@media (max-width: 575px) {
	.home-hero { min-height: 300px; }
}

/* ----------- members page ----------- */

.members-hero {
	position: relative;
	padding: 80px var(--main-padding-x);
	text-align: center;
}

.members-hero .members-hero-title {
	max-width: 800px;
	margin: 0 auto;
}

.members-hero .members-hero-title em {
	font-style: italic;
}

.members-hero-breadcrumb {
	position: absolute;
	top: 20px;
	left: 40px;
	background: rgba(0, 0, 0, 0.5);
	padding: 10px 20px;
	border-radius: 4px;
	backdrop-filter: blur(10px);
}

.members-intro {
	position: relative;
	padding: 120px 40px;
	min-height: 420px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.members-intro-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.members-intro-overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 30, 6, 0.5);
}
.members-intro-text-wrap {
	position: relative;
	z-index: 1;
}
.members-intro-text {
	margin: 0;
	max-width: 553px;
	font-family: 'Helvetica Neue LT GEO', sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}

/* members grid — category sections */
.members-category-section {
	padding-top: 40px;
}

.members-category-title {
	margin-bottom: 80px;
}

/* ----------- events page ----------- */

.events-hero {
	background-color: #111e06;
	padding: 80px var(--main-padding-x) 60px;
}

/* ----------- about page ----------- */

/* CMS "Html" block always wraps content in a Bootstrap .container (see
   63bits-page-builder/js/page-builder.js sections.html.template) — its
   "Content Size" option has no effect on this block type. Break that specific
   container out to full width so the hero/mission/board full-bleed bands work. */
.container:has(.about-page) {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.about-page .about-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
	background-color: #292c40;
	overflow: hidden;
}
.about-page .about-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.about-page .about-hero::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(1,1,1,0.75) 100%);
}
.about-page .about-hero-inner {
	position: relative; z-index: 2;
	padding: 0 80px 72px;
	max-width: 1240px;
}
.about-page .about-hero-title {
	font-family: 'Romie', 'FiraGO', Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: 72px;
	line-height: 1.05;
	color: #faeadf;
	margin: 0;
}

.about-page .about-section {
	padding: 80px var(--main-padding-x);
}
.about-page .about-h {
	font-family: 'Romie', 'FiraGO', Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: 44px;
	line-height: 1.1;
	margin: 0 0 32px;
}

/* about us — cream, image + text */
.about-page .about-intro { background-color: #faeadf; }
.about-page .about-intro .about-h { color: #292c40; }
.about-page .about-intro-grid {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 64px;
	align-items: center;
}
.about-page .about-intro-img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	display: block;
}
.about-page .about-intro-body p {
	font-size: 18px;
	line-height: 1.5;
	color: #292c40;
	margin: 0 0 20px;
}
.about-page .about-intro-body p:last-child { margin-bottom: 0; }

/* mission — navy */
.about-page .about-mission { background-color: #292c40; }
.about-page .about-mission .about-h { color: #fbfed5; text-align: center; max-width: 760px; margin: 0 auto 32px; }
.about-page .about-mission-body {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}
.about-page .about-mission-body p {
	font-size: 18px;
	line-height: 1.5;
	color: rgba(251, 254, 213, 0.85);
	margin: 0 0 20px;
}
.about-page .about-mission-body p:last-child { margin-bottom: 0; }

/* board members — forest, same design as speaker cards */
.about-page .about-board { background-color: #faeadf; color: #292c40; }
.about-page .about-board .about-h { color: #292c40; text-align: center; margin: 0 auto 50px; }
.about-page .about-board-grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px 40px;
}
.about-page .board-card { display: block; text-decoration: none; }
.about-page .board-card-namerow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}
.about-page .board-card-img {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 20px;
}
.about-page .board-card-img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.4s ease;
	aspect-ratio: 65 / 40;
}
/* .board-card wrapper doesn't survive the CMS's HTML sanitizer (see comment above
   .about-board-grid), so hover targets .board-card-img directly instead of a card wrapper. */
.about-page .board-card:hover .board-card-img img,
.about-page .board-card-img:hover img { filter: grayscale(0%); }
.about-page .board-card-name {
	font-family: 'Romie', 'FiraGO', Georgia, serif;
	font-size: 26px;
	line-height: 1.1;
	color: #292c40;
	margin: 0;
}
.about-page .board-card-title {
	font-size: 16px;
	color: #292c40;
	opacity: 0.8;
	margin: 0;
}
.about-page .board-card-info {
	font-size: 12px;
	line-height: 1.5;
	color: #292c40;
	opacity: 0.7;
	margin: 8px 0 0;
	text-align: justify;
}
.about-page .board-card-linkedin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	top: 5px;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	color: #292c40;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}
.about-page .board-card-linkedin:hover {
	opacity: 1;
}
.about-page .board-card-linkedin svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media (max-width: 991px) {
	.about-page .about-hero-title { font-size: 48px; }
	.about-page .about-hero-inner { padding: 0 var(--main-padding-x) 56px; }
	.about-page .about-section { padding: 56px var(--main-padding-x); }
	.about-page .about-h { font-size: 32px; }
	.about-page .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
	.about-page .about-intro-img { height: 280px; }
	.about-page .about-board-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
	.about-page .about-hero-title { font-size: 36px; }
	.about-page .about-board-grid { grid-template-columns: 1fr; }
	.about-page .board-card-img img { height: 360px; }
}

/* ----------- /about page ----------- */

/* ----------- 404 page ----------- */

.sa-error-page {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: calc(100vh - var(--app-header-height) - 300px);
	padding: 80px var(--main-padding-x);
	text-align: center;
}

.sa-error-page-inner {
	max-width: 540px;
	width: 100%;
}

.sa-error-page-code {
	font-family: 'Romie', 'FiraGO', Georgia, serif;
	font-size: 140px;
	line-height: 1;
	color: #dff16d;
	margin-bottom: 24px;
}

.sa-error-page-title {
	font-family: 'Romie', 'FiraGO', Georgia, serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.1;
	color: #292c40;
	margin: 0 0 16px;
}

.sa-error-page-message {
	font-size: 18px;
	color: #555;
	line-height: 1.5;
	margin: 0 0 8px;
}

.sa-error-page-sub {
	font-size: 15px;
	color: #888;
	line-height: 1.5;
	margin: 0 0 40px;
}

@media (max-width: 575px) {
	.sa-error-page-code  { font-size: 100px; }
	.sa-error-page-title { font-size: 28px; }
}

/* ----------- /404 page ----------- */

/* ----------- /content by pages ----------- */




/* ----------- button variants (extended) ----------- */

.btn-sa-lavender {
	background-color: #a9c0fc;
	color: #292c40;
}

.btn-sa-lavender:hover {
	color: #292c40;
}

.btn-sa-lime {
	background-color: #dff16d;
	color: #111e06;
}

.btn-sa-lime:hover {
	color: #111e06;
}

/* ----------- /button variants (extended) ----------- */


/* ----------- image utilities ----------- */

.img-invert {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

/* ----------- /image utilities ----------- */


/* ----------- app-bottom-bar ----------- */

.app-bottom-bar {
	height: var(--app-bottom-bar-height);
}

/* ----------- /app-bottom-bar ----------- */
