/* Theme tokens from the reference image: deep navy stage, gold CTA, red accent, fruit/coin glow */
body.mb-site,
.mb-article,
.mbpk-article {
  --mb-container: 1120px;
  --mb-radius-sm: 12px;
  --mb-radius: 20px;
  --mb-radius-lg: 30px;
  --mb-space-1: 6px;
  --mb-space-2: 10px;
  --mb-space-3: 14px;
  --mb-space-4: 20px;
  --mb-space-5: 28px;
  --mb-space-6: 40px;
  --mb-section-gap: clamp(30px, 5vw, 58px);
  --mb-article-pad: clamp(16px, 3.2vw, 36px);
  --mb-hero-copy-pad: clamp(16px, 4vw, 38px);

  --mb-bg: #031326;
  --mb-bg-2: #061f3a;
  --mb-bg-3: #0b3155;
  --mb-panel: rgba(7, 28, 52, 0.94);
  --mb-panel-2: rgba(13, 47, 82, 0.9);
  --mb-panel-3: rgba(18, 62, 105, 0.72);

  --mb-primary: #f7c95a;
  --mb-primary-2: #f29b25;
  --mb-gold: #f7c95a;
  --mb-gold-2: #f29b25;
  --mb-red: #d42136;
  --mb-red-2: #9e1325;
  --mb-teal: #2ab7ff;

  --mb-text: #fff4d6;
  --mb-text-soft: #dbe9f5;
  --mb-muted: #a9bdcf;
  --mb-muted-2: #758da3;

  --mb-border: rgba(247, 201, 90, 0.22);
  --mb-border-strong: rgba(247, 201, 90, 0.44);
  --mb-line: rgba(247, 201, 90, 0.22);
  --mb-line-strong: rgba(247, 201, 90, 0.44);

  --mb-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --mb-shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.28);
  --mb-glow: 0 0 0 1px rgba(247, 201, 90, 0.24), 0 18px 48px rgba(242, 155, 37, 0.18);
  --mb-focus: 0 0 0 3px rgba(42, 183, 255, 0.28), 0 0 0 6px rgba(247, 201, 90, 0.18);
}

body.mb-site {
  direction: ltr;
  color: var(--mb-text-soft);
  background:
    radial-gradient(circle at 78% 10%, rgba(212, 33, 54, 0.18) 0, transparent 30%),
    radial-gradient(circle at 18% 12%, rgba(247, 201, 90, 0.16) 0, transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(42, 183, 255, 0.08) 0, transparent 38%),
    linear-gradient(135deg, #031326 0%, #082844 48%, #041526 100%);
  accent-color: var(--mb-primary);
}

/* Scoped box sizing for article content only */
.mb-article,
.mb-article *,
.mb-article *::before,
.mb-article *::after,
.mbpk-article,
.mbpk-article *,
.mbpk-article *::before,
.mbpk-article *::after {
  box-sizing: border-box;
}

/* Site shell: topbar, header, navigation, drawer color layer, breadcrumbs, footer */
.mb-site-topbar {
  color: var(--mb-muted);
  background: rgba(3, 19, 38, 0.72);
  border-bottom: 1px solid rgba(247, 201, 90, 0.14);
  font-size: 0.86rem;
}

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

.mb-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--mb-text);
  background: rgba(4, 20, 38, 0.78);
  border-bottom: 1px solid rgba(247, 201, 90, 0.2);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

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

.mb-site-brand__logo {
  display: block;
  max-height: 40px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  aspect-ratio: 800 / 128;
  filter: drop-shadow(0 0 14px rgba(247, 201, 90, 0.28));
}

.mb-site-brand__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 0.02em;
}

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

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

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

.mb-site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--mb-text-soft);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.15;
  border: 1px solid rgba(247, 201, 90, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mb-site-nav__link:hover,
.mb-site-nav__link:focus-visible,
.mb-site-nav__link[aria-current="page"] {
  color: #061326;
  background: linear-gradient(135deg, var(--mb-primary), var(--mb-primary-2));
  border-color: rgba(255, 229, 158, 0.72);
  outline: none;
  transform: translateY(-1px);
}

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

.mb-site-btn,
.mb-site-drawer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 231, 167, 0.7);
  color: #061326;
  background: linear-gradient(135deg, #ffe08a 0%, var(--mb-primary) 42%, var(--mb-primary-2) 100%);
  box-shadow: 0 10px 28px rgba(242, 155, 37, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-weight: 950;
  font-size: 0.9rem;
  line-height: 1.12;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  box-sizing: border-box;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.mb-site-btn:hover,
.mb-site-btn:focus-visible,
.mb-site-drawer__cta:hover,
.mb-site-drawer__cta:focus-visible {
  color: #061326;
  filter: brightness(1.05) saturate(1.04);
  box-shadow: 0 14px 36px rgba(242, 155, 37, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  outline: none;
  transform: translateY(-1px);
}

.mb-site-burger {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(247, 201, 90, 0.28);
  color: var(--mb-text);
  background: rgba(13, 47, 82, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mb-site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  color: var(--mb-text);
  background: rgba(2, 10, 22, 0.72);
  z-index: 9999;
}

.mb-site-drawer__panel {
  height: 100%;
  min-height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
  color: var(--mb-text-soft);
  background:
    radial-gradient(circle at 20% 0%, rgba(247, 201, 90, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(8, 33, 61, 0.98), rgba(4, 18, 35, 0.98));
  border-color: var(--mb-border);
}

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

.mb-site-drawer__link {
  color: var(--mb-text-soft);
  text-decoration: none;
  border-color: rgba(247, 201, 90, 0.18);
}

.mb-site-drawer__link:hover,
.mb-site-drawer__link:focus-visible,
.mb-site-drawer__link[aria-current="page"] {
  color: #061326;
  background: linear-gradient(135deg, var(--mb-primary), var(--mb-primary-2));
  outline: none;
}

.mb-page-strip {
  color: var(--mb-muted);
  background: rgba(3, 19, 38, 0.54);
  border-bottom: 1px solid rgba(247, 201, 90, 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;
}

.mb-breadcrumbs,
.mb-breadcrumbs__list {
  min-width: 0;
  max-width: 100%;
}

.mb-breadcrumbs a {
  color: var(--mb-primary);
  text-decoration: none;
}

.mb-breadcrumbs a:hover,
.mb-breadcrumbs a:focus-visible {
  color: #ffe49a;
  text-decoration: underline;
  outline: none;
}

.mb-site-footer {
  color: var(--mb-text-soft);
  background:
    radial-gradient(circle at 15% 0%, rgba(247, 201, 90, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(4, 18, 35, 0.96), rgba(2, 10, 22, 0.98));
  border-top: 1px solid rgba(247, 201, 90, 0.18);
}

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

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

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

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

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

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

.mb-footer-nav__link {
  width: 100%;
  min-height: 38px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--mb-text-soft);
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  line-height: 1.15;
  border: 1px solid rgba(247, 201, 90, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.mb-footer-nav__link:hover,
.mb-footer-nav__link:focus-visible {
  color: #061326;
  background: linear-gradient(135deg, var(--mb-primary), var(--mb-primary-2));
  outline: none;
}

/* Article root: self-contained content column */
.mb-article,
.mbpk-article {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: var(--mb-article-pad);
  box-sizing: border-box;
  direction: ltr;
  text-align: left;
  color: var(--mb-text-soft);
  background:
    radial-gradient(circle at 82% 4%, rgba(212, 33, 54, 0.16) 0, transparent 28%),
    radial-gradient(circle at 12% 10%, rgba(247, 201, 90, 0.13) 0, transparent 30%),
    linear-gradient(180deg, rgba(7, 30, 56, 0.98) 0%, rgba(4, 18, 35, 0.98) 100%);
  border: 1px solid var(--mb-border);
  border-radius: var(--mb-radius-lg);
  box-shadow: var(--mb-shadow);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.08rem);
  line-height: 1.72;
  font-feature-settings: "kern";
  text-rendering: optimizeLegibility;
  isolation: isolate;
}

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

.mb-article[dir="rtl"],
[dir="rtl"] .mb-article,
.mbpk-article[dir="rtl"],
[dir="rtl"] .mbpk-article {
  direction: rtl;
  text-align: right;
}

.mb-article[dir="ltr"],
[dir="ltr"] .mb-article,
.mbpk-article[dir="ltr"],
[dir="ltr"] .mbpk-article {
  direction: ltr;
  text-align: left;
}

.mb-article :is(.mb-row, .mb-copy, .mb-media, .mb-hero, .mb-hero__copy, .mb-hero__media, .mb-cta, .mb-grid, .mb-slot-grid, .mb-card, .mb-card__body, .mb-table-wrap, .mb-faq),
.mbpk-article :is(.mb-row, .mb-copy, .mb-media, .mb-hero, .mb-hero__copy, .mb-hero__media, .mb-cta, .mb-grid, .mb-slot-grid, .mb-card, .mb-card__body, .mb-table-wrap, .mb-faq) {
  min-width: 0;
  max-width: 100%;
}

.mb-article img,
.mbpk-article img {
  max-width: 100%;
  height: auto;
}

.mb-article :is(iframe, video, embed, object),
.mbpk-article :is(iframe, video, embed, object) {
  max-width: 100%;
}

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

.mb-article h1,
.mbpk-article h1 {
  font-size: clamp(2rem, 6vw, 4.25rem);
  line-height: 1.02;
  color: #ffe39a;
  text-shadow: 0 2px 0 rgba(69, 34, 0, 0.45), 0 0 24px rgba(247, 201, 90, 0.22);
}

.mb-article h2,
.mbpk-article h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.55rem);
}

.mb-article h3,
.mbpk-article h3 {
  font-size: clamp(1.25rem, 2.3vw, 1.72rem);
}

.mb-article h4,
.mbpk-article h4 {
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.mb-article :is(p, ul, ol, dl, blockquote, figure),
.mbpk-article :is(p, ul, ol, dl, blockquote, figure) {
  max-width: 100%;
  margin-block-start: 0;
  margin-block-end: 1em;
}

.mb-article :is(p, li, dd, figcaption),
.mbpk-article :is(p, li, dd, figcaption) {
  overflow-wrap: anywhere;
}

.mb-article :is(.mb-copy, .mb-hero__copy, .mb-cta__copy, .mb-card__copy) :is(p, ul, ol),
.mbpk-article :is(.mb-copy, .mb-hero__copy, .mb-cta__copy, .mb-card__copy) :is(p, ul, ol) {
  max-width: 100%;
  margin-inline: 0;
}

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

.mb-article a:not(.mb-btn),
.mbpk-article a:not(.mb-btn) {
  color: var(--mb-primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.mb-article a:not(.mb-btn):hover,
.mb-article a:not(.mb-btn):focus-visible,
.mbpk-article a:not(.mb-btn):hover,
.mbpk-article a:not(.mb-btn):focus-visible {
  color: #ffe49a;
  outline: none;
}

.mb-article strong,
.mbpk-article strong {
  color: var(--mb-text);
  font-weight: 900;
}

.mb-article .mb-kicker,
.mb-article .mb-eyebrow,
.mbpk-article .mb-kicker,
.mbpk-article .mb-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-block-end: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #ffe49a;
  background: rgba(247, 201, 90, 0.1);
  border: 1px solid rgba(247, 201, 90, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Lists */
.mb-article :is(ul, ol),
.mbpk-article :is(ul, ol) {
  padding-inline-start: 1.25em;
  padding-inline-end: 0;
  text-align: start;
}

.mb-article li + li,
.mbpk-article li + li {
  margin-block-start: 0.42em;
}

.mb-article :is(.mb-list, .mb-check-list),
.mbpk-article :is(.mb-list, .mb-check-list) {
  width: 100%;
  max-width: 100%;
}

.mb-article .mb-check-list,
.mbpk-article .mb-check-list {
  list-style: none;
  padding-inline-start: 0;
}

.mb-article .mb-check-list > li,
.mbpk-article .mb-check-list > li {
  position: relative;
  padding-inline-start: 1.75em;
}

.mb-article .mb-check-list > li::before,
.mbpk-article .mb-check-list > li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.48em;
  width: 0.82em;
  height: 0.82em;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff4c8 0 18%, var(--mb-primary) 19% 58%, var(--mb-primary-2) 59% 100%);
  box-shadow: 0 0 16px rgba(247, 201, 90, 0.35);
}

/* Buttons and action rows */
.mb-article :is(.mb-actions, .mb-hero__actions, .mb-cta__actions),
.mbpk-article :is(.mb-actions, .mb-hero__actions, .mb-cta__actions) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.mb-article .mb-btn,
.mb-article a.mb-btn,
.mbpk-article .mb-btn,
.mbpk-article a.mb-btn,
.mbpk-page .mb-article a.mb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 231, 167, 0.78);
  border-radius: 999px;
  color: #061326 !important;
  background: linear-gradient(135deg, #ffe28c 0%, var(--mb-primary) 44%, var(--mb-primary-2) 100%);
  box-shadow: 0 14px 34px rgba(242, 155, 37, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  text-decoration: none !important;
  text-align: center;
  font-weight: 950;
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background-color 180ms ease;
}

.mb-article .mb-btn:hover,
.mb-article .mb-btn:focus-visible,
.mb-article a.mb-btn:hover,
.mb-article a.mb-btn:focus-visible,
.mbpk-article .mb-btn:hover,
.mbpk-article .mb-btn:focus-visible,
.mbpk-article a.mb-btn:hover,
.mbpk-article a.mb-btn:focus-visible {
  color: #061326 !important;
  filter: brightness(1.06) saturate(1.04);
  box-shadow: 0 18px 44px rgba(242, 155, 37, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  outline: none;
  transform: translateY(-2px);
}

.mb-article .mb-btn:focus-visible,
.mb-article a.mb-btn:focus-visible,
.mbpk-article .mb-btn:focus-visible,
.mbpk-article a.mb-btn:focus-visible {
  box-shadow: var(--mb-focus), 0 18px 44px rgba(242, 155, 37, 0.32);
}

.mb-article :is(.mb-btn--secondary, a.mb-btn--secondary),
.mbpk-article :is(.mb-btn--secondary, a.mb-btn--secondary),
.mbpk-page .mb-article a.mb-btn--secondary {
  color: var(--mb-text) !important;
  background: linear-gradient(135deg, rgba(18, 62, 105, 0.95), rgba(6, 31, 58, 0.95));
  border-color: rgba(42, 183, 255, 0.34);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mb-article :is(.mb-btn--secondary, a.mb-btn--secondary):hover,
.mb-article :is(.mb-btn--secondary, a.mb-btn--secondary):focus-visible,
.mbpk-article :is(.mb-btn--secondary, a.mb-btn--secondary):hover,
.mbpk-article :is(.mb-btn--secondary, a.mb-btn--secondary):focus-visible {
  color: var(--mb-text) !important;
  background: linear-gradient(135deg, rgba(24, 78, 130, 0.98), rgba(8, 40, 75, 0.98));
}

.mb-article :is(.mb-btn--accent, a.mb-btn--accent),
.mbpk-article :is(.mb-btn--accent, a.mb-btn--accent),
.mbpk-page .mb-article a.mb-btn--accent {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ec3a4e 0%, var(--mb-red) 48%, var(--mb-red-2) 100%);
  border-color: rgba(255, 162, 174, 0.46);
  box-shadow: 0 14px 34px rgba(212, 33, 54, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mb-article :is(.mb-btn--accent, a.mb-btn--accent):hover,
.mb-article :is(.mb-btn--accent, a.mb-btn--accent):focus-visible,
.mbpk-article :is(.mb-btn--accent, a.mb-btn--accent):hover,
.mbpk-article :is(.mb-btn--accent, a.mb-btn--accent):focus-visible {
  color: #ffffff !important;
  background: linear-gradient(135deg, #f04a5d 0%, #d9273c 50%, #a7172a 100%);
}

/* Hero: single-column grid at every breakpoint, visual order image, CTA, copy */
.mb-article .mb-hero,
.mbpk-article .mb-hero {
  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, 26px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "cta"
    "copy";
  gap: 0;
  align-items: start;
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(247, 201, 90, 0.24);
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 33, 54, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(8, 34, 62, 0.92), rgba(5, 20, 38, 0.9));
  box-shadow: var(--mb-glow);
}

.mb-article .mb-hero__media,
.mbpk-article .mb-hero__media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border-radius: calc(var(--mb-radius-lg) - 1px);
  border-end-start-radius: var(--mb-radius);
  border-end-end-radius: var(--mb-radius);
  overflow: hidden;
  overflow: clip;
  background: #061326;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.mb-article .mb-hero__media :is(a, picture),
.mbpk-article .mb-hero__media :is(a, picture) {
  display: block;
  width: 100%;
  height: 100%;
}

.mb-article .mb-hero__media img,
.mbpk-article .mb-hero__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1);
  transition: transform 260ms ease, filter 260ms ease;
}

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

.mb-article .mb-hero > .mb-cta,
.mbpk-article .mb-hero > .mb-cta {
  grid-area: cta;
  width: calc(100% - (var(--mb-hero-copy-pad) * 2));
  max-width: calc(100% - (var(--mb-hero-copy-pad) * 2));
  margin-inline: var(--mb-hero-copy-pad);
  margin-block-start: clamp(14px, 2.4vw, 24px);
  margin-block-end: clamp(12px, 2vw, 20px);
}

.mb-article .mb-hero__copy,
.mbpk-article .mb-hero__copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  padding-inline: var(--mb-hero-copy-pad);
  padding-block-start: 0;
  text-align: start;
}

.mb-article .mb-hero__badge,
.mbpk-article .mb-hero__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-block-end: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffe49a;
  background: rgba(247, 201, 90, 0.11);
  border: 1px solid rgba(247, 201, 90, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: default;
}

.mb-article .mb-hero__lead,
.mbpk-article .mb-hero__lead {
  width: 100%;
  max-width: 100%;
  margin-block-end: 0;
  color: var(--mb-text-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.68;
}

/* Content rows */
.mb-article .mb-row,
.mbpk-article .mb-row {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: 0 var(--mb-section-gap);
  padding: clamp(16px, 3vw, 28px);
  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);
  border: 1px solid rgba(247, 201, 90, 0.18);
  background: linear-gradient(180deg, rgba(9, 35, 64, 0.74), rgba(5, 22, 42, 0.72));
  box-shadow: var(--mb-shadow-soft);
}

.mb-article .mb-row--reverse,
.mbpk-article .mb-row--reverse {
  grid-template-areas:
    "copy"
    "media";
}

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

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

.mb-article .mb-copy,
.mbpk-article .mb-copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  padding-block-start: 0;
  align-self: start;
  justify-self: stretch;
  text-align: start;
}

.mb-article .mb-media,
.mbpk-article .mb-media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  padding: 0;
  padding-block-start: 0;
  align-self: start;
  justify-self: stretch;
  aspect-ratio: 2 / 3;
  border-radius: var(--mb-radius);
  border: 1px solid rgba(247, 201, 90, 0.18);
  background: #061326;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 28px rgba(247, 201, 90, 0.08);
  overflow: hidden;
  overflow: clip;
}

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

.mb-article .mb-media :is(a, picture),
.mbpk-article .mb-media :is(a, picture) {
  display: block;
  width: 100%;
  height: 100%;
}

.mb-article .mb-media img,
.mbpk-article .mb-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transform: scale(1);
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

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

/* CTA blocks */
.mb-article .mb-cta,
.mbpk-article .mb-cta {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: 0 var(--mb-section-gap);
  padding: clamp(18px, 3.8vw, 34px);
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(247, 201, 90, 0.3);
  color: var(--mb-text-soft);
  background:
    radial-gradient(circle at 16% 18%, rgba(247, 201, 90, 0.14), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(212, 33, 54, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(13, 47, 82, 0.92), rgba(5, 20, 38, 0.94));
  box-shadow: var(--mb-glow);
  min-width: 0;
}

.mb-article .mb-cta__title,
.mbpk-article .mb-cta__title {
  margin-block-end: 0.45em;
}

.mb-article .mb-cta__copy,
.mbpk-article .mb-cta__copy {
  width: 100%;
  max-width: 100%;
  color: var(--mb-text-soft);
}

.mb-article .mb-cta__actions,
.mbpk-article .mb-cta__actions {
  margin-block-start: clamp(12px, 2vw, 18px);
}

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

.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 {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.mb-article .mb-card,
.mbpk-article .mb-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  border-radius: var(--mb-radius);
  border: 1px solid rgba(247, 201, 90, 0.18);
  color: var(--mb-text-soft);
  background: linear-gradient(180deg, rgba(12, 42, 74, 0.86), rgba(5, 22, 42, 0.88));
  box-shadow: var(--mb-shadow-soft);
  min-width: 0;
  max-width: 100%;
}

.mb-article .mb-card__media,
.mbpk-article .mb-card__media {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  padding: 0;
  border-start-start-radius: var(--mb-radius);
  border-start-end-radius: var(--mb-radius);
  overflow: hidden;
  overflow: clip;
  background: #061326;
}

.mb-article .mb-card__media :is(a, picture),
.mbpk-article .mb-card__media :is(a, picture) {
  display: block;
  width: 100%;
  height: 100%;
}

.mb-article .mb-card__media img,
.mbpk-article .mb-card__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transform: scale(1);
  transition: transform 260ms ease, filter 260ms ease;
}

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

.mb-article .mb-card__body,
.mbpk-article .mb-card__body {
  width: 100%;
  max-width: 100%;
  padding: clamp(15px, 2.5vw, 22px);
  min-width: 0;
}

.mb-article .mb-card > :not(.mb-card__media):not(.mb-card__body),
.mbpk-article .mb-card > :not(.mb-card__media):not(.mb-card__body) {
  max-width: 100%;
  margin-inline: 0;
  padding-inline: clamp(15px, 2.5vw, 22px);
}

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

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

.mb-article .mb-card__title,
.mbpk-article .mb-card__title {
  margin-block-end: 0.45em;
}

.mb-article .mb-card__copy,
.mbpk-article .mb-card__copy {
  width: 100%;
  max-width: 100%;
  color: var(--mb-muted);
}

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

.mb-article .mb-faq details,
.mbpk-article .mb-faq details {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(247, 201, 90, 0.18);
  border-radius: var(--mb-radius);
  background: rgba(8, 33, 61, 0.72);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  break-inside: avoid;
}

.mb-article .mb-faq details + details,
.mbpk-article .mb-faq details + details {
  margin-block-start: 12px;
}

.mb-article .mb-faq summary,
.mbpk-article .mb-faq summary {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  color: var(--mb-text);
  font-weight: 900;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

.mb-article .mb-faq summary::after,
.mbpk-article .mb-faq summary::after {
  content: "+";
  margin-inline-start: auto;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061326;
  background: linear-gradient(135deg, var(--mb-primary), var(--mb-primary-2));
  font-weight: 950;
  line-height: 1;
}

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

.mb-article .mb-faq details > :not(summary),
.mbpk-article .mb-faq details > :not(summary) {
  padding-inline: 18px;
  padding-block-end: 16px;
  color: var(--mb-text-soft);
}

/* Tables: horizontal scrolling stays inside the wrapper */
.mb-article .mb-table-wrap,
.mbpk-article .mb-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  display: block;
  touch-action: pan-x;
  margin-block: 0 var(--mb-section-gap);
  border: 1px solid rgba(247, 201, 90, 0.22);
  border-radius: var(--mb-radius);
  background: rgba(4, 18, 35, 0.72);
  box-shadow: var(--mb-shadow-soft);
}

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

.mb-article table.mb-table caption,
.mbpk-article table.mb-table caption {
  padding: 14px 16px;
  color: var(--mb-text);
  font-weight: 900;
  text-align: start;
}

.mb-article table.mb-table th,
.mb-article table.mb-table td,
.mbpk-article table.mb-table th,
.mbpk-article table.mb-table td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(247, 201, 90, 0.14);
  vertical-align: top;
}

.mb-article table.mb-table th,
.mbpk-article table.mb-table th {
  color: #061326;
  background: linear-gradient(135deg, var(--mb-primary), var(--mb-primary-2));
  font-weight: 950;
}

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

.mb-article table.mb-table tbody tr:hover td,
.mbpk-article table.mb-table tbody tr:hover td {
  background: rgba(247, 201, 90, 0.07);
}

/* Notes, quotes, separators */
.mb-article blockquote,
.mbpk-article blockquote {
  width: 100%;
  padding: clamp(16px, 3vw, 24px);
  border-inline-start: 4px solid var(--mb-primary);
  border-radius: var(--mb-radius);
  color: var(--mb-text-soft);
  background: rgba(247, 201, 90, 0.08);
}

.mb-article .mb-note,
.mb-article .mb-alert,
.mbpk-article .mb-note,
.mbpk-article .mb-alert {
  width: 100%;
  max-width: 100%;
  margin-block: 0 var(--mb-section-gap);
  padding: clamp(15px, 3vw, 22px);
  border-radius: var(--mb-radius);
  border: 1px solid rgba(247, 201, 90, 0.22);
  background: rgba(8, 33, 61, 0.72);
  color: var(--mb-text-soft);
}

.mb-article .mb-alert,
.mbpk-article .mb-alert {
  border-color: rgba(212, 33, 54, 0.36);
  background: rgba(212, 33, 54, 0.1);
}

.mb-article .mb-divider,
.mb-article hr.mb-divider,
.mbpk-article .mb-divider,
.mbpk-article hr.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(247, 201, 90, 0.45), rgba(212, 33, 54, 0.22), transparent);
}

.mb-article figure,
.mbpk-article figure {
  width: 100%;
  max-width: 100%;
}

.mb-article figcaption,
.mbpk-article figcaption {
  margin-block-start: 9px;
  color: var(--mb-muted-2);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Desktop layout */
@media (min-width: 760px) {
  .mb-article .mb-row,
  .mbpk-article .mb-row {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas: "copy media";
  }

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

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

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

@media (min-width: 640px) {
  .mb-article .mb-grid,
  .mb-article .mb-slot-grid,
  .mbpk-article .mb-grid,
  .mbpk-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 {
    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 {
    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 {
    grid-column: span 2;
  }

  .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) {
    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 {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    border-radius: 0 var(--mb-radius) var(--mb-radius) 0;
  }

  .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 {
    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) {
    grid-column: 1;
  }

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

/* Mobile and narrow screens */
@media (max-width: 899.98px) {
  .mb-site-nav {
    display: none;
  }

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

  .mb-site-btn {
    display: inline-flex;
    width: auto;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

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

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

  .mb-footer-nav__list > li {
    flex: 1 1 min(100%, 150px);
  }
}

@media (max-width: 639.98px) {
  .mb-article,
  .mbpk-article {
    max-width: 100%;
    padding: clamp(14px, 4.4vw, 18px);
    border-radius: 18px;
  }

  .mb-article .mb-hero,
  .mb-article .mb-row,
  .mb-article .mb-cta,
  .mb-article .mb-grid,
  .mb-article .mb-slot-grid,
  .mb-article .mb-faq,
  .mb-article .mb-table-wrap,
  .mbpk-article .mb-hero,
  .mbpk-article .mb-row,
  .mbpk-article .mb-cta,
  .mbpk-article .mb-grid,
  .mbpk-article .mb-slot-grid,
  .mbpk-article .mb-faq,
  .mbpk-article .mb-table-wrap {
    width: 100%;
    max-width: 100%;
  }

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

  .mb-article .mb-hero,
  .mbpk-article .mb-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "cta"
      "copy";
  }

  .mb-article .mb-hero > .mb-cta,
  .mbpk-article .mb-hero > .mb-cta {
    width: calc(100% - (var(--mb-hero-copy-pad) * 2));
    max-width: calc(100% - (var(--mb-hero-copy-pad) * 2));
    margin-inline: var(--mb-hero-copy-pad);
  }

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

  .mb-article .mb-btn,
  .mb-article a.mb-btn,
  .mbpk-article .mb-btn,
  .mbpk-article a.mb-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-inline: 14px;
  }

  .mb-article table.mb-table,
  .mbpk-article table.mb-table {
    min-width: 600px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .mb-article *,
  .mb-article *::before,
  .mb-article *::after,
  .mbpk-article *,
  .mbpk-article *::before,
  .mbpk-article *::after,
  .mb-site-header *,
  .mb-site-footer *,
  .mb-site-drawer * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

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

