body.ndc-mmlc-marketing-page {
  background: var(--ndc-mmlc-bg, #ffffff);
}

body.ndc-mmlc-marketing-page .entry-content,
body.ndc-mmlc-marketing-page .site-content,
body.ndc-mmlc-marketing-page #primary,
body.ndc-mmlc-marketing-page main {
  box-sizing: border-box;
}

/* Layout modes
   Preserve = do not force the page builder/theme width.
   Contained = plugin controls content width.
   Full width = remove common theme/container max-width limits on marketing pages. */
body.ndc-mmlc-layout-contained #content,
body.ndc-mmlc-layout-contained .site-content,
body.ndc-mmlc-layout-contained #primary,
body.ndc-mmlc-layout-contained main,
body.ndc-mmlc-layout-contained article,
body.ndc-mmlc-layout-contained .entry-content,
body.ndc-mmlc-layout-contained .bb-grid,
body.ndc-mmlc-layout-contained .container,
body.ndc-mmlc-layout-contained .content-wrap {
  max-width: var(--ndc-mmlc-max, 1240px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ndc-mmlc-pad, 24px);
  padding-right: var(--ndc-mmlc-pad, 24px);
}

body.ndc-mmlc-layout-full-width #page,
body.ndc-mmlc-layout-full-width .site,
body.ndc-mmlc-layout-full-width #content,
body.ndc-mmlc-layout-full-width .site-content,
body.ndc-mmlc-layout-full-width .content-area,
body.ndc-mmlc-layout-full-width #primary,
body.ndc-mmlc-layout-full-width main,
body.ndc-mmlc-layout-full-width article,
body.ndc-mmlc-layout-full-width .entry-content,
body.ndc-mmlc-layout-full-width .bb-grid,
body.ndc-mmlc-layout-full-width .container,
body.ndc-mmlc-layout-full-width .content-wrap,
body.ndc-mmlc-layout-full-width .elementor-container,
body.ndc-mmlc-layout-full-width .elementor-section.elementor-section-boxed > .elementor-container {
  width: 100% !important;
  max-width: none !important;
}

body.ndc-mmlc-layout-full-width #content,
body.ndc-mmlc-layout-full-width .site-content,
body.ndc-mmlc-layout-full-width #primary,
body.ndc-mmlc-layout-full-width main,
body.ndc-mmlc-layout-full-width article,
body.ndc-mmlc-layout-full-width .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ndc-mmlc-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: relative;
  z-index: 9999;
}

body.ndc-mmlc-sticky-header .ndc-mmlc-header {
  position: sticky;
  top: 0;
}

.ndc-mmlc-header__inner,
.ndc-mmlc-footer__inner {
  max-width: var(--ndc-mmlc-max, 1240px);
  margin: 0 auto;
  padding: 16px var(--ndc-mmlc-pad, 24px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.ndc-mmlc-brand { flex: 0 0 auto; }
.ndc-mmlc-brand__link { display: inline-flex; align-items: center; text-decoration: none; }
.ndc-mmlc-brand__logo,
.ndc-mmlc-brand img.custom-logo { max-height: 52px; width: auto; }
.ndc-mmlc-brand__text { font-size: 1.125rem; font-weight: 700; color: #143058; }

.ndc-mmlc-nav { flex: 1 1 auto; }

/* Header alignment controls. */
.ndc-mmlc-header--layout-center .ndc-mmlc-header__inner {
  justify-content: center;
  text-align: center;
}
.ndc-mmlc-header--layout-center .ndc-mmlc-brand,
.ndc-mmlc-header--layout-center .ndc-mmlc-nav,
.ndc-mmlc-header--layout-center .ndc-mmlc-actions {
  flex: 0 1 auto;
}
.ndc-mmlc-header--layout-center .ndc-mmlc-menu {
  justify-content: center;
}
.ndc-mmlc-header--layout-split .ndc-mmlc-brand {
  flex: 0 0 auto;
}
.ndc-mmlc-header--layout-split .ndc-mmlc-nav {
  flex: 1 1 auto;
}
.ndc-mmlc-header--layout-split .ndc-mmlc-actions {
  flex: 0 0 auto;
}
.ndc-mmlc-header--menu-center .ndc-mmlc-menu {
  justify-content: center;
}
.ndc-mmlc-header--menu-right .ndc-mmlc-menu {
  justify-content: flex-end;
}
.ndc-mmlc-header--menu-left .ndc-mmlc-menu {
  justify-content: flex-start;
}

.ndc-mmlc-menu,
.ndc-mmlc-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ndc-mmlc-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.ndc-mmlc-menu li {
  margin: 0;
  position: relative;
}
.ndc-mmlc-menu a {
  display: block;
  text-decoration: none;
  color: #143058;
  font-weight: 600;
  padding: 8px 0;
}

/* Dropdown menu support for WordPress nested menus. */
.ndc-mmlc-menu .sub-menu,
.ndc-mmlc-menu .children {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
  border-radius: 12px;
  padding: 8px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.ndc-mmlc-menu .sub-menu .sub-menu,
.ndc-mmlc-menu .children .children {
  top: -8px;
  left: calc(100% + 8px);
}
.ndc-mmlc-menu li:hover > .sub-menu,
.ndc-mmlc-menu li:focus-within > .sub-menu,
.ndc-mmlc-menu li:hover > .children,
.ndc-mmlc-menu li:focus-within > .children {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.ndc-mmlc-menu .sub-menu a,
.ndc-mmlc-menu .children a {
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.ndc-mmlc-menu .sub-menu a:hover,
.ndc-mmlc-menu .sub-menu a:focus,
.ndc-mmlc-menu .children a:hover,
.ndc-mmlc-menu .children a:focus {
  background: rgba(20,48,88,.08);
  outline: none;
}
.ndc-mmlc-menu .menu-item-has-children > a::after,
.ndc-mmlc-menu .page_item_has_children > a::after {
  content: " ▾";
  font-size: .78em;
}
.ndc-mmlc-menu .sub-menu .menu-item-has-children > a::after,
.ndc-mmlc-menu .children .page_item_has_children > a::after {
  content: " ›";
  float: right;
}

.ndc-mmlc-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.ndc-mmlc-cta__button,
.ndc-mmlc-auth-button,
.ndc-mmlc-join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  white-space: nowrap;
}
.ndc-mmlc-cta__button {
  background: #3B0A75;
  color: #fff;
  border: 1px solid #3B0A75;
  box-shadow: 0 6px 18px rgba(59,10,117,.18);
}
.ndc-mmlc-join-button {
  background: #00699D;
  color: #fff;
  border: 1px solid #00699D;
  box-shadow: 0 6px 18px rgba(0,105,157,.16);
}
.ndc-mmlc-auth-button {
  background: #fff;
  color: #3B0A75;
  border: 1px solid rgba(59,10,117,.22);
}
.ndc-mmlc-cta__button:hover,
.ndc-mmlc-cta__button:focus {
  background: #2D1F80;
  color: #fff;
  border-color: #2D1F80;
}
.ndc-mmlc-join-button:hover,
.ndc-mmlc-join-button:focus {
  background: #03B79E;
  color: #0E0628;
  border-color: #03B79E;
}
.ndc-mmlc-auth-button:hover,
.ndc-mmlc-auth-button:focus {
  background: rgba(59,10,117,.08);
  color: #3B0A75;
}

.ndc-mmlc-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

body.ndc-mmlc-marketing-page .ndc-mmlc-footer__inner {
  color: #425466;
}
.ndc-mmlc-footer--align-left .ndc-mmlc-footer__inner { justify-content: flex-start; text-align: left; }
.ndc-mmlc-footer--align-center .ndc-mmlc-footer__inner { justify-content: center; text-align: center; }
.ndc-mmlc-footer--align-right .ndc-mmlc-footer__inner { justify-content: flex-end; text-align: right; }

body.ndc-mmlc-hide-buddyboss-chrome .bb-title,
body.ndc-mmlc-hide-buddyboss-chrome .entry-header,
body.ndc-mmlc-hide-buddyboss-chrome .page-title,
body.ndc-mmlc-hide-buddyboss-chrome .bp-page-title,
body.ndc-mmlc-hide-buddyboss-chrome .bb-breadcrumb-wrap,
body.ndc-mmlc-hide-buddyboss-chrome .breadcrumbs,
body.ndc-mmlc-hide-buddyboss-chrome .breadcrumb,
body.ndc-mmlc-hide-buddyboss-chrome .yoast-breadcrumb,
body.ndc-mmlc-hide-buddyboss-chrome .page-breadcrumb,
body.ndc-mmlc-hide-buddyboss-chrome .subnav-filters,
body.ndc-mmlc-hide-buddyboss-chrome .bp-profile-search,
body.ndc-mmlc-hide-buddyboss-chrome .item-header-wrap,
body.ndc-mmlc-hide-buddyboss-chrome .widget-area,
body.ndc-mmlc-hide-buddyboss-chrome .buddypanel,
body.ndc-mmlc-hide-buddyboss-chrome .bb-mobile-panel-wrapper,
body.ndc-mmlc-hide-buddyboss-chrome .bb-cover-list,
body.ndc-mmlc-hide-buddyboss-chrome .single-headers,
body.ndc-mmlc-hide-buddyboss-chrome .bp-member-type-list,
body.ndc-mmlc-hide-buddyboss-chrome .bp-group-type-list {
  display: none !important;
}

body.ndc-mmlc-hide-theme-title-area .page-header,
body.ndc-mmlc-hide-theme-title-area .archive-header,
body.ndc-mmlc-hide-theme-title-area .entry-hero,
body.ndc-mmlc-hide-theme-title-area .site-subheader,
body.ndc-mmlc-hide-theme-title-area .page-title-wrap,
body.ndc-mmlc-hide-theme-title-area .bb-page-title-wrap,
body.ndc-mmlc-hide-theme-title-area .page-top-header {
  display: none !important;
}

body.ndc-mmlc-custom-header-active header.site-header,
body.ndc-mmlc-custom-header-active .site-header-container,
body.ndc-mmlc-custom-header-active #masthead,
body.ndc-mmlc-custom-header-active #site-header,
body.ndc-mmlc-custom-header-active .bb-header,
body.ndc-mmlc-custom-header-active .bb-sticky-header,
body.ndc-mmlc-custom-header-active .bb-mobile-header-wrapper,
body.ndc-mmlc-custom-header-active .bb-mobile-header,
body.ndc-mmlc-custom-header-active .header-mobile,
body.ndc-mmlc-custom-header-active .mobile-header-wrap,
body.ndc-mmlc-custom-header-active .buddypanel-header,
body.ndc-mmlc-hide-theme-header-footer header.site-header,
body.ndc-mmlc-hide-theme-header-footer .site-header-container,
body.ndc-mmlc-hide-theme-header-footer footer.site-footer,
body.ndc-mmlc-hide-theme-header-footer #masthead,
body.ndc-mmlc-hide-theme-header-footer #colophon,
body.ndc-mmlc-hide-theme-header-footer #site-header,
body.ndc-mmlc-hide-theme-header-footer .bb-mobile-header-wrapper,
body.ndc-mmlc-hide-theme-header-footer .bb-mobile-header,
body.ndc-mmlc-hide-theme-header-footer .header-mobile,
body.ndc-mmlc-hide-theme-header-footer .mobile-header-wrap,
body.ndc-mmlc-hide-theme-header-footer .buddypanel-header,
body.ndc-mmlc-hide-theme-header-footer .bb-header,
body.ndc-mmlc-hide-theme-header-footer .bb-sticky-header,
body.ndc-mmlc-hide-theme-header-footer .bb-mobile-panel-header {
  display: none !important;
}

body.ndc-mmlc-homepage-hardening #content,
body.ndc-mmlc-homepage-hardening .site-content,
body.ndc-mmlc-homepage-hardening .content-area,
body.ndc-mmlc-homepage-hardening #primary,
body.ndc-mmlc-homepage-hardening main,
body.ndc-mmlc-homepage-hardening article,
body.ndc-mmlc-homepage-hardening .entry-content,
body.ndc-mmlc-homepage-hardening .elementor-section-wrap,
body.ndc-mmlc-homepage-hardening .elementor-widget-wrap {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.ndc-mmlc-homepage-hardening .home .entry-header:empty,
body.ndc-mmlc-homepage-hardening .entry-header:empty,
body.ndc-mmlc-homepage-hardening .page-header:empty,
body.ndc-mmlc-homepage-hardening .bb-title:empty,
body.ndc-mmlc-homepage-hardening .site-subheader:empty {
  display: none !important;
}

body.ndc-mmlc-homepage-hardening .site-content > .container:first-child,
body.ndc-mmlc-homepage-hardening .content-wrap > .container:first-child,
body.ndc-mmlc-homepage-hardening main > .container:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.ndc-mmlc-home-context.ndc-mmlc-hide-buddyboss-chrome .entry-header,
body.ndc-mmlc-home-context.ndc-mmlc-hide-buddyboss-chrome .page .entry-header,
body.ndc-mmlc-home-context.ndc-mmlc-hide-buddyboss-chrome .single-page .entry-header,
body.ndc-mmlc-home-context.ndc-mmlc-hide-buddyboss-chrome .bb-page-title,
body.ndc-mmlc-home-context.ndc-mmlc-hide-buddyboss-chrome .page-title-wrap,
body.ndc-mmlc-home-context.ndc-mmlc-hide-buddyboss-chrome .page-top-header,
body.ndc-mmlc-home-context.ndc-mmlc-hide-buddyboss-chrome .elementor-location-header {
  display: none !important;
}

body.ndc-mmlc-homepage-hardening .ndc-mmlc-header + #page,
body.ndc-mmlc-homepage-hardening .ndc-mmlc-header + .site,
body.ndc-mmlc-homepage-hardening .ndc-mmlc-header + .site-content {
  margin-top: 0 !important;
}

/* v1.0.3: BuddyBoss/BuddyPanel offset reset for marketing pages.
   Fixes cases where the theme header is hidden but the main content wrapper keeps
   a left/right offset reserved for the BuddyBoss panel/sidebar. */
body.ndc-mmlc-marketing-page #page,
body.ndc-mmlc-marketing-page .site,
body.ndc-mmlc-marketing-page .site-content,
body.ndc-mmlc-marketing-page .content-area,
body.ndc-mmlc-marketing-page #primary,
body.ndc-mmlc-marketing-page main,
body.ndc-mmlc-marketing-page article,
body.ndc-mmlc-marketing-page .entry-content,
body.ndc-mmlc-marketing-page .bb-grid,
body.ndc-mmlc-marketing-page .bb-grid-cell,
body.ndc-mmlc-marketing-page .buddypress-wrap,
body.ndc-mmlc-marketing-page .buddypress {
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

body.ndc-mmlc-marketing-page #page,
body.ndc-mmlc-marketing-page .site,
body.ndc-mmlc-marketing-page .site-content,
body.ndc-mmlc-marketing-page .content-area,
body.ndc-mmlc-marketing-page #primary,
body.ndc-mmlc-marketing-page main {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.ndc-mmlc-marketing-page .site-content,
body.ndc-mmlc-marketing-page .content-area,
body.ndc-mmlc-marketing-page #primary,
body.ndc-mmlc-marketing-page main,
body.ndc-mmlc-marketing-page article,
body.ndc-mmlc-marketing-page .entry-content {
  width: 100% !important;
}

/* Keep plugin header out of any BuddyBoss/sidebar offset logic. */
body.ndc-mmlc-marketing-page .ndc-mmlc-header,
body.ndc-mmlc-marketing-page .ndc-mmlc-footer {
  margin-left: 0 !important;
  margin-right: 0 !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
}

/* When the theme header/footer is hidden, also remove common BuddyBoss panel spacers. */
body.ndc-mmlc-hide-theme-header-footer .buddypanel-spacer,
body.ndc-mmlc-hide-theme-header-footer .bb-buddypanel-spacer,
body.ndc-mmlc-hide-theme-header-footer .bb-mobile-panel,
body.ndc-mmlc-hide-theme-header-footer .bb-mobile-panel-inner,
body.ndc-mmlc-hide-theme-header-footer .bb-left-panel,
body.ndc-mmlc-hide-theme-header-footer .bb-left-panel-wrapper {
  display: none !important;
}

/* Safer dropdown stacking over full-width page sections. */
body.ndc-mmlc-marketing-page .ndc-mmlc-menu .sub-menu,
body.ndc-mmlc-marketing-page .ndc-mmlc-menu .children {
  z-index: 100000;
}


/* v1.0.5: Mobile hamburger menu for the custom marketing header.
   JS adds body.ndc-mmlc-is-mobile based on the admin breakpoint setting. */
.ndc-mmlc-mobile-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(20,48,88,.14);
  background: rgba(20,48,88,.06);
  border-radius: 12px;
  width: 44px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  color: #143058;
}
.ndc-mmlc-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.ndc-mmlc-submenu-toggle {
  display: none;
}

body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-brand {
  min-width: 0;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-brand__logo,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-brand img.custom-logo {
  max-height: 44px;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-mobile-toggle {
  display: inline-flex;
  justify-self: end;
  order: 3;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-actions {
  justify-self: end;
  order: 2;
  gap: 8px;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile.ndc-mmlc-mobile-hide-cta .ndc-mmlc-cta__button,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile.ndc-mmlc-mobile-hide-auth .ndc-mmlc-auth-button,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile.ndc-mmlc-mobile-hide-join .ndc-mmlc-join-button {
  display: none !important;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-auth-button,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-join-button,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-cta__button {
  padding: 9px 13px;
  font-size: 14px;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-nav {
  grid-column: 1 / -1;
  order: 4;
  width: 100%;
  display: none;
  padding-top: 8px;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-header--mobile-open .ndc-mmlc-nav {
  display: block;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(20,48,88,.12);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 14px 34px rgba(15,23,42,.10);
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu li {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(20,48,88,.08);
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu li:last-child {
  border-bottom: 0;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu a {
  padding: 12px 44px 12px 12px;
  line-height: 1.3;
  white-space: normal;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .menu-item-has-children > a::after,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .page_item_has_children > a::after,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .sub-menu .menu-item-has-children > a::after,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .children .page_item_has_children > a::after {
  content: "";
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-submenu-toggle {
  display: inline-flex;
  position: absolute;
  top: 6px;
  right: 4px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: rgba(20,48,88,.07);
  color: #143058;
  cursor: pointer;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-submenu-open > .ndc-mmlc-submenu-toggle span {
  transform: rotate(180deg);
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .sub-menu,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .children,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .sub-menu .sub-menu,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .children .children {
  display: none;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 2px solid rgba(20,48,88,.12);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .ndc-mmlc-submenu-open > .sub-menu,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .ndc-mmlc-submenu-open > .children {
  display: block;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .sub-menu a,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-menu .children a {
  white-space: normal;
  padding-top: 11px;
  padding-bottom: 11px;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-header--mobile-open .ndc-mmlc-mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-header--mobile-open .ndc-mmlc-mobile-toggle span:nth-child(2) {
  opacity: 0;
}
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-header--mobile-open .ndc-mmlc-mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body:not(.ndc-mmlc-mobile-menu-enabled).ndc-mmlc-is-mobile .ndc-mmlc-header__inner {
  flex-wrap: wrap;
}


/* v1.0.7: branded logged-out Join Free + Member Login buttons. */

body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-actions {
  display: flex;
  flex-wrap: wrap;
}

body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-join-button,
body.ndc-mmlc-mobile-menu-enabled.ndc-mmlc-is-mobile .ndc-mmlc-auth-button {
  min-height: 38px;
}

/* Hide common BuddyBoss desktop/mobile headers when the plugin header is active, preventing double menus. */
body.ndc-mmlc-custom-header-active .site-header,
body.ndc-mmlc-custom-header-active .bb-template-v2-header,
body.ndc-mmlc-custom-header-active .bb-mobile-header-wrapper,
body.ndc-mmlc-custom-header-active .bb-mobile-header,
body.ndc-mmlc-custom-header-active .bb-left-panel-mobile,
body.ndc-mmlc-custom-header-active .buddypanel-header {
  display: none !important;
}

/* v1.0.8: Enhanced branded marketing footer. */
body.ndc-mmlc-custom-footer-active footer.footer-bottom:not(.ndc-mmlc-footer),
body.ndc-mmlc-custom-footer-active footer.site-footer:not(.ndc-mmlc-footer),
body.ndc-mmlc-custom-footer-active #colophon:not(.ndc-mmlc-footer) {
  display: none !important;
}

.ndc-mmlc-footer--enhanced {
  margin-top: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(3,183,158,.13), transparent 42%),
    radial-gradient(ellipse at 95% 15%, rgba(59,10,117,.36), transparent 48%),
    #0E0628;
  color: #FDFBFF;
  border-top: 0;
}

.ndc-mmlc-footer--enhanced .ndc-mmlc-footer__inner {
  max-width: var(--ndc-mmlc-max, 1240px);
  margin: 0 auto;
  padding: 46px var(--ndc-mmlc-pad, 24px) 38px;
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) minmax(220px, 1fr) minmax(240px, .9fr);
  gap: 34px;
  align-items: start;
  color: #FDFBFF;
}

.ndc-mmlc-footer__brand-link {
  display: inline-block;
  color: #FDFBFF;
  font-family: Lora, Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  font-weight: 700;
  text-decoration: none;
}
.ndc-mmlc-footer__brand-link:hover,
.ndc-mmlc-footer__brand-link:focus {
  color: #03B79E;
}
.ndc-mmlc-footer__tagline {
  margin: 12px 0 0;
  color: rgba(253,251,255,.78);
  font-weight: 700;
  letter-spacing: .02em;
}
.ndc-mmlc-footer__copyright {
  margin: 18px 0 0;
  color: rgba(253,251,255,.58);
  font-size: 13px;
}

.ndc-mmlc-footer-menu,
.ndc-mmlc-footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ndc-mmlc-footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px 22px;
}
.ndc-mmlc-footer-menu li {
  margin: 0;
}
.ndc-mmlc-footer-menu a {
  color: rgba(253,251,255,.82);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.ndc-mmlc-footer-menu a:hover,
.ndc-mmlc-footer-menu a:focus {
  color: #03B79E;
}
.ndc-mmlc-footer-menu .sub-menu,
.ndc-mmlc-footer-menu .children {
  margin-top: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(3,183,158,.28);
  display: grid;
  gap: 7px;
}
.ndc-mmlc-footer-menu .sub-menu a,
.ndc-mmlc-footer-menu .children a {
  color: rgba(253,251,255,.62);
  font-size: 13px;
  font-weight: 600;
}

.ndc-mmlc-footer__connect {
  display: grid;
  gap: 18px;
  justify-items: end;
}
.ndc-mmlc-footer__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.ndc-mmlc-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.ndc-mmlc-footer-button--join,
.ndc-mmlc-footer-button--portal {
  background: #03B79E;
  color: #0E0628;
  border: 1px solid #03B79E;
  box-shadow: 0 10px 28px rgba(3,183,158,.22);
}
.ndc-mmlc-footer-button--login {
  background: rgba(253,251,255,.08);
  color: #FDFBFF;
  border: 1px solid rgba(253,251,255,.22);
}
.ndc-mmlc-footer-button:hover,
.ndc-mmlc-footer-button:focus {
  transform: translateY(-1px);
  text-decoration: none;
}
.ndc-mmlc-footer-button--join:hover,
.ndc-mmlc-footer-button--portal:hover,
.ndc-mmlc-footer-button--join:focus,
.ndc-mmlc-footer-button--portal:focus {
  background: #FDFBFF;
  border-color: #FDFBFF;
  color: #3B0A75;
}
.ndc-mmlc-footer-button--login:hover,
.ndc-mmlc-footer-button--login:focus {
  background: #3B0A75;
  border-color: #03B79E;
  color: #FDFBFF;
}

.ndc-mmlc-footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.ndc-mmlc-social {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FDFBFF;
  background: rgba(253,251,255,.08);
  border: 1px solid rgba(253,251,255,.16);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
}
.ndc-mmlc-social--instagram span { font-size: 12px; }
.ndc-mmlc-social--tiktok span { font-size: 20px; }
.ndc-mmlc-social:hover,
.ndc-mmlc-social:focus {
  background: #03B79E;
  color: #0E0628;
  border-color: #03B79E;
  text-decoration: none;
}

.ndc-mmlc-footer--align-left .ndc-mmlc-footer__connect,
.ndc-mmlc-footer--align-left .ndc-mmlc-footer__buttons,
.ndc-mmlc-footer--align-left .ndc-mmlc-footer__social {
  justify-content: flex-start;
  justify-items: start;
}
.ndc-mmlc-footer--align-center .ndc-mmlc-footer__inner {
  text-align: left;
}
.ndc-mmlc-footer--align-center .ndc-mmlc-footer__connect,
.ndc-mmlc-footer--align-center .ndc-mmlc-footer__buttons,
.ndc-mmlc-footer--align-center .ndc-mmlc-footer__social {
  justify-content: flex-end;
  justify-items: end;
}

@media (max-width: 900px) {
  .ndc-mmlc-footer--enhanced .ndc-mmlc-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .ndc-mmlc-footer-menu {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .ndc-mmlc-footer-menu .sub-menu,
  .ndc-mmlc-footer-menu .children {
    padding-left: 0;
    border-left: 0;
  }
  .ndc-mmlc-footer__connect,
  .ndc-mmlc-footer__buttons,
  .ndc-mmlc-footer__social,
  .ndc-mmlc-footer--align-center .ndc-mmlc-footer__connect,
  .ndc-mmlc-footer--align-center .ndc-mmlc-footer__buttons,
  .ndc-mmlc-footer--align-center .ndc-mmlc-footer__social {
    justify-content: center;
    justify-items: center;
  }
}

/* v1.0.9: Compact footer option + real branded SVG social icons. */
.ndc-mmlc-footer--enhanced.ndc-mmlc-footer--no-menu .ndc-mmlc-footer__inner {
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.ndc-mmlc-footer--enhanced.ndc-mmlc-footer--no-menu .ndc-mmlc-footer__brand {
  max-width: 760px;
}
.ndc-mmlc-footer--enhanced.ndc-mmlc-footer--no-menu .ndc-mmlc-footer__connect {
  align-self: center;
}
.ndc-mmlc-footer--enhanced .ndc-mmlc-social {
  width: 44px;
  height: 44px;
  padding: 0;
  overflow: hidden;
}
.ndc-mmlc-footer--enhanced .ndc-mmlc-social svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}
.ndc-mmlc-footer--enhanced .ndc-mmlc-social--facebook {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}
.ndc-mmlc-footer--enhanced .ndc-mmlc-social--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: rgba(255,255,255,.20);
  color: #fff;
}
.ndc-mmlc-footer--enhanced .ndc-mmlc-social--tiktok {
  background: #000;
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.ndc-mmlc-footer--enhanced .ndc-mmlc-social:hover,
.ndc-mmlc-footer--enhanced .ndc-mmlc-social:focus {
  transform: translateY(-1px);
  color: #fff;
  filter: brightness(1.08);
}
.ndc-mmlc-footer--enhanced .ndc-mmlc-footer__buttons {
  align-items: center;
}
.ndc-mmlc-footer--enhanced .ndc-mmlc-footer-button--join,
.ndc-mmlc-footer--enhanced .ndc-mmlc-footer-button--portal {
  background: #03B79E;
  border-color: #03B79E;
  color: #0E0628;
}
.ndc-mmlc-footer--enhanced .ndc-mmlc-footer-button--login {
  background: rgba(253,251,255,.08);
  border-color: rgba(253,251,255,.28);
  color: #FDFBFF;
}
@media (max-width: 900px) {
  .ndc-mmlc-footer--enhanced.ndc-mmlc-footer--no-menu .ndc-mmlc-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .ndc-mmlc-footer--enhanced.ndc-mmlc-footer--no-menu .ndc-mmlc-footer__connect,
  .ndc-mmlc-footer--enhanced.ndc-mmlc-footer--no-menu .ndc-mmlc-footer__buttons,
  .ndc-mmlc-footer--enhanced.ndc-mmlc-footer--no-menu .ndc-mmlc-footer__social {
    justify-content: center;
    justify-items: center;
  }
}
