/* Theme tokens inspired by the reference image: deep burgundy, hot red, orange glow, and casino gold. */
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", "Segoe UI", Arial, sans-serif;
  --mb-container: 1120px;

  --mb-bg: #180203;
  --mb-bg-2: #300405;
  --mb-panel: #330606;
  --mb-panel-2: #4b0907;
  --mb-panel-3: #650d08;

  --mb-primary: #d71913;
  --mb-primary-2: #ff3b20;
  --mb-red: #c9140e;
  --mb-orange: #ff7a00;
  --mb-orange-2: #ff9f1a;
  --mb-gold: #ffd34f;
  --mb-gold-2: #ffad16;
  --mb-teal: #d71913;

  --mb-text: #fff7dc;
  --mb-text-soft: #ffe7a8;
  --mb-muted: #e7b579;
  --mb-muted-2: #b98155;

  --mb-border: rgba(255, 211, 79, 0.24);
  --mb-line: rgba(255, 211, 79, 0.24);
  --mb-border-strong: rgba(255, 211, 79, 0.48);
  --mb-line-strong: rgba(255, 211, 79, 0.48);

  --mb-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
  --mb-shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.34);
  --mb-glow: 0 0 0 1px rgba(255, 211, 79, 0.18), 0 0 34px rgba(255, 122, 0, 0.18);

  --mb-radius-lg: 28px;
  --mb-radius-md: 20px;
  --mb-radius-sm: 14px;
  --mb-radius-pill: 999px;

  --mb-section-gap: clamp(24px, 4.5vw, 52px);
  --mb-card-gap: clamp(16px, 2.5vw, 24px);
  --mb-row-gap: clamp(18px, 3vw, 34px);
  --mb-pad: clamp(16px, 3vw, 32px);
  --mb-hero-inline: clamp(16px, 4vw, 34px);

  --mb-focus: 0 0 0 3px rgba(255, 211, 79, 0.36);
}

body.mb-site {
  min-height: 100dvh;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 122, 0, 0.24) 0, transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(255, 211, 79, 0.16) 0, transparent 30%),
    linear-gradient(180deg, #3c0605 0%, #1b0203 48%, #0f0102 100%);
}

/* Scoped box sizing keeps Elementor outside content untouched. */
: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,
.mb-site-header,
.mb-site-header *,
.mb-site-header *::before,
.mb-site-header *::after,
.mb-page-strip,
.mb-page-strip *,
.mb-site-footer,
.mb-site-footer *,
.mb-site-drawer,
.mb-site-drawer * {
  box-sizing: border-box;
}

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

.mb-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--mb-text);
  background:
    linear-gradient(90deg, rgba(67, 7, 6, 0.9), rgba(27, 2, 3, 0.84)),
    rgba(24, 2, 3, 0.88);
  border-bottom: 1px solid var(--mb-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.mb-site-brand {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  color: var(--mb-text);
  text-decoration: none;
}

.mb-site-brand__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(26px, 7.5vw, 40px);
  object-fit: contain;
  aspect-ratio: 800 / 128;
}

.mb-site-brand__text {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--mb-text);
}

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

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

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

.mb-site-nav__link,
.mb-footer-nav__link,
.mb-site-drawer__link {
  color: var(--mb-text-soft);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mb-site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  max-width: 100%;
  padding: 7px 13px;
  border: 1px solid rgba(255, 211, 79, 0.2);
  border-radius: var(--mb-radius-pill);
  background: rgba(255, 211, 79, 0.06);
  color: var(--mb-text-soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.mb-site-nav__link:hover,
.mb-site-nav__link:focus-visible {
  color: #2a0303;
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
  border-color: rgba(255, 211, 79, 0.68);
  outline: none;
}

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

.mb-site-btn,
.mb-site-burger {
  flex: 0 0 auto;
}

.mb-site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  max-width: 42vw;
  padding: 8px 14px;
  border: 1px solid rgba(255, 211, 79, 0.5);
  border-radius: var(--mb-radius-pill);
  background: linear-gradient(180deg, var(--mb-primary-2), var(--mb-red));
  color: #fff9df;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 10px 24px rgba(215, 25, 19, 0.28);
}

.mb-site-btn:hover,
.mb-site-btn:focus-visible {
  color: #fff9df;
  background: linear-gradient(180deg, #ff4a2a, #b90f0a);
  outline: none;
  box-shadow: var(--mb-focus), 0 14px 30px rgba(215, 25, 19, 0.36);
}

.mb-site-btn--secondary,
.mb-site-btn--apk {
  background: rgba(255, 211, 79, 0.08);
  color: var(--mb-gold);
  border-color: rgba(255, 211, 79, 0.44);
  box-shadow: none;
}

.mb-site-btn--secondary:hover,
.mb-site-btn--secondary:focus-visible,
.mb-site-btn--apk:hover,
.mb-site-btn--apk:focus-visible {
  color: #2a0303;
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
}

.mb-site-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 211, 79, 0.42);
  border-radius: 12px;
  background: rgba(255, 211, 79, 0.08);
  color: var(--mb-gold);
}

/* Drawer sizing is explicit so fixed overlays are not clipped by header backdrop filters. */
.mb-site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  color: var(--mb-text);
}

.mb-site-drawer__panel {
  height: 100%;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 0, 0.2), transparent 38%),
    linear-gradient(180deg, #410706, #170203);
  color: var(--mb-text);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

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

.mb-site-drawer__nav,
.mb-site-drawer__list {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.mb-site-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mb-site-drawer__link {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 211, 79, 0.14);
  color: var(--mb-text-soft);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.mb-site-drawer__link:hover,
.mb-site-drawer__link:focus-visible {
  color: var(--mb-gold);
  outline: none;
}

.mb-site-drawer__cta,
.mb-site-drawer__cta--apk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: var(--mb-radius-pill);
  border: 1px solid rgba(255, 211, 79, 0.5);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

.mb-site-drawer__cta {
  background: linear-gradient(180deg, var(--mb-primary-2), var(--mb-red));
  color: #fff9df;
}

.mb-site-drawer__cta:hover,
.mb-site-drawer__cta:focus-visible {
  color: #fff9df;
  background: linear-gradient(180deg, #ff4a2a, #b90f0a);
  outline: none;
}

.mb-site-drawer__cta--apk {
  background: rgba(255, 211, 79, 0.08);
  color: var(--mb-gold);
}

.mb-site-drawer__cta--apk:hover,
.mb-site-drawer__cta--apk:focus-visible {
  color: #2a0303;
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
  outline: none;
}

.mb-page-strip {
  width: 100%;
  color: var(--mb-muted);
  background: rgba(24, 2, 3, 0.74);
  border-bottom: 1px solid rgba(255, 211, 79, 0.12);
}

.mb-page-strip__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: 8px clamp(14px, 3vw, 24px);
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
}

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

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

.mb-site-footer {
  color: var(--mb-muted);
  background:
    linear-gradient(180deg, rgba(24, 2, 3, 0.84), rgba(10, 1, 2, 0.96)),
    #120102;
  border-top: 1px solid var(--mb-border);
}

.mb-site-footer__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px) clamp(14px, 3vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  min-width: 0;
}

.mb-site-footer__brand,
.mb-site-footer__copy {
  min-width: 0;
  max-width: 100%;
}

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

.mb-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mb-footer-nav__list > li {
  flex: 1 1 auto;
  min-width: 0;
}

.mb-footer-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: 100%;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 211, 79, 0.18);
  border-radius: var(--mb-radius-pill);
  background: rgba(255, 211, 79, 0.05);
  color: var(--mb-text-soft);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  overflow-wrap: anywhere;
}

.mb-footer-nav__link:hover,
.mb-footer-nav__link:focus-visible {
  color: #2a0303;
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
  border-color: rgba(255, 211, 79, 0.58);
  outline: none;
}

/* Article root */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: var(--mb-pad);
  direction: ltr;
  text-align: start;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 0, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(58, 6, 5, 0.98), rgba(25, 2, 3, 0.99));
  border: 1px solid rgba(255, 211, 79, 0.16);
  border-radius: clamp(18px, 3vw, 32px);
  box-shadow: var(--mb-shadow);
  min-width: 0;
  overflow-wrap: break-word;
}

body.mb-site :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) {
  margin-block: clamp(18px, 3vw, 34px);
}

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

/* Typography */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(h1, h2, h3, h4, h5, h6) {
  max-width: 100%;
  margin-block-start: 0;
  margin-block-end: 0.62em;
  color: var(--mb-text);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: start;
  overflow-wrap: anywhere;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h1 {
  font-size: clamp(34px, 6vw, 64px);
  text-shadow: 0 2px 0 rgba(71, 8, 5, 0.7), 0 0 28px rgba(255, 122, 0, 0.22);
}

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

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

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h5,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h6 {
  font-size: clamp(17px, 1.8vw, 20px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(p, li, dd, dt, figcaption) {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.72;
  color: var(--mb-muted);
  text-align: start;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) p {
  max-width: 100%;
  margin-block-start: 0;
  margin-block-end: 1em;
  margin-inline: 0;
}

: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: var(--mb-text-soft);
  font-weight: 900;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a {
  color: var(--mb-gold);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a:hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a:focus-visible {
  color: var(--mb-text);
  outline: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-kicker,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-block-end: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 211, 79, 0.34);
  border-radius: var(--mb-radius-pill);
  background: rgba(255, 211, 79, 0.08);
  color: var(--mb-gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-lead {
  max-width: 100%;
  color: var(--mb-text-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

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

/* Text blocks stay full column width unless .mb-measure is explicitly used. */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(.mb-copy, .mb-hero__copy, .mb-cta__copy, .mb-card__copy),
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(.mb-copy, .mb-hero__copy, .mb-cta__copy, .mb-card__copy) :is(p, ul, ol) {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

/* Hero: single-column grid at every breakpoint, visual order media -> CTA -> copy. */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "cta"
    "copy";
  align-items: start;
  gap: 0;
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: 0 var(--mb-section-gap);
  padding-inline: 0;
  padding-block-start: 0;
  padding-block-end: clamp(16px, 3vw, 28px);
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(98, 12, 8, 0.74), rgba(37, 4, 4, 0.9));
  border: 1px solid rgba(255, 211, 79, 0.2);
  border-radius: var(--mb-radius-lg);
  box-shadow: var(--mb-shadow-soft);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  margin: 0;
  border-radius: var(--mb-radius-lg) var(--mb-radius-lg) 18px 18px;
  border-bottom: 1px solid rgba(255, 211, 79, 0.22);
  background: #160102;
  overflow: clip;
  box-shadow: var(--mb-glow);
  cursor: pointer;
}

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

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

: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-inline);
  padding-block-start: clamp(10px, 2vw, 18px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-block-end: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 211, 79, 0.42);
  border-radius: var(--mb-radius-pill);
  background: linear-gradient(180deg, rgba(255, 211, 79, 0.16), rgba(255, 122, 0, 0.08));
  color: var(--mb-gold);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  pointer-events: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__title {
  margin-block-end: 0.34em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__lead {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--mb-text-soft);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.6;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero > .mb-cta {
  grid-area: cta;
  justify-self: stretch;
  width: calc(100% - var(--mb-hero-inline) - var(--mb-hero-inline));
  max-width: calc(100% - var(--mb-hero-inline) - var(--mb-hero-inline));
  margin-inline: var(--mb-hero-inline);
  margin-block: clamp(14px, 2.2vw, 24px) clamp(6px, 1vw, 12px);
}

/* Rows */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
  align-items: start;
  gap: var(--mb-row-gap);
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block-end: var(--mb-section-gap);
  padding: clamp(14px, 2.5vw, 24px);
  min-width: 0;
  background: linear-gradient(180deg, rgba(80, 10, 7, 0.46), rgba(32, 4, 4, 0.62));
  border: 1px solid rgba(255, 211, 79, 0.14);
  border-radius: var(--mb-radius-lg);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row--reverse {
  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-copy,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-media {
  padding-block-start: 0;
  min-width: 0;
  max-width: 100%;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-copy {
  grid-area: copy;
  width: 100%;
  display: block;
}

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-media {
  grid-area: media;
  width: 100%;
  padding: 0;
  margin: 0;
  aspect-ratio: 2 / 3;
  border-radius: var(--mb-radius-md);
  border: 1px solid rgba(255, 211, 79, 0.22);
  background: #160102;
  overflow: clip;
  box-shadow: var(--mb-glow);
  cursor: pointer;
}

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

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

/* CTA blocks and buttons */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block-end: var(--mb-section-gap);
  padding: clamp(18px, 3vw, 34px);
  min-width: 0;
  border: 1px solid rgba(255, 211, 79, 0.34);
  border-radius: var(--mb-radius-lg);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 211, 79, 0.22), transparent 35%),
    linear-gradient(135deg, rgba(113, 13, 8, 0.96), rgba(42, 4, 4, 0.98));
  box-shadow: var(--mb-shadow-soft);
}

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta__title {
  margin-block-end: 0.42em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-actions,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__actions,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block-start: clamp(14px, 2vw, 22px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) button.mb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 211, 79, 0.58);
  border-radius: var(--mb-radius-pill);
  background: linear-gradient(180deg, var(--mb-primary-2), var(--mb-red));
  color: #fff9df;
  font-family: var(--mb-font);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  box-shadow: 0 16px 34px rgba(215, 25, 19, 0.32);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

: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,
: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: #fff9df;
  background: linear-gradient(180deg, #ff4a2a, #b90f0a);
  border-color: rgba(255, 211, 79, 0.74);
  transform: translateY(-1px);
  box-shadow: var(--mb-focus), 0 18px 38px rgba(215, 25, 19, 0.42);
  outline: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn--secondary,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--secondary {
  background: rgba(255, 211, 79, 0.08);
  color: var(--mb-gold);
  border-color: rgba(255, 211, 79, 0.42);
  box-shadow: none;
}

: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,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--secondary:hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--secondary:focus-visible {
  color: #2a0303;
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
  border-color: rgba(255, 211, 79, 0.74);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn--accent,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--accent {
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
  color: #2a0303;
  border-color: rgba(255, 241, 166, 0.72);
  box-shadow: 0 16px 34px rgba(255, 173, 22, 0.28);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn--accent:hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn--accent:focus-visible,
: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: #2a0303;
  background: linear-gradient(180deg, #ffe37a, #ff9f1a);
  outline: none;
}

/* Card grids */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-grid,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-slot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--mb-card-gap);
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block-end: var(--mb-section-gap);
  min-width: 0;
}

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(255, 211, 79, 0.17);
  border-radius: var(--mb-radius-md);
  background: linear-gradient(180deg, rgba(84, 10, 7, 0.74), rgba(28, 3, 4, 0.92));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  overflow: clip;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 211, 79, 0.36);
  box-shadow: var(--mb-glow), 0 18px 42px rgba(0, 0, 0, 0.32);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 2 / 3;
  padding: 0;
  margin: 0;
  border-radius: var(--mb-radius-md) var(--mb-radius-md) 0 0;
  background: #160102;
  overflow: clip;
  cursor: pointer;
}

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

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: clamp(16px, 2.2vw, 22px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__title {
  margin-block-end: 0.1em;
  color: var(--mb-text);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.18;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card__copy {
  color: var(--mb-muted);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card > :not(.mb-card__media):not(.mb-card__body) {
  min-width: 0;
  max-width: 100%;
  padding-inline: clamp(16px, 2.2vw, 22px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card > :not(.mb-card__media):not(.mb-card__body):first-child {
  padding-block-start: clamp(16px, 2.2vw, 22px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-card > :not(.mb-card__media):not(.mb-card__body):last-child {
  padding-block-end: clamp(16px, 2.2vw, 22px);
}

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(ul, ol) :is(ul, ol) {
  margin-block-start: 0.45em;
  margin-block-end: 0;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) li {
  margin-block: 0.35em;
  padding-inline-start: 0.15em;
}

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-list > li {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 211, 79, 0.14);
  border-radius: var(--mb-radius-sm);
  background: rgba(255, 211, 79, 0.05);
}

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq__title {
  margin-block-end: 0.7em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq details {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block-end: 12px;
  padding: 0;
  border: 1px solid rgba(255, 211, 79, 0.18);
  border-radius: var(--mb-radius-md);
  background: linear-gradient(180deg, rgba(70, 8, 6, 0.72), rgba(27, 3, 4, 0.84));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 16px 18px;
  color: var(--mb-text-soft);
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  overflow-wrap: anywhere;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq summary::-webkit-details-marker {
  display: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 211, 79, 0.12);
  color: var(--mb-gold);
  font-weight: 950;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-faq details[open] summary::after {
  content: "–";
}

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

/* Tables: horizontal scroll lives only inside .mb-table-wrap. */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block: clamp(18px, 3vw, 30px) var(--mb-section-gap);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  border: 1px solid rgba(255, 211, 79, 0.18);
  border-radius: var(--mb-radius-md);
  background: rgba(12, 1, 2, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table caption {
  caption-side: top;
  padding: 12px 14px;
  color: var(--mb-text-soft);
  font-weight: 900;
  text-align: start;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table :is(th, td) {
  padding: 13px 14px;
  border-inline-end: 1px solid rgba(255, 211, 79, 0.12);
  border-block-end: 1px solid rgba(255, 211, 79, 0.12);
  text-align: start;
  vertical-align: middle;
  line-height: 1.45;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table :is(th, td):last-child {
  border-inline-end: 0;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table thead th {
  color: #2a0303;
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
  font-weight: 950;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table tbody tr:nth-child(odd) td {
  background: rgba(255, 211, 79, 0.045);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) table.mb-table tbody tr:hover td {
  background: rgba(255, 122, 0, 0.09);
}

/* Media and embeds */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) img,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) video,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) iframe {
  max-width: 100%;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) img {
  height: auto;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) figure {
  max-width: 100%;
  margin: 0 0 var(--mb-section-gap);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) figcaption {
  margin-block-start: 10px;
  color: var(--mb-muted-2);
  font-size: 14px;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-divider,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) hr.mb-divider {
  display: block;
  width: 100%;
  max-width: var(--mb-container);
  height: 1px;
  margin: var(--mb-section-gap) auto;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 79, 0.48), transparent);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 16px;
  border: 1px solid rgba(255, 211, 79, 0.16);
  border-radius: var(--mb-radius-sm);
  background: rgba(0, 0, 0, 0.28);
  color: var(--mb-text-soft);
}

/* Rounded image containers use clipping; fallback keeps the same visual intent. */
@supports not (overflow: clip) {
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__media,
  :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__media {
    overflow: hidden;
  }
}

/* Tablet card layout: exactly two equal columns. */
@media (min-width: 640px) {
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-grid,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop layouts. */
@media (min-width: 900px) {
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row {
    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 {
    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";
  }
}

/* Desktop card layout: exactly three equal columns. */
@media (min-width: 980px) {
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-grid,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  :is(.mb-article, .mbpk-article, .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;
    gap: 0;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  :is(.mb-article, .mbpk-article, .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-radius: 0 var(--mb-radius-md) var(--mb-radius-md) 0;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  :is(.mb-article, .mbpk-article, .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;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  :is(.mb-article, .mbpk-article, .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;
  }
}

/* Mobile safety: no content overflow, buttons fit, tables scroll inside their wrapper. */
@media (max-width: 1023px) {
  .mb-site-nav {
    display: none;
  }

  .mb-site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .mb-site-header__actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }

  .mb-site-btn {
    display: inline-flex;
    min-height: 30px;
    max-width: 34vw;
    padding: 7px 10px;
    font-size: 12px;
  }

  .mb-site-burger {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .mb-site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 639px) {
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) {
    width: 100%;
    max-width: 100%;
    padding: clamp(14px, 4vw, 18px);
    border-radius: 20px;
  }

  body.mb-site :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) {
    margin-block: 14px;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-row,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-grid,
  :is(.mb-article, .mbpk-article, .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 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

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

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

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-actions,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-hero__actions,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-btn,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn,
  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) button.mb-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

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

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

  .mb-site-header__inner {
    padding-inline: 10px;
    gap: 6px;
  }

  .mb-site-btn {
    max-width: 32vw;
  }

  .mb-site-btn--apk {
    max-width: 30vw;
  }

  .mb-footer-nav__list > li {
    flex: 1 1 100%;
  }
}

/* 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%;
  }
}

