:root {
	--bg: #030d20;
	--panel: #081a37;
	--panel-2: #07172f;
	--line: rgba(116, 162, 255, 0.18);
	--soft-line: rgba(255, 255, 255, 0.08);
	--text: #ffffff;
	--muted: #95a8c8;
	--blue: #1e6bff;
	--blue-2: #11a2ff;
	--yellow: #f8b400;
	--cyan: #0fe2ff;
	--red: #ff4545;
	--green: #26e18f;
	--purple: #cf52ff;
	--gold: #ffc31f;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	background: #010816;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	font-family: "Barlow", sans-serif;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: .45;
}

a {
	color: inherit;
}

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


.site-shell {
	position: relative;
	z-index: 1;
}

.topbar,
.page,
.footer,
.copyright,
.content-wrap {
	width: min(1320px, calc(100% - 32px));
	margin: 0 auto;
}

.topbar {
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 0 10px;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
	background: linear-gradient(180deg, rgba(3, 11, 27, .98) 0%, rgba(4, 12, 28, .96) 100%);
}
.panel-head {
		justify-content: space-between;
}
.topbar-left,
.topbar-right,
.brand,
.nav,
.hero-actions,
.legend,
.slider-head,
.panel-head,
.socials,
.subscribe-row,
.card-actions,
.pagination-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbar-left {
	gap: 28px;
}

.brand {
	gap: 9px;
	flex: 0 0 auto;
	text-decoration: none;
}

.brand-logo .custom-logo-link {
	display: inline-flex;
}

.brand-logo img {
	max-height: 42px;
	width: auto;
}

.brand-mark {
	width: 40px;
	height: 25px;
	position: relative;
	display: inline-block;
}

.brand-mark::before,
.brand-mark::after {
	content: "";
	position: absolute;
	inset: 0;
	clip-path: polygon(0 42%, 55% 0, 40% 42%, 100% 18%, 58% 70%, 62% 44%, 10% 100%, 28% 54%);
	background: linear-gradient(135deg, #ffffff 0%, #2d8fff 75%);
	filter: drop-shadow(0 0 10px rgba(45, 143, 255, .4));
}

.brand-mark::after {
	transform: scaleX(-1) translateX(-1px);
	opacity: .95;
}

.brand-text {
	line-height: .95;
}

.brand-title {
	display: block;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
	white-space: nowrap;
}

.brand-title span {
	color: #2d8fff;
}

.brand-sub {
	display: block;
	margin-top: 2px;
	font-size: 4.6px;
	letter-spacing: .34em;
	color: #ffffff;
	text-transform: uppercase;
	white-space: nowrap;
}

.nav {
	gap: 26px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .01em;
}

.nav a {
	text-decoration: none;
	opacity: .92;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.nav a small::before {
	content: "\25BE";
	font-size: 7px;
	line-height: 1;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .03);
	border-radius: 6px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: #fff;
	margin: 4px auto;
}

.topbar-right {
	gap: 8px;
	flex: 0 0 auto;
}

.icon-btn,
.login-btn,
.join-btn,
.btn,
.search-btn,
.subscribe-row button,
.view-link,
.wp-block-button__link {
	border: 1px solid rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .03);
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
}

.icon-btn,
.login-btn,
.join-btn {
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.icon-btn {
	width: 40px;
}

.badge {
	position: absolute;
	top: -4px;
	right: -3px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	font-size: 7px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
}

.login-btn,
.join-btn {
	padding: 0 15px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	white-space: nowrap;
}

.join-btn {
	background: linear-gradient(90deg, #145cf8, #1f7dff);
	border-color: transparent;
	gap: 6px;
	padding: 0 16px;
	min-width: 114px;
	box-shadow: 0 8px 20px rgba(20, 92, 248, .22);
}

.page {
	padding: 0 0 24px;
}

.hero {
	padding: 0;
	background:
		linear-gradient(90deg, rgba(3, 9, 22, .98) 0%, rgba(3, 9, 22, .82) 25%, rgba(3, 9, 22, .34) 48%, rgba(3, 9, 22, .18) 68%, rgba(3, 9, 22, .52) 100%),
		url("../images/7008c18f-229e-47a7-84f8-1cdd17cc347b.png") 100% 50%/1030px auto no-repeat,
		linear-gradient(0deg, #041229 0%, #081a38 0%);
}

.hero-shell {
	position: relative;
	min-height: 360px;
	border-radius: 0 0 14px 14px;
	overflow: hidden;
}

.hero-shell::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 42% 48%, rgba(5, 30, 62, .92), transparent 8%),
		radial-gradient(circle at 73% 30%, rgba(30, 153, 255, .38), transparent 15%),
		radial-gradient(circle at 82% 50%, rgba(11, 126, 255, .16), transparent 22%),
		linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .2));
	mix-blend-mode: screen;
}

.hero-copy,
.map-labels,
.legend {
	position: relative;
	z-index: 1;
}

.hero-copy {
	padding: 28px 32px 24px;
	width: min(760px, 100%);
}

h1,
.entry-title {
	margin: 0;
	font-size: clamp(36px, 5vw, 62px);
	line-height: .94;
	letter-spacing: -.02em;
	font-weight: 800;
}

h1 {
	max-width: 520px;
}

h1 .accent,
h1 span {
	color: var(--blue);
}

.hero-copy p {
	max-width: 340px;
	margin: 10px 0 13px;
	font-size: 15px;
	line-height: 1.22;
	color: rgba(255, 255, 255, .95);
}

.hero-points {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	max-width: 620px;
}

.point {
	padding-right: 8px;
	border-right: 1px solid rgba(255, 255, 255, .12);
}

.point:last-child {
	border-right: 0;
}

.point svg {
    width: 24px;
    height: 24px;
    color: #1f77ff;
    margin-bottom: 5px;
}


.point strong,
.person-chip strong,
.testimonial strong,
.blog-item strong,
.event-copy strong,
.business-copy strong {
	display: block;
}

.point strong {
	font-size: 14px;
	margin-bottom: 3px;
}

.point span {
	display: block;
	font-size: 14px;
	line-height: 1.15;
	color: #d0dbef;
}

.hero-actions {
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.btn,
.search-btn,
.subscribe-row button,
.wp-block-button__link {
	height: 46px;
	padding: 0 16px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn.primary,
.search-btn,
.subscribe-row button,
.wp-block-button__link {
	background: linear-gradient(90deg, #125df7, #237bff);
	border-color: transparent;
	box-shadow: 0 8px 18px rgba(18, 93, 247, .34);
}

.map-labels {
	position: absolute;
	inset: 0;
	/* Decorative map labels cover the hero; do not let them block its actions. */
	pointer-events: none;
}

.map-labels-overlay {
	width: 102px;
	height: 100%;
	background-color: rgba(10, 20, 34, .95);
	right: -30px;
	position: absolute;
	filter: blur(19px);
}

.person-chip {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 8px 5px 6px;
	border-radius: 10px;
	background: rgba(10, 18, 35, .76);
	border: 1px solid rgba(255, 255, 255, .08);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.person-chip img,
.testimonial img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, .22);
}

.person-chip img {
	width: 24px;
	height: 24px;
	border-width: 1px;
}

.person-chip strong {
	font-size: 11px;
	line-height: 1;
}

.person-chip span {
	display: block;
	margin-top: 2px;
	font-size: 9px;
	color: #c0cde3;
}

.label-michael {
	top: 34px;
	left: 550px;
}

.label-sophie {
	top: 14px;
	right: 410px;
}

.label-ahmad {
	top: 65px;
	right: 300px;
}

.label-james {
	top: 30px;
	right: 110px;
}

.legend {
	position: absolute;
	right: 20px;
	bottom: 16px;
	gap: 16px;
	font-size: 11px;
	flex-wrap: wrap;
}

.legend-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #dde5f6;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.legend-crown {
	color: var(--gold);
}

.c-blue {
	color: #1f77ff;
}

.c-yellow {
	color: #f4b101;
}

.c-red {
	color: #ff404b;
}

.c-cyan {
	color: #18dbf6;
}

.c-green {
	color: #26e18f;
}

.c-purple {
	color: #cf52ff;
}

.c-gold {
	color: #ffc31f;
}

.c-blue-bg {
	background: #1f77ff;
}

.c-yellow-bg {
	background: #ffc31f;
}

.c-red-bg {
	background: #ff5d58;
}

.search-stats,
.feature-grid,
.testimonial-grid,
.info-grid {
	display: grid;
	gap: 12px;
	padding: 0 18px;
}

.search-stats {
	margin-top: 0;
	transform: translateY(-2px);
}

.card,
.content-card {
	background: linear-gradient(180deg, rgba(10, 28, 56, .92), rgba(8, 24, 49, .96));
	border: 1px solid var(--line);
	border-radius: 6px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
}

.search-box {
	padding: 10px 12px 12px;
}

.search-row {
	display: grid;
	grid-template-columns: 1.65fr .66fr .66fr .38fr;
	gap: 8px;
}

.field {
	height: 46px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(2, 10, 23, .38);
	display: flex;
	align-items: center;
	padding: 0 12px;
	font-size: 12px;
	color: #8ea6cb;
}

.field-input input {
	width: 100%;
	background: transparent;
	border: 0;
	color: #fff;
	font: inherit;
	outline: 0;
}

.field svg {
	margin-right: 8px;
	flex: 0 0 auto;
}

.field.select {
	justify-content: space-between;
}

.search-btn {
	height: 46px;
	justify-content: center;
}

.stats-box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0 10px;
}

.stat,
.mini-stat {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 16px 10px;
}

.stat:not(:last-child),
.stat:not(:first-child),
.mini-stat:not(:first-child) {
	border-left: 1px solid rgba(255, 255, 255, .1);
}


.stat strong,
.mini-stat strong {
	font-size: 17px;
	font-weight: 700;
}

.stat span,
.mini-stat span {
	display: block;
	font-size: 12px;
	color: #d4dff0;
}

.membership {
	padding: 10px 28px 0;
}

.section-heading {
	position: relative;
	text-align: center;
	margin: 0 0 -2px;
	font-size: 27px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .24em;
	color: #ffffff;
	padding: 30px 0;
}

.section-heading::before,
.section-heading::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 33%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #1362ff 34%, transparent);
}

.section-heading::before {
	left: 0;
}

.section-heading::after {
	right: 0;
	transform: scaleX(-1);
}

.membership-grid {
	display: grid;
	gap: 12px;
}

.membership-grid-1 {
	grid-template-columns: repeat(1, 1fr);
}
.membership-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}
.membership-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}
.membership-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}
.membership-grid-5,
.membership-grid-five {
	grid-template-columns: repeat(5, 1fr);
}


.member-card {
	min-height: 96px;
	padding: 14px 16px 12px;
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 14px;
}

.member-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid currentColor;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.member-card h3,
.panel-head h3,
.feature-card h3,
.community-intro h3,
.footer-col h4 {
	margin: 0 0 6px;
	font-size: 14px;
	text-transform: uppercase;
}

.member-card p,
.feature-card p,
.community-intro p,
.testimonial p,
.footer-brand p,
.footer-col p,
.entry-content,
.archive-description {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.35;
	color: #cad5e7;
}

.member-card a,
.feature-card a,
.panel-head a,
.view-link {
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	color: currentColor;
	text-transform: uppercase;
}

.community {
	margin: 30px 30px 0;
	padding: 12px 16px;
	display: grid;
	grid-template-columns: 1.6fr repeat(6, 1fr);
	align-items: center;
}

.community-intro p {
	max-width: 280px;
}

.feature-grid {
	padding: 30px 30px 0;
	grid-template-columns: repeat(4, 1fr);
}

.feature-card {
	position: relative;
	min-height: 132px;
	padding: 14px 18px;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 11, 24, .88) 0%, rgba(4, 11, 24, .48) 48%, rgba(4, 11, 24, .72) 100%),
		url("../images/01.png") center/cover no-repeat;
	opacity: .88;
}

.feature-card>* {
	position: relative;
	z-index: 1;
}

.feature-card-1::before {
	background-position: 5% 72%;
}

.feature-card-2::before {
	background-position: 56% 22%;
}

.feature-card-3::before {
	background-position: 70% 50%;
}

.feature-card-4::before {
	background-position: 87% 72%;
}

.testimonials {
	padding: 30px 30px 0;
}

.slider-head {
	justify-content: center;
	position: relative;
	margin-bottom: 8px;
}

.slider-head h2 {
	margin: 0;
	font-size: 27px;
	text-transform: uppercase;
	letter-spacing: .2em;
	padding-bottom: 18px;
}

.testimonial-grid {
	padding: 0;
	grid-template-columns: repeat(3, 1fr);
}

.testimonial {
	padding: 14px 18px;
	min-height: 82px;
	display: grid;
	grid-template-columns: 68px 1fr;
	align-items: center;
	gap: 12px;
}

.role {
	font-size: 12px;
	font-weight: 700;
}

.stars {
	color: #ffc218;
	letter-spacing: .14em;
	font-size: 11px;
}

.info-grid {
	padding: 30px 30px 0;
	grid-template-columns: 1fr 1fr 1.08fr;
	gap: 18px;
}

.blog-card,
.events-card,
.business-card {
	padding: 10px 12px;
}

.blog-list,
.event-list,
.business-list {
	display: grid;
	gap: 8px;
}

.blog-item,
.event-item,
.business-item {
	display: grid;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, .06);
	padding-top: 8px;
}

.blog-item {
	grid-template-columns: 92px 1fr;
	gap: 12px;
}

.blog-thumb img {
	display: block;
	width: 92px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
}

.blog-meta,
.event-copy span,
.business-copy span,
.entry-meta {
	font-size: 12px;
	color: #8ea6cb;
}

.event-item {
	grid-template-columns: 54px 1fr auto;
	gap: 12px;
}

.date-box {
	display: grid;
	place-items: center;
	width: 54px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 6px;
	padding: 6px 0;
}

.date-box b {
	font-size: 11px;
	color: var(--blue);
}

.date-box em {
	font-style: normal;
	font-size: 24px;
	font-weight: 700;
}

.tag {
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
}

.tag.blue {
	background: rgba(30, 107, 255, .16);
	color: #63a5ff;
}

.tag.yellow {
	background: rgba(248, 180, 0, .14);
	color: #ffcf57;
}

.business-item {
	grid-template-columns: 74px 1fr auto;
	gap: 12px;
}

.logo-box {
	width: 74px;
	min-height: 48px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	background: rgba(255, 255, 255, .04);
}

.view-link {
	color: var(--blue);
}

.page-footer {
	padding: 20px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr) 1.3fr;
	gap: 24px;
	padding: 24px 0;
}

.footer-brand .brand {
	margin-bottom: 14px;
}

.footer-col a {
	display: block;
	text-decoration: none;
	color: #d8e2f1;
	font-size: 13px;
	margin-bottom: 6px;
}

.socials {
	gap: 8px;
}

.socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .12);
	text-decoration: none;
	font-size: 11px;
}

.subscribe-row {
	gap: 8px;
	align-items: stretch;
}

.subscribe-row input {
	width: 100%;
	min-height: 42px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, .1);
	background: rgba(255, 255, 255, .04);
	color: #fff;
	padding: 0 12px;
}

.subscribe-row button {
	height: 42px;
}

.aeroaddicts-mailpoet-form .mailpoet_form {
	/* display: flex;
	gap: 8px;
	align-items: stretch; */
}

.aeroaddicts-mailpoet-form .mailpoet_paragraph {
	margin: 0;
	flex: 1 1 auto;
}

.aeroaddicts-mailpoet-form .mailpoet_paragraph:last-child {
	flex: 0 0 auto;
}

.aeroaddicts-mailpoet-form input[type="email"],
.aeroaddicts-mailpoet-form input[type="text"] {
	width: 100%;
	min-height: 42px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 4px;
	background: rgba(255, 255, 255, .04);
	color: #fff;
	padding: 0 12px;
}

.aeroaddicts-mailpoet-form input[type="submit"],
.aeroaddicts-mailpoet-form button[type="submit"] {
	min-height: 42px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(90deg, #125df7, #237bff);
	color: #fff;
	padding: 0 14px;
	font: inherit;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}

.newsletter-setup-notice {
	color: #8ea6cb;
	font-size: 12px;
}

.aeroaddicts-mailpoet-form [id^="mailpoet_form_"] {
	width: 100% !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: inherit !important;
}

.aeroaddicts-mailpoet-form .mailpoet_spacer,
.aeroaddicts-mailpoet-form .mailpoet_divider {
	display: none !important;
}

.aeroaddicts-mailpoet-form .mailpoet_form_columns {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.aeroaddicts-mailpoet-form .mailpoet_form_column,
.aeroaddicts-mailpoet-form .mailpoet_form_column:not(:first-child) {
	margin-left: 0 !important;
	padding: 0 !important;
}

.aeroaddicts-mailpoet-form .subscribe-row > .mailpoet_form_column {
	flex: 1 1 100% !important;
}

.aeroaddicts-mailpoet-form .mailpoet_form_columns:not(.subscribe-row) > .mailpoet_form_column {
	flex: 1 1 0 !important;
}

.aeroaddicts-mailpoet-form .mailpoet_paragraph {
	margin: 0 !important;
	line-height: normal !important;
}

.aeroaddicts-mailpoet-form .mailpoet_text,
.aeroaddicts-mailpoet-form input.mailpoet_text {
	width: 100% !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: 4px !important;
	background: rgba(255, 255, 255, .05) !important;
	color: #fff !important;
	font: inherit !important;
	line-height: 1.2 !important;
}

.aeroaddicts-mailpoet-form .mailpoet_submit,
.aeroaddicts-mailpoet-form input.mailpoet_submit {
	width: 100% !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border: 0 !important;
	border-radius: 4px !important;
	background: linear-gradient(90deg, #125df7, #237bff) !important;
	color: #fff !important;
	font: inherit !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-transform: uppercase;
}

.aeroaddicts-mailpoet-form .mailpoet_message {
	padding: 8px 0 0 !important;
	color: #cad5e7;
}

@media (max-width: 560px) {
	.aeroaddicts-mailpoet-form .mailpoet_form_columns:not(.subscribe-row) {
		flex-direction: column;
	}
}

.copyright {
	text-align: center;
	font-size: 12px;
	color: #8ea6cb;
}

.content-wrap {
	padding: 32px 0 60px;
	display: grid;
	gap: 18px;
}

.content-card {
	padding: 24px;
}

.entry-title a {
	text-decoration: none;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1200px) {
	.membership-grid-five {
		grid-template-columns: repeat(3, 1fr);
	}

	.community {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.community-intro {
		grid-column: 1 / -1;
	}

	.info-grid,
	.footer {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.topbar {
		flex-wrap: wrap;
		padding: 14px 10px;
	}

	.topbar-left,
	.topbar-right {
		width: 100%;
		justify-content: space-between;
	}

	.menu-toggle {
		display: inline-block;
	}

	.nav {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 14px 0 6px;
	}

	.nav-open .nav {
		display: flex;
	}

	.hero {
		background-position: center right;
		background-size: cover;
	}

	.map-labels {
		display: none;
	}

	.hero-copy,
	.hero-copy p {
		max-width: none;
		width: 100%;
	}

	.hero-points {
		flex-direction: column;
	}

	.point {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .12);
		padding-bottom: 10px;
	}

	.search-row,
	.stats-box,
	.membership-grid,
	.feature-grid,
	.testimonial-grid,
	.info-grid,
	.footer {
		grid-template-columns: 1fr;
	}

	.section-heading::before,
	.section-heading::after {
		display: none;
	}

	.community {
		grid-template-columns: 1fr;
		margin: 18px;
	}

	.stat:not(:last-child),
	.mini-stat:not(:first-child) {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, .1);
	}

	.blog-item,
	.event-item,
	.business-item {
		grid-template-columns: 1fr;
	}
}
/*----New CSS---*/
.blog-item a {
    font-size: 14px;
    text-decoration: none;
}

.card.search-box{
	display: none;
}

/* Blog archive */
body.blog .content-wrap {
	width: min(1180px, calc(100% - 32px));
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	padding: 42px 0 72px;
}

body.blog .content-card {
	position: relative;
	min-height: 280px;
	padding: 30px 32px 28px;
	overflow: hidden;
	border: 1px solid rgba(116, 162, 255, 0.22);
	border-radius: 14px;
	background:
		radial-gradient(circle at 100% 0%, rgba(30, 107, 255, 0.13), transparent 34%),
		linear-gradient(145deg, #0b2344 0%, #071a35 100%);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.blog .content-card::after {
	content: "";
	position: absolute;
	right: -52px;
	top: -62px;
	width: 170px;
	height: 170px;
	border: 1px solid rgba(83, 162, 255, 0.14);
	border-radius: 50%;
	box-shadow: 0 0 0 16px rgba(83, 162, 255, 0.035), 0 0 0 32px rgba(83, 162, 255, 0.025);
	pointer-events: none;
}

body.blog .content-card:hover {
	transform: translateY(-3px);
	border-color: rgba(83, 162, 255, 0.5);
	box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

body.blog .content-card:first-child {
	grid-column: 1 / -1;
	min-height: 330px;
	padding: 38px 40px 32px;
	background:
		linear-gradient(90deg, rgba(8, 24, 49, .98) 0%, rgba(8, 24, 49, .82) 56%, rgba(12, 54, 98, .72) 100%),
		radial-gradient(circle at 92% 40%, rgba(30, 107, 255, .28), transparent 35%),
		#0b2344;
}

body.blog .content-card .entry-title {
	position: relative;
	z-index: 1;
	max-width: 100%;
	margin: 0 0 10px;
	font-size: clamp(30px, 4vw, 52px);
	line-height: .98;
	letter-spacing: -.025em;
}

body.blog .content-card:not(:first-child) .entry-title {
	font-size: clamp(27px, 3vw, 38px);
	line-height: 1;
}

body.blog .content-card .entry-title a {
	text-decoration: none;
	transition: color .2s ease;
}

body.blog .content-card .entry-title a:hover {
	color: #72b7ff;
}

body.blog .content-card .entry-meta {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	margin-bottom: 18px;
	padding: 5px 9px;
	border: 1px solid rgba(83, 162, 255, 0.24);
	border-radius: 999px;
	background: rgba(30, 107, 255, 0.1);
	color: #8fc2ff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

body.blog .content-card .entry-content {
	position: relative;
	z-index: 1;
	max-width: 960px;
	margin: 0;
	color: #c0d0e8;
	font-size: 16px;
	line-height: 1.55;
}

body.blog .content-card:not(:first-child) .entry-content {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

body.blog .pagination-wrap {
	grid-column: 1 / -1;
	justify-content: center;
	padding-top: 10px;
}

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

body.blog .pagination-wrap a,
body.blog .pagination-wrap span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 11px;
	border: 1px solid rgba(116, 162, 255, 0.22);
	border-radius: 8px;
	background: rgba(8, 26, 55, .82);
	color: #c8d7ec;
	font-size: 13px;
	text-decoration: none;
}

body.blog .pagination-wrap .current,
body.blog .pagination-wrap a:hover {
	border-color: #1e6bff;
	background: #1e6bff;
	color: #ffffff;
}

@media (max-width: 700px) {
	body.blog .content-wrap {
	grid-template-columns: 1fr;
	padding-top: 26px;
	}

	body.blog .content-card,
	body.blog .content-card:first-child {
	grid-column: auto;
	min-height: 0;
	padding: 25px 22px 24px;
	}

	body.blog .content-card .entry-title,
	body.blog .content-card:not(:first-child) .entry-title {
	font-size: 32px;
	}
}

/* Full-width single-post canvas for editor layouts and multi-column blocks */
body.single-post .content-wrap {
	width: min(1320px, calc(100% - 32px));
	max-width: 1320px;
	padding: 42px 20px 72px;
}

body.single-post .content-card {
	width: 100%;
	max-width: none;
	padding: 52px clamp(28px, 5vw, 76px) 68px;
}

body.single-post .content-card .entry-content {
	width: 100%;
	max-width: none;
}

body.single-post .content-card .entry-content > p,
body.single-post .content-card .entry-content > h2,
body.single-post .content-card .entry-content > h3,
body.single-post .content-card .entry-content > h4,
body.single-post .content-card .entry-content > ul,
body.single-post .content-card .entry-content > ol,
body.single-post .content-card .entry-content > blockquote,
body.single-post .content-card .entry-content > figure {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

body.single-post .content-card .entry-content > .wp-block-columns {
	display: flex;
	align-items: stretch;
	gap: clamp(18px, 3vw, 36px);
	width: 100%;
	max-width: 1200px;
	margin: 38px auto;
}

body.single-post .content-card .entry-content > .wp-block-columns .wp-block-column {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	padding: 26px;
	border: 1px solid rgba(116, 162, 255, 0.18);
	border-radius: 12px;
	background: rgba(8, 26, 55, 0.56);
}

body.single-post .content-card .entry-content > .wp-block-columns .wp-block-column > *:first-child {
	margin-top: 0;
}

body.single-post .content-card .entry-content > .wp-block-columns .wp-block-column > *:last-child {
	margin-bottom: 0;
}

body.single-post .content-card .entry-content > .wp-block-group,
body.single-post .content-card .entry-content > .wp-block-cover,
body.single-post .content-card .entry-content > .wp-block-table,
body.single-post .content-card .entry-content > .wp-block-image {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 700px) {
	body.single-post .content-wrap {
	padding: 24px 12px 52px;
	}

	body.single-post .content-card {
	padding: 32px 20px 42px;
	}

	body.single-post .content-card .entry-content > .wp-block-columns {
	gap: 16px;
	margin: 28px auto;
	flex-direction: column;
	}

	body.single-post .content-card .entry-content > .wp-block-columns .wp-block-column {
	padding: 20px;
	}
}

/* Single post reading layout */
body.single-post .content-wrap {
	width: min(980px, calc(100% - 32px));
	padding: 54px 0 78px;
	gap: 0;
}

body.single-post .content-card {
	position: relative;
	padding: 52px 68px 64px;
	overflow: hidden;
	border: 1px solid rgba(116, 162, 255, 0.24);
	border-radius: 16px;
	background:
		radial-gradient(circle at 100% 0%, rgba(30, 107, 255, 0.16), transparent 30%),
		linear-gradient(145deg, #0b2344 0%, #071a35 100%);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

body.single-post .content-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(83, 162, 255, 0.72), transparent);
}

body.single-post .content-card .entry-title {
	position: relative;
	z-index: 1;
	max-width: none;
	margin: 0 0 16px;
	font-size: clamp(42px, 6vw, 72px);
	line-height: .98;
	letter-spacing: -.035em;
}

body.single-post .content-card .entry-meta {
	display: inline-flex;
	margin-bottom: 34px;
	padding: 6px 10px;
	border: 1px solid rgba(83, 162, 255, 0.26);
	border-radius: 999px;
	background: rgba(30, 107, 255, 0.1);
	color: #8fc2ff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

body.single-post .content-card .entry-content {
	max-width: 760px;
	margin: 0 auto;
	color: #cfdaeb;
	font-size: 17px;
	line-height: 1.75;
}

body.single-post .content-card .entry-content > * {
	margin-top: 0;
	margin-bottom: 24px;
}

body.single-post .content-card .entry-content p:first-child {
	color: #e4ebf7;
	font-size: 19px;
	line-height: 1.65;
}

body.single-post .content-card .entry-content h2,
body.single-post .content-card .entry-content h3 {
	margin-top: 48px;
	margin-bottom: 16px;
	color: #ffffff;
	letter-spacing: -.015em;
}

body.single-post .content-card .entry-content h2 {
	padding-top: 22px;
	border-top: 1px solid rgba(116, 162, 255, 0.18);
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.08;
}

body.single-post .content-card .entry-content h3 {
	color: #8fc2ff;
	font-size: 21px;
}

body.single-post .content-card .entry-content a {
	color: #73b5ff;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

body.single-post .content-card .entry-content ul,
body.single-post .content-card .entry-content ol {
	padding-left: 26px;
}

body.single-post .content-card .entry-content li {
	margin-bottom: 10px;
	padding-left: 5px;
}

body.single-post .content-card .entry-content blockquote {
	margin: 32px 0;
	padding: 18px 24px;
	border-left: 3px solid #1e6bff;
	background: rgba(30, 107, 255, 0.08);
	color: #dbe7f8;
	font-size: 19px;
}

body.single-post .content-card .entry-content img {
	display: block;
	width: 100%;
	height: auto;
	margin: 32px 0;
	border: 1px solid rgba(116, 162, 255, 0.2);
	border-radius: 10px;
}

body.single-post .content-card .entry-content figure {
	margin: 34px 0;
}

body.single-post .content-card .entry-content figcaption {
	margin-top: 8px;
	color: #8ea6cb;
	font-size: 13px;
	text-align: center;
}

@media (max-width: 700px) {
	body.single-post .content-wrap {
	padding: 28px 0 54px;
	}

	body.single-post .content-card {
	padding: 32px 22px 40px;
	border-radius: 12px;
	}

	body.single-post .content-card .entry-title {
	font-size: 42px;
	}

	body.single-post .content-card .entry-meta {
	margin-bottom: 26px;
	}

	body.single-post .content-card .entry-content,
	body.single-post .content-card .entry-content p:first-child {
	font-size: 16px;
	line-height: 1.65;
	}
}

/* Final single-post width overrides */
body.single-post .content-wrap {
	width: min(1320px, calc(100% - 32px));
	max-width: 1320px;
	padding: 42px 20px 72px;
}

body.single-post .content-card {
	width: 100%;
	max-width: none;
	padding: 52px clamp(28px, 5vw, 76px) 68px;
}

body.single-post .content-card .entry-content {
	width: 100%;
	max-width: none;
}

body.single-post .content-card .entry-content > p,
body.single-post .content-card .entry-content > h2,
body.single-post .content-card .entry-content > h3,
body.single-post .content-card .entry-content > h4,
body.single-post .content-card .entry-content > ul,
body.single-post .content-card .entry-content > ol,
body.single-post .content-card .entry-content > blockquote,
body.single-post .content-card .entry-content > figure {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

body.single-post .content-card .entry-content > .wp-block-columns {
	display: flex;
	align-items: stretch;
	gap: clamp(18px, 3vw, 36px);
	width: 100%;
	max-width: 1200px;
	margin: 38px auto;
}

body.single-post .content-card .entry-content > .wp-block-columns .wp-block-column {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	padding: 26px;
	border: 1px solid rgba(116, 162, 255, 0.18);
	border-radius: 12px;
	background: rgba(8, 26, 55, 0.56);
}

body.single-post .content-card .entry-content > .wp-block-columns .wp-block-column > *:first-child {
	margin-top: 0;
}

body.single-post .content-card .entry-content > .wp-block-columns .wp-block-column > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 700px) {
	body.single-post .content-wrap {
	padding: 24px 12px 52px;
	}

	body.single-post .content-card {
	padding: 32px 20px 42px;
	}

	body.single-post .content-card .entry-content > .wp-block-columns {
	gap: 16px;
	margin: 28px auto;
	flex-direction: column;
	}

	body.single-post .content-card .entry-content > .wp-block-columns .wp-block-column {
	padding: 20px;
	}
}

/* Home Page svg fixes */

.topbar .topbar-right .icon-btn.icon-btn-notifications svg{
    width: 24px;
    height: 24px;
	stroke-width: 1.8;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.search-stats .card.stats-box .stat svg{
	width: 24px;
	height: 24px;
	stroke-width: 1.8;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.membership .membership-grid .card.member-card .member-icon svg{
	width: 24px;
	height: 24px;
	stroke-width: 1.8;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.card.community .mini-stat svg{
	width: 24px;
	height: 24px;
	stroke-width: 1.8;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.card.community .mini-stat.c-blue svg{
	stroke-width: inherit;
    fill: currentcolor;
    stroke: transparent;
}


.hero .hero-shell .hero-copy .hero-actions .btn svg{
	width: 24px;
    height: 24px;
    stroke-width: 1.8;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero .hero-shell .hero-copy .hero-points .point:not(:first-child) svg{
	width: 24px;
    height: 24px;
    stroke-width: 1.8;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

header.topbar img.custom-logo {
    width: 200px;
}

header.topbar .brand-text{
	display: none;
}

.footer-brand .brand-text{
    visibility: hidden;
}

.events-card .event-list .event-item .event-copy a {
    font-size: 14px;
    text-decoration: none;
}