/* Palette and shell tokens inspired by the reference: burgundy stage, neon pink CTA, warm gold glow. */
body.mb-site,
.mb-site-header,
.mb-page-strip,
.mb-site-footer,
.mb-site-drawer,
.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  --mb-font: "Inter", "Noto Sans", "Noto Sans Arabic", "Segoe UI", Arial, sans-serif;

  --mb-container: 1120px;
  --mb-radius-xl: 28px;
  --mb-radius-lg: 22px;
  --mb-radius-md: 16px;
  --mb-radius-sm: 12px;

  --mb-bg: #26020c;
  --mb-bg-2: #3d0414;
  --mb-bg-3: #120006;
  --mb-panel: #350612;
  --mb-panel-2: #4a0a1d;
  --mb-panel-3: #5b0d25;

  --mb-primary: #d91568;
  --mb-primary-2: #ff2d8f;
  --mb-gold: #ffad39;
  --mb-gold-2: #ffd66b;
  --mb-red: #d7193f;
  --mb-teal: var(--mb-primary);

  --mb-text: #fff7f3;
  --mb-text-soft: #f6dfe6;
  --mb-muted: #d7aeba;
  --mb-muted-2: #b88291;

  --mb-line: rgba(255, 198, 99, 0.2);
  --mb-border: rgba(255, 198, 99, 0.2);
  --mb-line-strong: rgba(255, 214, 107, 0.42);
  --mb-border-strong: rgba(255, 214, 107, 0.42);

  --mb-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --mb-glow-pink: 0 0 34px rgba(255, 45, 143, 0.38);
  --mb-glow-gold: 0 0 34px rgba(255, 173, 57, 0.3);

  --mb-page-gutter: clamp(14px, 4vw, 28px);
  --mb-section-gap: clamp(30px, 5vw, 58px);
  --mb-block-gap: clamp(18px, 3vw, 30px);
  --mb-card-pad: clamp(18px, 3vw, 28px);
  --mb-hero-pad: clamp(18px, 4vw, 36px);
}

body.mb-site {
  font-family: var(--mb-font);
  color: var(--mb-text);
  direction: ltr;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 173, 57, 0.22) 0 18%, transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(255, 45, 143, 0.22) 0 18%, transparent 38%),
    radial-gradient(circle at 10% 18%, rgba(215, 25, 63, 0.2) 0 20%, transparent 42%),
    linear-gradient(180deg, #2a020c 0%, #420416 44%, #180006 100%);
  background-attachment: fixed;
}

.mb-site-header,
.mb-page-strip,
.mb-site-footer,
.mb-site-drawer {
  font-family: var(--mb-font);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article),
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) *,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) *::before,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) *::after,
body.mb-site .mb-site-header,
body.mb-site .mb-site-header *,
body.mb-site .mb-page-strip,
body.mb-site .mb-page-strip *,
body.mb-site .mb-site-footer,
body.mb-site .mb-site-footer *,
body.mb-site .mb-site-drawer,
body.mb-site .mb-site-drawer *,
body.mb-site .mb-site-main {
  box-sizing: border-box;
}

body.mb-site .mb-site-main {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(18px, 4vw, 34px) var(--mb-page-gutter) clamp(34px, 6vw, 72px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  padding: clamp(16px, 3.6vw, 28px);
  box-sizing: border-box;
  direction: ltr;
  text-align: start;
  font-family: var(--mb-font);
  color: var(--mb-text);
  line-height: 1.68;
  overflow-wrap: break-word;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 173, 57, 0.12), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(255, 45, 143, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(53, 6, 18, 0.96), rgba(23, 0, 8, 0.98));
  border: 1px solid rgba(255, 198, 99, 0.14);
  border-radius: var(--mb-radius-xl);
  box-shadow: var(--mb-shadow);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-article__inner {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) > :first-child {
  margin-block-start: 0;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) > :last-child {
  margin-block-end: 0;
}

/* Header and top navigation */
body.mb-site .mb-topbar {
  width: 100%;
  color: var(--mb-muted);
  background: rgba(18, 0, 6, 0.82);
  border-bottom: 1px solid rgba(255, 198, 99, 0.12);
}

body.mb-site .mb-topbar__inner {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  padding: 7px var(--mb-page-gutter);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

body.mb-site .mb-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  color: var(--mb-text);
  background: rgba(36, 2, 12, 0.76);
  border-bottom: 1px solid rgba(255, 198, 99, 0.18);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

body.mb-site .mb-site-header__inner {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  padding: 10px var(--mb-page-gutter);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 18px);
}

body.mb-site .mb-site-brand {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mb-text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.mb-site .mb-site-brand__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 40px;
  aspect-ratio: 800 / 128;
  object-fit: contain;
}

body.mb-site .mb-site-brand__name {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.mb-site .mb-site-nav {
  flex: 2 1 auto;
  min-width: 0;
  max-width: 100%;
}

body.mb-site .mb-site-nav__list {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

body.mb-site .mb-site-nav__list::-webkit-scrollbar {
  display: none;
}

body.mb-site .mb-site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--mb-text-soft);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 198, 99, 0.14);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body.mb-site .mb-site-nav__link:hover,
body.mb-site .mb-site-nav__link:focus-visible,
body.mb-site .mb-site-nav__link[aria-current="page"] {
  color: #ffffff;
  background: rgba(217, 21, 104, 0.28);
  border-color: rgba(255, 45, 143, 0.58);
  outline: none;
}

body.mb-site .mb-site-header__actions {
  flex: 0 0 auto;
  flex-shrink: 0;
  min-width: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

body.mb-site .mb-site-btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 80, 160, 0.52);
  color: #ffffff;
  background: linear-gradient(180deg, #f22b87 0%, #c90f5e 100%);
  box-shadow: 0 0 22px rgba(255, 45, 143, 0.38);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.1;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

body.mb-site a.mb-site-btn,
body.mb-site a.mb-site-btn:visited {
  color: #ffffff;
}

body.mb-site .mb-site-btn:hover,
body.mb-site .mb-site-btn:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  filter: brightness(1.07);
  box-shadow: 0 0 30px rgba(255, 45, 143, 0.52);
  outline: none;
}

body.mb-site .mb-site-btn--apk {
  color: var(--mb-gold-2);
  background: rgba(255, 173, 57, 0.08);
  border-color: rgba(255, 214, 107, 0.55);
  box-shadow: none;
}

body.mb-site a.mb-site-btn--apk,
body.mb-site a.mb-site-btn--apk:visited {
  color: var(--mb-gold-2);
}

body.mb-site .mb-site-btn--apk:hover,
body.mb-site .mb-site-btn--apk:focus-visible {
  color: #2a020c;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
  border-color: rgba(255, 214, 107, 0.82);
}

body.mb-site .mb-site-burger {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  min-width: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--mb-text);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 198, 99, 0.22);
  cursor: pointer;
}

/* Off-canvas drawer colors and viewport-safe sizing. */
body.mb-site .mb-site-drawer {
  position: fixed;
  inset: auto;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  color: var(--mb-text);
  font-family: var(--mb-font);
}

@supports not (height: 100dvh) {
  body.mb-site .mb-site-drawer {
    height: 100vh;
  }
}

body.mb-site .mb-site-drawer__panel {
  height: 100%;
  min-height: 100dvh;
  color: var(--mb-text);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 45, 143, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(53, 6, 18, 0.98), rgba(18, 0, 6, 0.98));
  border-color: rgba(255, 198, 99, 0.2);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

body.mb-site .mb-site-drawer__panel::-webkit-scrollbar {
  display: none;
}

body.mb-site .mb-site-drawer__link {
  color: var(--mb-text-soft);
  text-decoration: none;
  border-color: rgba(255, 198, 99, 0.16);
}

body.mb-site .mb-site-drawer__link:hover,
body.mb-site .mb-site-drawer__link:focus-visible {
  color: #ffffff;
  background: rgba(217, 21, 104, 0.22);
  border-color: rgba(255, 45, 143, 0.45);
  outline: none;
}

body.mb-site .mb-site-drawer__cta,
body.mb-site .mb-site-drawer__cta--apk {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

body.mb-site .mb-site-drawer__cta {
  color: #ffffff;
  background: linear-gradient(180deg, #f22b87 0%, #c90f5e 100%);
  border-color: rgba(255, 80, 160, 0.55);
}

body.mb-site .mb-site-drawer__cta--apk {
  color: #2a020c;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
  border-color: rgba(255, 214, 107, 0.75);
}

/* Breadcrumbs and title strip */
body.mb-site .mb-page-strip {
  width: 100%;
  color: var(--mb-muted);
  background: rgba(18, 0, 6, 0.58);
  border-bottom: 1px solid rgba(255, 198, 99, 0.12);
}

body.mb-site .mb-page-strip__inner {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  padding: 8px var(--mb-page-gutter);
  font-size: 13px;
  line-height: 1.45;
}

body.mb-site .mb-page-strip a {
  color: var(--mb-text-soft);
  text-decoration: none;
}

body.mb-site .mb-page-strip a:hover,
body.mb-site .mb-page-strip a:focus-visible {
  color: var(--mb-gold-2);
  outline: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-title-strip {
  width: 100%;
  max-width: var(--mb-container);
  margin: 0 auto var(--mb-section-gap);
  padding: clamp(18px, 4vw, 34px);
  border-radius: var(--mb-radius-lg);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 45, 143, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(91, 13, 37, 0.92), rgba(42, 2, 12, 0.96));
  border: 1px solid rgba(255, 198, 99, 0.2);
}

/* Footer */
body.mb-site .mb-site-footer {
  width: 100%;
  color: var(--mb-text-soft);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 173, 57, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(23, 0, 8, 0.96), rgba(10, 0, 4, 0.98));
  border-top: 1px solid rgba(255, 198, 99, 0.18);
}

body.mb-site .mb-site-footer__inner {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  padding: clamp(26px, 5vw, 48px) var(--mb-page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.7fr);
  align-items: start;
  gap: clamp(20px, 4vw, 42px);
}

body.mb-site .mb-site-footer__brand {
  min-width: 0;
}

body.mb-site .mb-site-footer__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 42px;
  aspect-ratio: 800 / 128;
  object-fit: contain;
}

body.mb-site .mb-site-footer__copy {
  margin-block: 14px 0;
  color: var(--mb-muted);
  font-size: 14px;
  line-height: 1.65;
}

body.mb-site .mb-footer-nav {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
}

body.mb-site .mb-footer-nav__list {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

body.mb-site .mb-footer-nav__list > li {
  flex: 1 1 auto;
  min-width: min(190px, 100%);
  max-width: 100%;
}

body.mb-site .mb-footer-nav__link {
  width: 100%;
  min-height: 40px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--mb-text-soft);
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 198, 99, 0.14);
}

body.mb-site .mb-footer-nav__link:hover,
body.mb-site .mb-footer-nav__link:focus-visible {
  color: #ffffff;
  background: rgba(217, 21, 104, 0.2);
  border-color: rgba(255, 45, 143, 0.45);
  outline: none;
}

/* Typography */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0.95em;
  margin-block-end: 0.58em;
  max-width: 100%;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(h1, h2, h3, h4, h5, h6):first-child {
  margin-block-start: 0;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h1 {
  font-size: clamp(34px, 6vw, 64px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h2 {
  font-size: clamp(28px, 4.2vw, 46px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h3 {
  font-size: clamp(22px, 3vw, 32px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h4 {
  font-size: clamp(19px, 2.4vw, 24px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h5 {
  font-size: 18px;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h6 {
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) p {
  max-width: 100%;
  margin-block: 0 1em;
  color: var(--mb-text-soft);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) p:last-child {
  margin-block-end: 0;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) strong,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) b {
  color: #ffffff;
  font-weight: 850;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) small {
  color: var(--mb-muted);
  font-size: 0.9em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a:not(.mb-btn) {
  color: var(--mb-gold-2);
  text-decoration-color: rgba(255, 214, 107, 0.42);
  text-underline-offset: 0.18em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a:not(.mb-btn):hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a:not(.mb-btn):focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 45, 143, 0.72);
  outline: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) img,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) svg,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) video {
  max-width: 100%;
  height: auto;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) img {
  display: block;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-measure {
  max-width: min(72ch, 100%);
  margin-inline: auto;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-kicker {
  display: inline-flex;
  max-width: 100%;
  margin-block-end: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--mb-gold-2);
  background: rgba(255, 173, 57, 0.1);
  border: 1px solid rgba(255, 214, 107, 0.28);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Buttons and CTA */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 80, 160, 0.55);
  color: #ffffff;
  background: linear-gradient(180deg, #f22b87 0%, #d91568 48%, #b90c55 100%);
  box-shadow: 0 12px 28px rgba(217, 21, 104, 0.32), var(--mb-glow-pink);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn:visited,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn:hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn:focus-visible {
  color: #ffffff;
  text-decoration: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn:hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 34px rgba(217, 21, 104, 0.42), 0 0 44px rgba(255, 45, 143, 0.52);
  outline: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn--accent {
  color: #25020c;
  background: linear-gradient(180deg, var(--mb-gold-2) 0%, var(--mb-gold) 100%);
  border-color: rgba(255, 214, 107, 0.78);
  box-shadow: 0 12px 28px rgba(255, 173, 57, 0.22), var(--mb-glow-gold);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--accent,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--accent:visited,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--accent:hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--accent:focus-visible {
  color: #25020c;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 214, 107, 0.42);
  box-shadow: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--secondary,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--secondary:visited {
  color: #ffffff;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn--secondary:hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn--secondary:focus-visible {
  color: #25020c;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
  border-color: rgba(255, 214, 107, 0.82);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin: 0 auto var(--mb-section-gap);
  padding: clamp(18px, 4vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 3vw, 24px);
  align-items: center;
  border-radius: var(--mb-radius-lg);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 45, 143, 0.28), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(255, 173, 57, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(91, 13, 37, 0.92), rgba(38, 2, 12, 0.96));
  border: 1px solid rgba(255, 198, 99, 0.22);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  break-inside: avoid;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta__copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta__copy > * {
  max-width: 100%;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta__actions,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__actions {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

@media (min-width: 820px) {
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta:not(.mb-hero > .mb-cta) {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta__actions {
    justify-content: flex-end;
  }
}

/* Rows and media sections */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin: 0 auto var(--mb-section-gap);
  padding: clamp(16px, 3vw, 26px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
  gap: clamp(18px, 4vw, 36px);
  align-items: start;
  border-radius: var(--mb-radius-lg);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 45, 143, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(74, 10, 29, 0.66), rgba(34, 2, 12, 0.82));
  border: 1px solid rgba(255, 198, 99, 0.14);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--reverse:not(.mb-hero) {
  grid-template-areas:
    "copy"
    "media";
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--stack:not(.mb-hero),
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--long:not(.mb-hero) {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--stack.mb-row--reverse:not(.mb-hero),
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--long.mb-row--reverse:not(.mb-hero) {
  grid-template-areas:
    "copy"
    "media";
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-block-start: 0;
  align-self: start;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-copy > *,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-copy p,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-copy ul,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-copy ol {
  max-width: 100%;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  padding-block-start: 0;
  aspect-ratio: 2 / 3;
  align-self: start;
  border-radius: var(--mb-radius-lg);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 198, 99, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32), 0 0 28px rgba(255, 45, 143, 0.16);
  overflow: hidden;
  overflow: clip;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--stack:not(.mb-hero) > .mb-media,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--long:not(.mb-hero) > .mb-media {
  width: 100%;
  max-width: 100%;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-media > a,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__media > a,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media > a {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-media img,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 280ms ease, filter 280ms ease;
}

@media (hover: hover) and (pointer: fine) {
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-media,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__media,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media {
    cursor: pointer;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-media:hover img,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card:hover .mb-card__media img,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media:hover img {
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.04);
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-media:hover,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card:hover .mb-card__media,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media:hover {
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.4), 0 0 42px rgba(255, 45, 143, 0.32);
  }
}

@media (min-width: 900px) {
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row:not(.mb-row--stack):not(.mb-row--long):not(.mb-hero) {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-areas: "copy media";
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--reverse:not(.mb-row--stack):not(.mb-row--long):not(.mb-hero) {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas: "media copy";
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--stack:not(.mb-hero),
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--long:not(.mb-hero) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "copy";
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--stack.mb-row--reverse:not(.mb-hero),
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--long.mb-row--reverse:not(.mb-hero) {
    grid-template-areas:
      "copy"
      "media";
  }
}

/* Hero: single-column grid at every breakpoint, visual order image, CTA, copy. */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin: 0 auto var(--mb-section-gap);
  padding-inline: 0;
  padding-block-start: 0;
  padding-block-end: clamp(18px, 3.5vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "cta"
    "copy";
  gap: 0;
  align-items: start;
  color: var(--mb-text);
  border-radius: var(--mb-radius-xl);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 173, 57, 0.18), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(255, 45, 143, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(74, 10, 29, 0.9), rgba(20, 0, 7, 0.96));
  border: 1px solid rgba(255, 198, 99, 0.22);
  box-shadow: var(--mb-shadow);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--mb-radius-xl);
  border-end-start-radius: clamp(16px, 3vw, 22px);
  border-end-end-radius: clamp(16px, 3vw, 22px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 198, 99, 0.18);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.4), 0 0 46px rgba(255, 173, 57, 0.18);
  overflow: hidden;
  overflow: clip;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 300ms ease, filter 300ms ease;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-inline: var(--mb-hero-pad);
  padding-block: clamp(8px, 2vw, 16px) 0;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__copy > *,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__copy p,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__copy ul,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__copy ol {
  max-width: 100%;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__badge {
  display: inline-flex;
  max-width: 100%;
  margin-block-end: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--mb-gold-2);
  background: rgba(255, 173, 57, 0.1);
  border: 1px solid rgba(255, 214, 107, 0.32);
  box-shadow: none;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: default;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero h1 {
  margin-block: 0 0.34em;
  font-size: clamp(34px, 6.3vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__lead {
  margin-block: 0;
  color: var(--mb-text-soft);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.52;
  font-weight: 560;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero > .mb-cta {
  grid-area: cta;
  width: calc(100% - var(--mb-hero-pad) - var(--mb-hero-pad));
  max-width: calc(100% - var(--mb-hero-pad) - var(--mb-hero-pad));
  min-width: 0;
  margin-inline: var(--mb-hero-pad);
  margin-block: clamp(14px, 3vw, 24px);
}

/* Grids and cards */
.mb-article .mb-grid,
.mb-article .mb-slot-grid,
.mbpk-article .mb-grid,
.mbpk-article .mb-slot-grid,
.mbpk-page .mb-article .mb-grid,
.mbpk-page .mb-article .mb-slot-grid {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin: 0 auto var(--mb-section-gap);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 3vw, 24px);
}

.mb-article .mb-grid > .mb-card,
.mb-article .mb-slot-grid > .mb-card,
.mbpk-article .mb-grid > .mb-card,
.mbpk-article .mb-slot-grid > .mb-card,
.mbpk-page .mb-article .mb-grid > .mb-card,
.mbpk-page .mb-article .mb-slot-grid > .mb-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--mb-text-soft);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 45, 143, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(74, 10, 29, 0.78), rgba(34, 2, 12, 0.92));
  border: 1px solid rgba(255, 198, 99, 0.16);
  border-radius: var(--mb-radius-lg);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  break-inside: avoid;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  aspect-ratio: 2 / 3;
  border-radius: var(--mb-radius-lg);
  border-end-start-radius: var(--mb-radius-md);
  border-end-end-radius: var(--mb-radius-md);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  overflow: clip;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: var(--mb-card-pad);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__title,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card h3 {
  margin-block-start: 0;
  margin-block-end: 0.55em;
  color: #ffffff;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__copy,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__copy p,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card p,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card ul,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card ol {
  max-width: 100%;
}

@media (min-width: 640px) and (max-width: 979.98px) {
  .mb-article .mb-grid,
  .mb-article .mb-slot-grid,
  .mbpk-article .mb-grid,
  .mbpk-article .mb-slot-grid,
  .mbpk-page .mb-article .mb-grid,
  .mbpk-page .mb-article .mb-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .mb-article .mb-grid,
  .mb-article .mb-slot-grid,
  .mbpk-article .mb-grid,
  .mbpk-article .mb-slot-grid,
  .mbpk-page .mb-article .mb-grid,
  .mbpk-page .mb-article .mb-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mb-article .mb-grid--orphan-fix,
  .mb-article .mb-slot-grid--orphan-fix,
  .mbpk-article .mb-grid--orphan-fix,
  .mbpk-article .mb-slot-grid--orphan-fix,
  .mbpk-page .mb-article .mb-grid--orphan-fix,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .mb-article .mb-grid--orphan-fix > .mb-card,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card,
  .mbpk-article .mb-grid--orphan-fix > .mb-card,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card {
    grid-column: span 2;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2) {
    grid-column: span 3;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
    border-start-end-radius: var(--mb-radius-lg);
    border-end-end-radius: var(--mb-radius-lg);
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body) {
    grid-column: 1;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: var(--mb-card-pad);
  }
}

/* Lists */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) ul,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) ol {
  width: 100%;
  max-width: 100%;
  margin-block: 0 1.05em;
  padding-inline-start: 1.35em;
  color: var(--mb-text-soft);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) li {
  max-width: 100%;
  margin-block: 0.42em;
  padding-inline-start: 0.12em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) li::marker {
  color: var(--mb-gold-2);
  font-weight: 900;
}

/* FAQ */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin: 0 auto var(--mb-section-gap);
  display: grid;
  gap: 12px;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq details {
  max-width: 100%;
  min-width: 0;
  border-radius: var(--mb-radius-md);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 198, 99, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  break-inside: avoid;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq summary {
  min-width: 0;
  padding: 16px 18px;
  color: #ffffff;
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  text-align: start;
  overflow-wrap: anywhere;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq summary::marker {
  color: var(--mb-gold-2);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq details[open] {
  border-color: rgba(255, 45, 143, 0.36);
  background: rgba(217, 21, 104, 0.09);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq details > :not(summary) {
  max-width: 100%;
  padding-inline: 18px;
  padding-block-end: 16px;
}

/* Tables: horizontal scroll is contained by the wrapper. */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block: clamp(20px, 4vw, 34px) var(--mb-section-gap);
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(255, 198, 99, 0.2);
  background: rgba(18, 0, 6, 0.7);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  scrollbar-color: rgba(255, 45, 143, 0.55) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  break-inside: avoid;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-table-wrap::-webkit-scrollbar {
  height: 10px;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--mb-primary), var(--mb-gold));
  border-radius: 999px;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table {
  width: 100%;
  min-width: 580px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  direction: ltr;
  color: var(--mb-text-soft);
  background: transparent;
  text-align: start;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table caption {
  padding: 14px 16px;
  color: var(--mb-muted);
  text-align: start;
  caption-side: bottom;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table th,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table td {
  padding: 13px 15px;
  border-inline-end: 1px solid rgba(255, 198, 99, 0.13);
  border-block-end: 1px solid rgba(255, 198, 99, 0.13);
  vertical-align: top;
  text-align: start;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table th {
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(217, 21, 104, 0.28), rgba(91, 13, 37, 0.72));
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table td {
  background: rgba(255, 255, 255, 0.035);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.055);
}

/* Separators and supporting blocks */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-divider {
  width: 100%;
  max-width: var(--mb-container);
  height: 1px;
  margin: var(--mb-section-gap) auto;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 173, 57, 0.58), rgba(255, 45, 143, 0.58), transparent);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) blockquote {
  width: 100%;
  max-width: 100%;
  margin: 0 0 var(--mb-block-gap);
  padding: clamp(16px, 3vw, 24px);
  border-inline-start: 4px solid var(--mb-primary-2);
  border-radius: var(--mb-radius-md);
  color: var(--mb-text-soft);
  background: rgba(255, 255, 255, 0.055);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) code,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) kbd {
  padding: 0.16em 0.38em;
  border-radius: 0.42em;
  color: var(--mb-gold-2);
  background: rgba(255, 173, 57, 0.1);
  border: 1px solid rgba(255, 214, 107, 0.18);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) pre {
  max-width: 100%;
  margin-block: 0 var(--mb-block-gap);
  padding: 16px;
  overflow-x: auto;
  border-radius: var(--mb-radius-md);
  color: var(--mb-text-soft);
  background: rgba(10, 0, 4, 0.78);
  border: 1px solid rgba(255, 198, 99, 0.16);
}

/* Direction and mixed English/Urdu support */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article)[dir="rtl"],
[dir="rtl"] :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) {
  direction: rtl;
  text-align: start;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article)[dir="rtl"] table.mb-table,
[dir="rtl"] :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table {
  direction: rtl;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :lang(ur),
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) [lang|="ur"] {
  direction: rtl;
  text-align: start;
  line-height: 1.9;
  unicode-bidi: isolate;
}

/* Responsive shell and content safety */
@media (max-width: 1023.98px) {
  body.mb-site .mb-site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  body.mb-site .mb-site-brand {
    flex: 1 1 0;
    min-width: 0;
  }

  body.mb-site .mb-site-brand__logo {
    max-height: clamp(26px, 7.5vw, 40px);
    max-width: 100%;
  }

  body.mb-site .mb-site-nav {
    display: none;
  }

  body.mb-site .mb-site-header__actions {
    flex: 0 0 auto;
    flex-shrink: 0;
  }

  body.mb-site .mb-site-btn {
    display: inline-flex;
  }
}

@media (max-width: 767.98px) {
  body.mb-site .mb-site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  body.mb-site .mb-footer-nav__list > li {
    min-width: min(150px, 100%);
  }
}

@media (max-width: 639.98px) {
  body.mb-site .mb-site-main {
    padding: 14px var(--mb-page-gutter) 34px;
  }

  body.mb-site .mb-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  body.mb-site .mb-site-header__inner {
    padding-block: 8px;
    gap: 6px;
  }

  body.mb-site .mb-site-brand__logo {
    max-height: clamp(26px, 7.5vw, 38px);
  }

  body.mb-site .mb-site-btn {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 12px;
    line-height: 1.12;
  }

  body.mb-site .mb-site-burger {
    width: 30px;
    height: 30px;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) {
    max-width: 100%;
    padding: 14px;
    border-radius: 0;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta,
  .mb-article .mb-grid,
  .mb-article .mb-slot-grid,
  .mbpk-article .mb-grid,
  .mbpk-article .mb-slot-grid,
  .mbpk-page .mb-article .mb-grid,
  .mbpk-page .mb-article .mb-slot-grid,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-table-wrap {
    max-width: 100%;
    min-width: 0;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row {
    padding: 14px;
    gap: 16px;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero {
    border-radius: 20px;
    padding-block-end: 18px;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media {
    border-radius: 20px;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__copy {
    padding-inline: 16px;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero > .mb-cta {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin-inline: 16px;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta {
    padding: 16px;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta__actions,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta__actions .mb-btn,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__actions .mb-btn,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero > .mb-cta .mb-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-copy,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-media,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__body,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__media,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__copy,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media {
    max-width: 100%;
    min-width: 0;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table {
    min-width: 580px;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table th,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table td {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) *,
  body.mb-site .mb-site-header *,
  body.mb-site .mb-site-footer *,
  body.mb-site .mb-site-drawer * {
    transition-duration: 0.001ms;
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
  }
}
/* Подпись CTA-блока: раньше была <h3> и давала пропуск уровня h1→h3 (стандарт флота §1.4).
   Тег сменён на <p>, типографика сохранена один в один. */
.mb-article .mb-cta__title,
.mbpk-article .mb-cta__title {
  color: var(--mb-text);
  font-family: var(--mb-font);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-block-start: 0;
  margin-block-end: 0.62em;
  overflow-wrap: anywhere;
  break-after: avoid;
  font-size: clamp(1.32rem, 3vw, 2rem);
}

/* fair-pages-kit: Beautiful Site TOC (converter-injected) */
.mb-article .mb-toc,
.mbpk-article .mb-toc,
.mbpk-page .mb-article .mb-toc {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block-end: var(--mb-stack-gap, var(--mb-space-7, clamp(20px, 4vw, 42px)));
  padding: clamp(20px, 4vw, 36px) var(--mb-page-pad, var(--mb-gutter, clamp(16px, 3.4vw, 28px)));
  border: 1px solid var(--mb-border, rgba(255, 255, 255, 0.12));
  border-radius: var(--mb-radius-lg, 22px);
  background:
    radial-gradient(circle at 88% 10%, rgba(227, 178, 87, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(36, 16, 8, 0.94), rgba(27, 11, 5, 0.88));
  box-shadow: var(--mb-shadow, 0 22px 70px rgba(0, 0, 0, 0.42));
}

.mb-article .mb-toc__summary,
.mbpk-article .mb-toc__summary,
.mbpk-page .mb-article .mb-toc__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mb-article .mb-toc__summary::-webkit-details-marker,
.mbpk-article .mb-toc__summary::-webkit-details-marker,
.mbpk-page .mb-article .mb-toc__summary::-webkit-details-marker {
  display: none;
}

.mb-article .mb-toc__summary::after,
.mbpk-article .mb-toc__summary::after,
.mbpk-page .mb-article .mb-toc__summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--mb-border-strong, rgba(255, 255, 255, 0.24));
  border-radius: var(--mb-radius-sm, 12px);
  color: var(--mb-gold-2, #ffd985);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mb-article .mb-toc[open] .mb-toc__summary::after,
.mbpk-article .mb-toc[open] .mb-toc__summary::after,
.mbpk-page .mb-article .mb-toc[open] .mb-toc__summary::after {
  content: "−";
}

.mb-article .mb-toc__title,
.mbpk-article .mb-toc__title,
.mbpk-page .mb-article .mb-toc__title {
  margin: 0;
  color: var(--mb-gold-2, #ffd985);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.25;
}

.mb-article .mb-toc__list,
.mbpk-article .mb-toc__list,
.mbpk-page .mb-article .mb-toc__list {
  margin: clamp(14px, 2.5vw, 20px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(8px, 1.5vw, 12px);
}

.mb-article .mb-toc__list--sub,
.mbpk-article .mb-toc__list--sub,
.mbpk-page .mb-article .mb-toc__list--sub {
  margin: clamp(8px, 1.5vw, 10px) 0 0;
  padding-left: clamp(12px, 2vw, 18px);
  border-left: 1px solid var(--mb-border, rgba(255, 255, 255, 0.12));
}

.mb-article .mb-toc__item,
.mbpk-article .mb-toc__item,
.mbpk-page .mb-article .mb-toc__item {
  margin: 0;
}

.mb-article .mb-toc__link,
.mbpk-article .mb-toc__link,
.mbpk-page .mb-article .mb-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--mb-radius-sm, 12px);
  color: var(--mb-text, var(--mb-ink, #f2f2ee));
  text-decoration: none;
  background: rgba(255, 246, 220, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.mb-article .mb-toc__num,
.mbpk-article .mb-toc__num,
.mbpk-page .mb-article .mb-toc__num {
  flex: 0 0 auto;
  min-width: 2.2rem;
  color: var(--mb-gold, #e3b257);
  font-variant-numeric: tabular-nums;
}

.mb-article .mb-toc__text,
.mbpk-article .mb-toc__text,
.mbpk-page .mb-article .mb-toc__text {
  flex: 1 1 auto;
}

.mb-article .mb-toc__link:hover,
.mbpk-article .mb-toc__link:hover,
.mbpk-page .mb-article .mb-toc__link:hover,
.mb-article .mb-toc__link:focus-visible,
.mbpk-article .mb-toc__link:focus-visible,
.mbpk-page .mb-article .mb-toc__link:focus-visible {
  color: var(--mb-gold-2, #ffd985);
  border-color: var(--mb-border-strong, rgba(255, 255, 255, 0.24));
  background: rgba(227, 178, 87, 0.08);
}

@media (max-width: 640px) {
  .mb-article .mb-toc,
  .mbpk-article .mb-toc,
  .mbpk-page .mb-article .mb-toc {
    max-width: 100%;
  }
}

