:root {
  --moje-bg: #0a0a0c;
  --moje-bg-soft: #131317;
  --moje-card: #141419;
  --moje-card-light: #ffffff;
  --moje-text: #f4f4f6;
  --moje-text-dark: #111216;
  --moje-muted: #b6b7bf;
  --moje-border: rgba(255, 255, 255, 0.08);
  --moje-border-dark: rgba(17, 18, 22, 0.08);
  --moje-red: #e11b22;
  --moje-red-dark: #b80f17;
  --moje-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  --moje-radius: 22px;
  --moje-radius-sm: 16px;
  --moje-container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body.mojebjj-front-page-body {
  margin: 0;
  color: var(--moje-text-dark);
  background: #f6f6f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
}

body.mojebjj-front-page-body #masthead,
body.mojebjj-front-page-body header#masthead,
body.mojebjj-front-page-body .site-header,
body.mojebjj-front-page-body .entry-header,
body.mojebjj-front-page-body .page-header,
body.mojebjj-front-page-body .entry-title,
body.mojebjj-front-page-body .page-title,
body.mojebjj-front-page-body footer.site-footer,
body.mojebjj-front-page-body #colophon,
body.mojebjj-front-page-body .site-footer,
body.mojebjj-front-page-body .wp-block-post-title {
  display: none !important;
}

body.mojebjj-front-page-body main,
body.mojebjj-front-page-body .site-main,
body.mojebjj-front-page-body .content-area,
body.mojebjj-front-page-body .entry-content {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mojebjj-front-page {
  overflow: clip;
}

.mojebjj-front-container {
  width: min(var(--moje-container), calc(100% - 32px));
  margin: 0 auto;
}

.mojebjj-front-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--moje-red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--moje-red);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  box-sizing: border-box;
}

.mojebjj-front-button:hover,
.mojebjj-front-button:focus-visible {
  background: var(--moje-red-dark);
  border-color: var(--moje-red-dark);
  transform: translateY(-1px);
}

.mojebjj-front-button--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.mojebjj-front-button--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.mojebjj-front-button--outline {
  background: transparent;
  color: var(--moje-text-dark);
  border-color: rgba(17, 18, 22, 0.12);
}

.mojebjj-front-eyebrow {
  margin: 0 0 10px;
  color: #ff7175;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mojebjj-front-eyebrow--dark {
  color: var(--moje-red);
}

.mojebjj-front-muted {
  margin: 0;
  color: #6d6f7a;
}

.mojebjj-front-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.mojebjj-front-notice.is-success {
  color: #0c5b25;
  background: #dff4e5;
}

.mojebjj-front-notice.is-error {
  color: #7b1014;
  background: #f9dfe1;
}

.mojebjj-front-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 10, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(13px);
}

.mojebjj-front-header__inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 10px 0;
}

.mojebjj-front-brand img,
.mojebjj-front-footer__logo {
  display: block;
  width: 150px;
  height: auto;
}

.mojebjj-front-menu-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: transparent;
  color: #fff;
}

.mojebjj-front-menu-toggle .dashicons {
  font-size: 22px;
  width: 22px;
  height: 22px;
}

.mojebjj-front-nav {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 8px 0 4px;
}

.mojebjj-front-nav.is-open {
  display: grid;
}

.mojebjj-front-nav a,
.mojebjj-front-footer a {
  color: inherit;
  text-decoration: none;
}

.mojebjj-front-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.mojebjj-front-header__actions {
  display: none;
}

.mojebjj-front-hero {
  position: relative;
  background: var(--moje-bg);
  color: var(--moje-text);
}

.mojebjj-front-hero__bg,
.mojebjj-front-hero__overlay {
  position: absolute;
  inset: 0;
}

.mojebjj-front-hero__bg {
  background-image: url('../images/hero-grapple3.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.5;
}

.mojebjj-front-hero__overlay {
  background:
    linear-gradient(90deg, rgba(9, 9, 12, 0.98) 0%, rgba(9, 9, 12, 0.88) 38%, rgba(9, 9, 12, 0.54) 70%, rgba(9, 9, 12, 0.88) 100%),
    radial-gradient(circle at 88% 32%, rgba(225, 27, 34, 0.32), transparent 25%);
}

.mojebjj-front-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  padding: 34px 0 38px;
}

.mojebjj-front-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mojebjj-front-hero__lead {
  margin: 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.mojebjj-front-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mojebjj-front-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.mojebjj-front-stat {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.mojebjj-front-stat strong {
  display: block;
  font-size: 24px;
  color: #fff;
}

.mojebjj-front-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.mojebjj-front-phone-wrap {
  display: flex;
  justify-content: center;
}

.mojebjj-front-phone {
  width: min(460px, 100%);
  padding: 12px;
  border-radius: 38px;
  background: linear-gradient(180deg, #eef0f5 0%, #d9dde7 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.mojebjj-front-phone--profile-preview {
  color: #1f2b46;
}

.mojebjj-front-phone__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 4px 8px 0;
  color: #101729;
  font-size: 12px;
  font-weight: 800;
}

.mojebjj-front-phone__statusicons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mojebjj-front-phone__signal {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 10px;
  background:
    linear-gradient(to top, #11192b 0 100%) left bottom / 2px 4px no-repeat,
    linear-gradient(to top, #11192b 0 100%) center bottom / 2px 6px no-repeat,
    linear-gradient(to top, #11192b 0 100%) right bottom / 2px 9px no-repeat;
  opacity: 0.9;
}

.mojebjj-front-phone__wifi {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 10px;
}

.mojebjj-front-phone__wifi::before,
.mojebjj-front-phone__wifi::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #11192b;
  border-top-color: #11192b;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
}

.mojebjj-front-phone__wifi::before {
  top: 0;
  width: 14px;
  height: 14px;
}

.mojebjj-front-phone__wifi::after {
  top: 4px;
  width: 8px;
  height: 8px;
}

.mojebjj-front-phone__battery {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 6px 2px 5px;
  border-radius: 10px;
  background: #2fda72;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.mojebjj-front-phone__battery span {
  width: 10px;
  height: 6px;
  border: 1.6px solid #fff;
  border-radius: 2px;
  position: relative;
  display: inline-block;
}

.mojebjj-front-phone__battery span::after {
  content: "";
  position: absolute;
  top: 1px;
  right: -3px;
  width: 2px;
  height: 2px;
  border-radius: 0 1px 1px 0;
  background: #fff;
}

.mojebjj-front-phone__battery em {
  font-style: normal;
  font-weight: 800;
}

.mojebjj-front-profile-card {
  position: relative;
  padding: 14px 14px 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, #f9f9fb 0%, #f2f3f7 100%);
  box-shadow: 0 14px 40px rgba(32, 37, 52, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mojebjj-front-profile-card__cover {
  position: relative;
  min-height: 160px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 14, 31, 0.1) 0%, rgba(8, 14, 31, 0.42) 100%),
    url('../images/hero-grapple3.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.mojebjj-front-profile-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 38%);
}

.mojebjj-front-profile-card__edit-pill,
.mojebjj-front-profile-card__avatar-edit,
.mojebjj-front-profile-card__fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0b1635;
  box-shadow: 0 8px 20px rgba(8, 19, 50, 0.22);
}

.mojebjj-front-profile-card__edit-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.mojebjj-front-profile-card__identity-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: -40px;
  padding: 0 12px;
}

.mojebjj-front-profile-card__avatar-wrap {
  position: relative;
}

.mojebjj-front-profile-card__avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid #f2f3f7;
  background: linear-gradient(145deg, #122247 0%, #091129 55%, #c52e22 100%);
  box-shadow: 0 12px 26px rgba(13, 21, 41, 0.2);
}

.mojebjj-front-profile-card__avatar img {
  width: 166%;
  max-width: none;
  height: auto;
  object-fit: cover;
  object-position: center 14%;
  transform: translateY(6%);
}

.mojebjj-front-profile-card__avatar-edit {
  position: absolute;
  right: 6px;
  bottom: 2px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 4px solid #f2f3f7;
}

.mojebjj-front-profile-card__club-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 7px solid #f2f3f7;
  background:
    radial-gradient(circle at center, #d72223 0 26%, #121416 27% 61%, #f5f5f7 62% 69%, #111317 70% 100%);
  box-shadow: 0 12px 26px rgba(13, 21, 41, 0.16);
  text-align: center;
}


.mojebjj-front-profile-card__club-badge--logo {
  overflow: hidden;
  background: #f2f3f7;
}

.mojebjj-front-profile-card__club-badge--logo img {
  display: block;
  width: 122%;
  max-width: none;
  height: auto;
  object-fit: cover;
  object-position: center center;
  transform: translateY(2%);
}

.mojebjj-front-profile-card__club-badge strong,
.mojebjj-front-profile-card__club-badge small,
.mojebjj-front-profile-card__club-mark {
  position: relative;
  z-index: 1;
}

.mojebjj-front-profile-card__club-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 2px;
  background: #d72223;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.mojebjj-front-profile-card__club-badge strong {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.mojebjj-front-profile-card__club-badge small {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mojebjj-front-profile-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 0 6px;
}

.mojebjj-front-profile-card__medals {
  display: flex;
  gap: 10px;
}

.mojebjj-front-profile-card__medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  color: #24304b;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(28, 34, 50, 0.08);
}

.mojebjj-front-profile-card__medal--gold {
  background: #f2c84a;
}

.mojebjj-front-profile-card__medal--silver {
  background: #d9dde6;
}

.mojebjj-front-profile-card__medal--bronze {
  background: #d78818;
}

.mojebjj-front-profile-card__belt-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #7b1fa2 0 50%, #000000 50% 100%);
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 16px rgba(28, 34, 50, 0.08);
}

.mojebjj-front-profile-card__belt-ring span,
.mojebjj-front-profile-card__belt-degree {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mojebjj-front-profile-card__belt-degree {
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  padding-top: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
}

.mojebjj-front-profile-card__copy {
  margin-top: 20px;
  padding: 0 6px;
}

.mojebjj-front-profile-card__club-name {
  margin: 0 0 10px;
  color: #2c3550;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.55;
  text-transform: uppercase;
}

.mojebjj-front-profile-card__copy h3 {
  margin: 0 0 8px;
  color: #111729;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.mojebjj-front-profile-card__role,
.mojebjj-front-profile-card__group {
  margin: 0;
  color: #6b7388;
  font-size: 15px;
  line-height: 1.45;
}

.mojebjj-front-profile-card__group {
  margin-top: 4px;
}

.mojebjj-front-profile-card__fab {
  position: absolute;
  right: 22px;
  top: 66%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  color: #0b1635;
  border: 2px solid rgba(11, 22, 53, 0.12);
  box-shadow: 0 12px 24px rgba(13, 21, 41, 0.12);
}

.mojebjj-front-profile-card__actions {
  display: grid;
  grid-template-columns: minmax(132px, 154px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 0 4px 6px;
}

.mojebjj-front-profile-card__present {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #091330;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 0 26px rgba(242, 200, 74, 0.46);
}

.mojebjj-front-profile-card__stack {
  display: grid;
  gap: 14px;
}

.mojebjj-front-profile-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  color: #111729;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(24, 31, 49, 0.08);
  border: 1px solid rgba(17, 23, 41, 0.08);
}

.mojebjj-front-profile-card .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

@media (max-width: 430px) {
  .mojebjj-front-phone {
    padding: 10px;
    border-radius: 30px;
  }

  .mojebjj-front-profile-card {
    padding: 12px 12px 16px;
    border-radius: 24px;
  }

  .mojebjj-front-profile-card__cover {
    min-height: 136px;
    border-radius: 20px;
  }

  .mojebjj-front-profile-card__identity-row {
    margin-top: -28px;
    padding: 0 6px;
  }

  .mojebjj-front-profile-card__avatar,
  .mojebjj-front-profile-card__club-badge {
    width: 92px;
    height: 92px;
  }

  .mojebjj-front-profile-card__avatar {
    font-size: 28px;
    border-width: 5px;
  }

  .mojebjj-front-profile-card__club-badge {
    border-width: 5px;
  }

  .mojebjj-front-profile-card__club-badge--logo img {
    width: 122%;
  }

  .mojebjj-front-profile-card__medal,
  .mojebjj-front-profile-card__belt-ring {
    width: 42px;
    height: 42px;
  }

  .mojebjj-front-profile-card__copy h3 {
    font-size: 24px;
  }

  .mojebjj-front-profile-card__role,
  .mojebjj-front-profile-card__group {
    font-size: 14px;
  }

  .mojebjj-front-profile-card__actions {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    margin-top: 26px;
  }

  .mojebjj-front-profile-card__present {
    font-size: 19px;
  }

  .mojebjj-front-profile-card__button {
    min-height: 62px;
    font-size: 16px;
  }
}

.mojebjj-front-section {
  padding: 68px 0;
}

.mojebjj-front-section--light {
  background: #f7f7f9;
}

.mojebjj-front-section__heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.mojebjj-front-section__heading h2,
.mojebjj-front-panel h2,
.mojebjj-front-panel--wide h2,
.mojebjj-front-panel--accent h2,
.mojebjj-front-fightivo__content h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.mojebjj-front-section__heading p:last-child,
.mojebjj-front-panel p,
.mojebjj-front-role-card__body p,
.mojebjj-front-feature-card p,
.mojebjj-front-step p,
.mojebjj-front-fightivo__content p,
.mojebjj-front-footer p,
.mojebjj-front-faq-wrap > p {
  margin: 0;
  color: #5f6270;
  line-height: 1.65;
}

.mojebjj-front-section__heading--center {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.mojebjj-front-audience-grid,
.mojebjj-front-features-grid,
.mojebjj-front-columns-3,
.mojebjj-front-columns-2,
.mojebjj-front-steps,
.mojebjj-front-split,
.mojebjj-front-footer__inner {
  display: grid;
  gap: 18px;
}

.mojebjj-front-audience-grid--compact {
  grid-template-columns: 1fr;
}

.mojebjj-front-role-card,
.mojebjj-front-feature-card,
.mojebjj-front-panel,
.mojebjj-front-step,
.mojebjj-front-role-card--compact {
  border-radius: var(--moje-radius);
  box-shadow: var(--moje-shadow);
}

.mojebjj-front-role-card--compact,
.mojebjj-front-feature-card,
.mojebjj-front-panel,
.mojebjj-front-role-card {
  background: #fff;
  border: 1px solid var(--moje-border-dark);
}

.mojebjj-front-role-card--compact {
  padding: 24px;
}

.mojebjj-front-role-card__icon,
.mojebjj-front-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(225, 27, 34, 0.11);
  color: var(--moje-red);
  margin-bottom: 16px;
}

.mojebjj-front-role-card__icon .dashicons,
.mojebjj-front-feature-card__icon .dashicons {
  width: 28px;
  height: 28px;
  font-size: 28px;
}

.mojebjj-front-role-card--compact h3,
.mojebjj-front-feature-card h3,
.mojebjj-front-role-card h3,
.mojebjj-front-step h3,
.mojebjj-front-event-item__body h3,
.mojebjj-front-news-item__body strong,
.mojebjj-front-footer h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.mojebjj-front-features-grid {
  grid-template-columns: 1fr;
}

.mojebjj-front-feature-card {
  padding: 24px;
}

.mojebjj-front-section--darkband {
  background:
    linear-gradient(180deg, #101114 0%, #15161b 100%),
    radial-gradient(circle at 70% 40%, rgba(225, 27, 34, 0.20), transparent 28%);
  color: #fff;
}

.mojebjj-front-section--darkband .mojebjj-front-section__heading h2,
.mojebjj-front-section--darkband .mojebjj-front-step h3,
.mojebjj-front-section--fightivo .mojebjj-front-fightivo__content h2,
.mojebjj-front-section--fightivo .mojebjj-front-fightivo__content p,
.mojebjj-front-section--fightivo .mojebjj-front-eyebrow {
  color: #fff;
}

.mojebjj-front-section--darkband .mojebjj-front-step {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mojebjj-front-section--darkband .mojebjj-front-step p {
  color: rgba(255, 255, 255, 0.72);
}

.mojebjj-front-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--moje-red);
  color: #fff;
  font-weight: 800;
}

.mojebjj-front-audience-grid {
  grid-template-columns: 1fr;
}

.mojebjj-front-role-card {
  overflow: hidden;
}

.mojebjj-front-role-card__image {
  min-height: 190px;
  background-size: cover;
  background-position: center top;
  background-color: #0b1530;
}

.mojebjj-front-role-card__body {
  padding: 20px;
}

.mojebjj-front-columns-3 {
  grid-template-columns: 1fr;
}

.mojebjj-front-panel {
  padding: 22px;
}

.mojebjj-front-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mojebjj-front-panel__head h2 {
  font-size: 28px;
}

.mojebjj-front-panel__head a {
  color: var(--moje-red);
  font-weight: 700;
}

.mojebjj-front-map-preview {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}

.mojebjj-front-map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mojebjj-front-map-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1f2f6;
  color: #323542;
  font-weight: 700;
  font-size: 14px;
}

.mojebjj-front-event-list,
.mojebjj-front-news-list,
.mojebjj-front-faq {
  display: grid;
  gap: 14px;
}

.mojebjj-front-event-item,
.mojebjj-front-news-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
}

.mojebjj-front-event-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  border-radius: 18px;
  background: #f5f5f7;
  border: 1px solid #ececf0;
}

.mojebjj-front-event-item__date strong {
  font-size: 22px;
  line-height: 1;
}

.mojebjj-front-event-item__date span {
  font-size: 12px;
  color: #6d6f7a;
  font-weight: 700;
  text-transform: uppercase;
}

.mojebjj-front-event-item__body p,
.mojebjj-front-news-item__body small {
  color: #6d6f7a;
}

.mojebjj-front-news-item {
  text-decoration: none;
  color: var(--moje-text-dark);
}

.mojebjj-front-news-item__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.mojebjj-front-panel--wide,
.mojebjj-front-panel--accent {
  padding: 28px;
}

.mojebjj-front-panel--accent {
  color: #fff;
  background:
    linear-gradient(135deg, #16171b 0%, #0d0d10 52%, #2c0c0f 100%),
    radial-gradient(circle at 85% 20%, rgba(225, 27, 34, 0.42), transparent 24%);
  border-color: rgba(255, 255, 255, 0.08);
}

.mojebjj-front-panel--accent p,
.mojebjj-front-panel--accent h2 {
  color: #fff;
}

.mojebjj-front-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.mojebjj-front-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mojebjj-front-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mojebjj-front-form input,
.mojebjj-front-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-sizing: border-box;
}

.mojebjj-front-form input::placeholder,
.mojebjj-front-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.mojebjj-front-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.mojebjj-front-section--fightivo {
  background: #0f1014;
  color: #fff;
}

.mojebjj-front-fightivo {
  display: grid;
  gap: 22px;
  align-items: center;
}

.mojebjj-front-fightivo__visual {
  min-height: 260px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
}

.mojebjj-front-fightivo__content p {
  color: rgba(255, 255, 255, 0.76);
}

.mojebjj-front-faq__item {
  background: #fff;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 18px;
  padding: 0 18px;
  box-shadow: var(--moje-shadow);
}

.mojebjj-front-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  font-weight: 800;
}

.mojebjj-front-faq__item summary::-webkit-details-marker {
  display: none;
}

.mojebjj-front-faq__item summary::after {
  content: '+';
  color: var(--moje-red);
  font-size: 24px;
  line-height: 1;
}

.mojebjj-front-faq__item[open] summary::after {
  content: '−';
}

.mojebjj-front-faq__item div {
  padding: 0 0 18px;
}

.mojebjj-front-footer {
  background: #09090c;
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0;
}

.mojebjj-front-footer__inner {
  grid-template-columns: 1fr;
}

.mojebjj-front-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
}

.mojebjj-front-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mojebjj-front-footer li a:hover,
.mojebjj-front-nav a:hover {
  color: #fff;
}

@media (min-width: 700px) {
  .mojebjj-front-container {
    width: min(var(--moje-container), calc(100% - 48px));
  }

  .mojebjj-front-hero__inner,
  .mojebjj-front-split,
  .mojebjj-front-fightivo {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .mojebjj-front-audience-grid--compact,
  .mojebjj-front-features-grid,
  .mojebjj-front-steps,
  .mojebjj-front-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mojebjj-front-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mojebjj-front-phone-wrap {
    justify-content: flex-end;
  }
}

@media (min-width: 960px) {
  .mojebjj-front-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .mojebjj-front-menu-toggle {
    display: none;
  }

  .mojebjj-front-nav {
    display: flex;
    grid-column: auto;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0;
  }

  .mojebjj-front-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mojebjj-front-audience-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mojebjj-front-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mojebjj-front-audience-grid,
  .mojebjj-front-columns-3,
  .mojebjj-front-columns-2,
  .mojebjj-front-steps,
  .mojebjj-front-footer__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mojebjj-front-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mojebjj-front-audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mojebjj-front-footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}


/* 1.0.3 role cards refresh */
.mojebjj-front-role-card--visual {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mojebjj-front-role-card--visual .mojebjj-front-role-card__image {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--moje-shadow);
  border: 1px solid rgba(17, 18, 22, 0.08);
  background-size: cover;
  background-position: center;
}

.mojebjj-front-role-card--visual .mojebjj-front-role-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 20, 0.06) 0%, rgba(10, 12, 20, 0.16) 38%, rgba(8, 12, 24, 0.82) 100%);
}

.mojebjj-front-role-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 24px;
  color: #fff;
}

.mojebjj-front-role-card__overlay h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
}

.mojebjj-front-role-card__overlay p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.mojebjj-front-role-card--visual .mojebjj-front-role-card__body {
  display: none;
}

@media (min-width: 768px) {
  .mojebjj-front-role-card--visual .mojebjj-front-role-card__image {
    min-height: 360px;
  }

  .mojebjj-front-role-card__overlay {
    padding: 28px;
  }
}


/* 1.0.6 sharper role visuals */
.mojebjj-front-role-card--visual .mojebjj-front-role-card__image {
  min-height: 330px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: auto;
}

@media (max-width: 699px) {
  .mojebjj-front-role-card--visual .mojebjj-front-role-card__image {
    min-height: 300px;
  }
}

@media (min-width: 768px) {
  .mojebjj-front-role-card--visual .mojebjj-front-role-card__image {
    min-height: 380px;
  }
}

.mojebjj-front-profile-card__edit-pill,
.mojebjj-front-profile-card__avatar-edit,
.mojebjj-front-profile-card__fab {
  display: none !important;
}

.mojebjj-front-live-map {
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 22, 0.08);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.mojebjj-front-map-note {
  margin: 14px 0 0;
  color: #6d6f7a;
  font-size: 14px;
}

.mojebjj-front-map-marker {
  background: transparent;
  border: none;
}

.mojebjj-front-map-marker__ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  border: 3px solid #0f2f6d;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
}

.mojebjj-front-map-marker__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mojebjj-front-club-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.mojebjj-front-club-modal[hidden],
.mojebjj-front-toast[hidden] {
  display: none !important;
}

.mojebjj-front-club-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(6px);
}

.mojebjj-front-club-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(540px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  margin: 12px auto;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.mojebjj-front-club-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.mojebjj-front-club-preview__cover {
  position: relative;
  height: 190px;
  background: #101114;
}

.mojebjj-front-club-preview__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mojebjj-front-club-preview__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.55));
}

.mojebjj-front-club-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.mojebjj-front-club-preview__logo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.mojebjj-front-club-preview__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mojebjj-front-club-preview__medals {
  display: flex;
  gap: 8px;
  padding-bottom: 8px;
}

.mojebjj-front-club-preview__medal {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #111216;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.mojebjj-front-club-preview__medal--gold { background: #f2c94c; }
.mojebjj-front-club-preview__medal--silver { background: #d1d5db; }
.mojebjj-front-club-preview__medal--bronze { background: #cd7f32; color: #fff; }

.mojebjj-front-club-preview__body {
  padding: 18px 20px 22px;
}

.mojebjj-front-club-preview__eyebrow {
  margin: 0 0 8px;
  color: #e11b22;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mojebjj-front-club-preview__body h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.mojebjj-front-club-preview__city,
.mojebjj-front-club-preview__description {
  color: #60636e;
}

.mojebjj-front-club-preview__city {
  margin: 8px 0 0;
}

.mojebjj-front-club-preview__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.mojebjj-front-club-preview__meta-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: #f5f6fa;
}

.mojebjj-front-club-preview__meta-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6d6f7a;
}

.mojebjj-front-club-preview__meta-item strong {
  display: block;
  font-size: 14px;
  color: #111216;
}

.mojebjj-front-club-preview__description {
  margin: 16px 0 0;
}

.mojebjj-front-club-preview__actions,
.mojebjj-front-club-preview__panels {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mojebjj-front-club-preview__actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mojebjj-front-club-preview__panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mojebjj-front-club-preview__button,
.mojebjj-front-club-preview__panel {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  background: #fff;
  color: #111216;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mojebjj-front-club-preview__button:hover,
.mojebjj-front-club-preview__panel:hover {
  transform: translateY(-1px);
}

.mojebjj-front-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 130;
  transform: translateX(-50%);
  min-width: min(420px, calc(100% - 24px));
  max-width: calc(100% - 24px);
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.94);
  color: #fff;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

@media (max-width: 767px) {
  .mojebjj-front-live-map {
    height: 280px;
  }

  .mojebjj-front-club-preview__actions,
  .mojebjj-front-club-preview__panels {
    grid-template-columns: 1fr;
  }

  .mojebjj-front-club-preview__body h3 {
    font-size: 24px;
  }
}


/* 1.0.18 fix: klub modal nad leaflet map */
.mojebjj-front-club-modal {
  z-index: 10050;
}

.mojebjj-front-club-modal__backdrop {
  z-index: 10051;
}

.mojebjj-front-club-modal__dialog {
  z-index: 10052;
}

.mojebjj-front-club-modal__close {
  z-index: 10053;
}

.mojebjj-front-live-map,
.mojebjj-front-live-map .leaflet-pane,
.mojebjj-front-live-map .leaflet-top,
.mojebjj-front-live-map .leaflet-bottom,
.mojebjj-front-live-map .leaflet-control,
.mojebjj-front-live-map .leaflet-control-container,
.mojebjj-front-live-map .leaflet-map-pane,
.mojebjj-front-live-map .leaflet-popup-pane,
.mojebjj-front-live-map .leaflet-marker-pane,
.mojebjj-front-live-map .leaflet-shadow-pane,
.mojebjj-front-live-map .leaflet-overlay-pane,
.mojebjj-front-live-map .leaflet-tile-pane {
  z-index: auto;
}


/* 1.0.20: twarda blokada przycisków w publicznym podglądzie klubu */
.mojebjj-front-club-preview__button,
.mojebjj-front-club-preview__panel,
.mojebjj-front-club-preview [data-front-login-toast],
.mojebjj-front-club-preview [data-front-locked-action="1"] {
  cursor: not-allowed;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mojebjj-front-toast.is-visible {
  animation: mojeBjjFrontToastIn .18s ease-out;
}

@keyframes mojeBjjFrontToastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}


/* 1.0.21 */
.mojebjj-front-toast {
  z-index: 10060;
}

.mojebjj-front-club-preview__button,
.mojebjj-front-club-preview__panel {
  position: relative;
  z-index: 1;
  touch-action: manipulation;
}

/* Single post layout */
.mojebjj-front-header--solid {
    background: rgba(7, 10, 17, 0.96);
    position: sticky;
    top: 0;
    z-index: 60;
}

.mojebjj-front-post-main {
    background: linear-gradient(180deg, #0a0f19 0%, #101826 100%);
    min-height: 100vh;
}

.mojebjj-front-post-shell {
    padding: 32px 0 72px;
}

.mojebjj-front-post-shell__inner {
    max-width: 980px;
}

.mojebjj-front-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.mojebjj-front-breadcrumbs a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
}

.mojebjj-front-breadcrumbs strong {
    color: #fff;
    font-weight: 700;
}

.mojebjj-front-post-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.mojebjj-front-post-card__top {
    padding: 28px 28px 18px;
}

.mojebjj-front-post-card__meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.mojebjj-front-post-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #b81117;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mojebjj-front-post-meta {
    color: #5a6476;
    font-size: 14px;
    font-weight: 600;
}

.mojebjj-front-post-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    color: #0e1522;
}

.mojebjj-front-post-actions {
    margin-top: 22px;
}

.mojebjj-front-post-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
}

.mojebjj-front-post-content {
    padding: 30px 28px 34px;
    color: #172132;
    font-size: 18px;
    line-height: 1.8;
}

.mojebjj-front-post-content > *:first-child {
    margin-top: 0;
}

.mojebjj-front-post-content h2,
.mojebjj-front-post-content h3,
.mojebjj-front-post-content h4 {
    color: #0e1522;
    margin-top: 1.6em;
    margin-bottom: 0.65em;
    line-height: 1.2;
}

.mojebjj-front-post-content p,
.mojebjj-front-post-content ul,
.mojebjj-front-post-content ol,
.mojebjj-front-post-content blockquote {
    margin: 0 0 1.15em;
}

.mojebjj-front-post-content a {
    color: #b81117;
    font-weight: 700;
}

.mojebjj-front-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.mojebjj-front-post-content blockquote {
    margin-left: 0;
    padding: 18px 20px;
    border-left: 4px solid #b81117;
    background: #f5f7fb;
    border-radius: 12px;
}

.mojebjj-front-related-posts {
    margin-top: 28px;
}

.mojebjj-front-panel__head--single {
    margin-bottom: 16px;
}

.mojebjj-front-news-list--single {
    background: transparent;
}

@media (max-width: 767px) {
    .mojebjj-front-post-shell {
        padding: 20px 0 48px;
    }

    .mojebjj-front-post-card {
        border-radius: 18px;
    }

    .mojebjj-front-post-card__top,
    .mojebjj-front-post-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .mojebjj-front-post-content {
        font-size: 16px;
        line-height: 1.7;
    }

    .mojebjj-front-post-title {
        font-size: 30px;
    }
}


/* v1.0.30 readability + logo glow */
.mojebjj-front-page--single-post .mojebjj-front-related-posts .mojebjj-front-panel__head h2,
.mojebjj-front-page--single-post .mojebjj-front-related-posts .mojebjj-front-news-item,
.mojebjj-front-page--single-post .mojebjj-front-related-posts .mojebjj-front-news-item__body strong,
.mojebjj-front-page--single-post .mojebjj-front-related-posts .mojebjj-front-news-item__body small {
    color: #ffffff;
}

.mojebjj-front-page--single-post .mojebjj-front-related-posts .mojebjj-front-news-item {
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.mojebjj-front-page--single-post .mojebjj-front-related-posts .mojebjj-front-news-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mojebjj-front-brand img {
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.14)) drop-shadow(0 0 18px rgba(225, 27, 34, 0.22));
    animation: mojebjjLogoPulse 3.6s ease-in-out infinite;
    will-change: filter, transform;
}

@keyframes mojebjjLogoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.14)) drop-shadow(0 0 16px rgba(225, 27, 34, 0.16));
        transform: translateZ(0) scale(1);
        opacity: 0.97;
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(255,255,255,0.26)) drop-shadow(0 0 28px rgba(225, 27, 34, 0.28));
        transform: translateZ(0) scale(1.01);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mojebjj-front-brand img {
        animation: none;
    }
}


/* v1.0.32 logo organic halo background */
.mojebjj-front-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.mojebjj-front-brand::before,
.mojebjj-front-brand::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.mojebjj-front-brand::before {
  left: 3%;
  right: 3%;
  top: 14%;
  bottom: 16%;
  background:
    radial-gradient(ellipse at 16% 50%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.14) 18%, transparent 40%),
    radial-gradient(ellipse at 48% 50%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.14) 24%, transparent 48%),
    radial-gradient(ellipse at 82% 50%, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.16) 20%, transparent 42%);
  filter: blur(14px);
  opacity: 1;
}

.mojebjj-front-brand::after {
  left: 38%;
  right: 4%;
  top: 20%;
  bottom: 22%;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(225, 27, 34, 0.18) 0%, rgba(225, 27, 34, 0.14) 28%, transparent 52%),
    radial-gradient(ellipse at 88% 52%, rgba(225, 27, 34, 0.16) 0%, rgba(225, 27, 34, 0.08) 22%, transparent 46%);
  filter: blur(16px);
  opacity: 0.92;
}

.mojebjj-front-brand img {
  position: relative;
  z-index: 1;
}

.mojebjj-front-brand--footer {
  margin-bottom: 12px;
}

@media (max-width: 699px) {
  .mojebjj-front-brand::before {
    left: 1%;
    right: 1%;
    top: 16%;
    bottom: 18%;
    filter: blur(11px);
  }

  .mojebjj-front-brand::after {
    left: 34%;
    right: 2%;
    top: 22%;
    bottom: 24%;
    filter: blur(12px);
  }
}


.mojebjj-front-map-marker__ring.is-active {
  border-color: #22a55b;
}

.mojebjj-front-map-marker__ring.is-inactive {
  border-color: #dc5b52;
}

.mojebjj-front-club-preview__topline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mojebjj-front-club-preview__status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mojebjj-front-club-preview__status.is-active {
  background: rgba(34, 165, 91, .12);
  color: #1a8a49;
}

.mojebjj-front-club-preview__status.is-inactive {
  background: rgba(220, 91, 82, .12);
  color: #c73f36;
}

.mojebjj-front-club-preview__cta {
  margin-top: 16px;
}

.mojebjj-front-club-preview__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: #0f2f6d;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
