/* Palette: dark burgundy, amber gold, teal, cream, and red accents from the reference image. */

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-page-pad: clamp(12px, 3vw, 28px);
  --mb-section-gap: clamp(22px, 4vw, 44px);
  --mb-block-pad: clamp(16px, 3vw, 28px);

  --mb-bg: #160504;
  --mb-bg-2: #2a0b07;
  --mb-bg-3: #4b1609;
  --mb-panel: rgba(45, 13, 8, 0.92);
  --mb-panel-2: rgba(82, 27, 9, 0.86);
  --mb-panel-3: rgba(117, 54, 11, 0.72);

  --mb-primary: #0f9f8d;
  --mb-primary-2: #27c8b2;
  --mb-teal: #0f9f8d;
  --mb-gold: #f4b23a;
  --mb-gold-2: #ffe08a;
  --mb-red: #e4472e;
  --mb-red-2: #ff6a42;

  --mb-text: #fff7e4;
  --mb-text-soft: #f0d8b5;
  --mb-muted: #c9a983;
  --mb-muted-2: #9b7a5c;

  --mb-border: rgba(244, 178, 58, 0.22);
  --mb-border-strong: rgba(255, 224, 138, 0.42);
  --mb-line: rgba(244, 178, 58, 0.22);
  --mb-line-strong: rgba(255, 224, 138, 0.42);

  --mb-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --mb-shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.28);
  --mb-glow: 0 0 0 1px rgba(255, 224, 138, 0.18), 0 18px 46px rgba(244, 178, 58, 0.18);
  --mb-radius-lg: 26px;
  --mb-radius-md: 18px;
  --mb-radius-sm: 12px;
}

body.mb-site {
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 18% 8%, rgba(244, 178, 58, 0.22) 0, rgba(244, 178, 58, 0) 34%),
    radial-gradient(circle at 88% 20%, rgba(228, 71, 46, 0.18) 0, rgba(228, 71, 46, 0) 28%),
    linear-gradient(135deg, #120403 0%, #2a0906 45%, #5b2108 100%);
  min-height: 100dvh;
  color-scheme: dark;
  direction: ltr;
  text-align: left;
}

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

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

/* Site chrome */

.mb-topbar {
  background: rgba(22, 5, 4, 0.82);
  border-bottom: 1px solid var(--mb-border);
  color: var(--mb-text-soft);
  font-size: clamp(0.78rem, 1.8vw, 0.9rem);
}

.mb-topbar__inner {
  width: min(100% - (2 * var(--mb-page-pad)), var(--mb-container));
  margin-inline: auto;
  padding-block: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.mb-site-header {
  background: linear-gradient(180deg, rgba(30, 7, 5, 0.88), rgba(30, 7, 5, 0.72));
  border-bottom: 1px solid var(--mb-border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mb-site-header__inner {
  width: min(100% - (2 * var(--mb-page-pad)), var(--mb-container));
  margin-inline: auto;
  padding-block: clamp(8px, 1.8vw, 14px);
  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;
  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;
}

.mb-site-brand__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 850;
  letter-spacing: 0.01em;
}

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

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

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

.mb-site-nav__link,
.mb-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 138, 0.18);
  background: rgba(255, 224, 138, 0.06);
  color: var(--mb-text-soft);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.15;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mb-site-nav__link:hover,
.mb-site-nav__link:focus-visible,
.mb-menu-link:hover,
.mb-menu-link:focus-visible {
  color: #fffdf4;
  background: rgba(244, 178, 58, 0.16);
  border-color: rgba(255, 224, 138, 0.44);
  transform: translateY(-1px);
  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: clamp(6px, 1.4vw, 10px);
  min-width: 0;
}

.mb-site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: clamp(88px, 24vw, 170px);
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 138, 0.36);
  background: linear-gradient(180deg, var(--mb-primary-2), var(--mb-primary));
  color: #fffdf4;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.08;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 20px rgba(15, 159, 141, 0.22);
}

.mb-site-btn:hover,
.mb-site-btn:focus-visible {
  color: #fffdf4;
  background: linear-gradient(180deg, #31d8c1, #0b8d7e);
  outline: none;
}

.mb-site-btn--apk {
  background: rgba(255, 224, 138, 0.08);
  color: var(--mb-gold-2);
  border-color: rgba(255, 224, 138, 0.38);
  box-shadow: none;
}

.mb-site-btn--apk:hover,
.mb-site-btn--apk:focus-visible {
  color: #fff5d6;
  background: rgba(244, 178, 58, 0.16);
}

.mb-site-burger {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 138, 0.28);
  background: rgba(255, 224, 138, 0.08);
  color: var(--mb-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Off-canvas drawer */

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

.mb-site-drawer__panel {
  height: 100%;
  min-height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 178, 58, 0.18), rgba(244, 178, 58, 0) 35%),
    linear-gradient(180deg, rgba(45, 13, 8, 0.98), rgba(22, 5, 4, 0.98));
  color: var(--mb-text);
}

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

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

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

.mb-site-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--mb-text-soft);
  text-decoration: none;
  border: 1px solid rgba(255, 224, 138, 0.14);
  background: rgba(255, 224, 138, 0.05);
  line-height: 1.25;
}

.mb-site-drawer__link:hover,
.mb-site-drawer__link:focus-visible {
  color: #fffdf4;
  background: rgba(244, 178, 58, 0.14);
  border-color: rgba(255, 224, 138, 0.34);
  outline: none;
}

.mb-site-drawer__cta,
.mb-site-drawer__cta--apk {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
}

.mb-site-drawer__cta {
  color: #fffdf4;
  background: linear-gradient(180deg, var(--mb-primary-2), var(--mb-primary));
  border: 1px solid rgba(255, 224, 138, 0.38);
}

.mb-site-drawer__cta--apk {
  color: var(--mb-gold-2);
  background: rgba(255, 224, 138, 0.08);
  border: 1px solid rgba(255, 224, 138, 0.34);
}

/* Compact page strip and breadcrumbs */

.mb-page-strip {
  background: rgba(22, 5, 4, 0.68);
  border-bottom: 1px solid rgba(244, 178, 58, 0.16);
}

.mb-page-strip__inner {
  width: min(100% - (2 * var(--mb-page-pad)), var(--mb-container));
  margin-inline: auto;
  padding-block: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--mb-muted);
  font-size: clamp(0.78rem, 1.8vw, 0.92rem);
  line-height: 1.35;
}

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

.mb-page-strip a:hover,
.mb-page-strip a:focus-visible {
  color: #fff4c5;
  text-decoration: underline;
  outline: none;
}

.mb-page-title {
  width: min(100% - (2 * var(--mb-page-pad)), var(--mb-container));
  margin-inline: auto;
  padding-block: clamp(18px, 4vw, 38px);
}

.mb-page-title h1 {
  margin: 0 0 0.45em;
  color: var(--mb-text);
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

/* Footer */

.mb-site-footer {
  margin-block-start: clamp(28px, 6vw, 70px);
  background:
    radial-gradient(circle at 85% 0%, rgba(244, 178, 58, 0.14), rgba(244, 178, 58, 0) 28%),
    linear-gradient(180deg, rgba(45, 13, 8, 0.88), rgba(17, 4, 3, 0.96));
  border-top: 1px solid var(--mb-border);
  color: var(--mb-text-soft);
}

.mb-site-footer__inner {
  width: min(100% - (2 * var(--mb-page-pad)), var(--mb-container));
  margin-inline: auto;
  padding-block: clamp(24px, 5vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.8fr);
  align-items: start;
  gap: clamp(18px, 4vw, 36px);
}

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

.mb-site-footer__logo {
  display: block;
  max-width: 190px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

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

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

.mb-footer-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 138, 0.16);
  background: rgba(255, 224, 138, 0.055);
  color: var(--mb-text-soft);
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.mb-footer-nav__link:hover,
.mb-footer-nav__link:focus-visible {
  color: #fffdf4;
  background: rgba(244, 178, 58, 0.14);
  border-color: rgba(255, 224, 138, 0.34);
  outline: none;
}

/* Article root */

.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  width: min(100%, var(--mb-container));
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: clamp(12px, 2.6vw, 22px);
  box-sizing: border-box;
  min-width: 0;
  direction: ltr;
  text-align: left;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 14% 0%, rgba(244, 178, 58, 0.15), rgba(244, 178, 58, 0) 32%),
    radial-gradient(circle at 96% 18%, rgba(15, 159, 141, 0.1), rgba(15, 159, 141, 0) 28%),
    linear-gradient(180deg, rgba(45, 13, 8, 0.96), rgba(22, 5, 4, 0.98));
  border: 1px solid var(--mb-border);
  border-radius: var(--mb-radius-lg);
  box-shadow: var(--mb-shadow);
  overflow-wrap: break-word;
}

body.mb-site .mb-article {
  margin-block: clamp(16px, 3vw, 30px) clamp(24px, 5vw, 54px);
}

.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 :is(img, svg, video, canvas, iframe),
.mbpk-article :is(img, svg, video, canvas, iframe) {
  max-width: 100%;
}

.mb-article img,
.mbpk-article img {
  height: auto;
}

.mb-article iframe,
.mbpk-article iframe {
  width: 100%;
  border: 0;
}

/* Typography */

.mb-article :is(h1, h2, h3, h4, h5, h6),
.mbpk-article :is(h1, h2, h3, h4, h5, h6) {
  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;
}

.mb-article h1,
.mbpk-article h1 {
  font-size: clamp(2.2rem, 6.4vw, 5rem);
  line-height: 0.95;
}

.mb-article h2,
.mbpk-article h2 {
  font-size: clamp(1.65rem, 4.2vw, 3.1rem);
}

.mb-article h3,
.mbpk-article h3 {
  font-size: clamp(1.32rem, 3vw, 2rem);
}

.mb-article h4,
.mbpk-article h4 {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

.mb-article :is(p, li, dd, td, th),
.mbpk-article :is(p, li, dd, td, th) {
  font-size: clamp(1rem, 2vw, 1.075rem);
  line-height: 1.72;
}

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

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

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

.mb-article a:not(.mb-btn),
.mbpk-article a:not(.mb-btn) {
  color: var(--mb-gold-2);
  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: #fff4c5;
  outline: none;
}

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

.mb-article :is(hr, .mb-divider),
.mbpk-article :is(hr, .mb-divider) {
  width: 100%;
  height: 1px;
  border: 0;
  margin-block: var(--mb-section-gap);
  background: linear-gradient(90deg, rgba(244, 178, 58, 0), rgba(244, 178, 58, 0.48), rgba(244, 178, 58, 0));
}

/* Shared section rhythm */

.mb-article :is(.mb-hero, .mb-row, .mb-cta, .mb-grid, .mb-slot-grid, .mb-faq, .mb-table-wrap, .mb-section),
.mbpk-article :is(.mb-hero, .mb-row, .mb-cta, .mb-grid, .mb-slot-grid, .mb-faq, .mb-table-wrap, .mb-section) {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  min-width: 0;
}

.mb-article :is(.mb-hero, .mb-row, .mb-cta, .mb-grid, .mb-slot-grid, .mb-faq, .mb-table-wrap, .mb-section):not(:last-child),
.mbpk-article :is(.mb-hero, .mb-row, .mb-cta, .mb-grid, .mb-slot-grid, .mb-faq, .mb-table-wrap, .mb-section):not(:last-child) {
  margin-block-end: var(--mb-section-gap);
}

/* Hero: image, CTA, copy */

.mb-article .mb-hero,
.mbpk-article .mb-hero {
  --mb-hero-pad: clamp(16px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "cta"
    "copy";
  gap: 0;
  align-items: start;
  padding-inline: 0;
  padding-block-start: 0;
  padding-block-end: clamp(6px, 1.5vw, 12px);
  border-radius: var(--mb-radius-lg);
  border: 1px solid var(--mb-border);
  background:
    linear-gradient(180deg, rgba(255, 224, 138, 0.08), rgba(255, 224, 138, 0)),
    rgba(45, 13, 8, 0.62);
  box-shadow: var(--mb-glow);
  min-width: 0;
  max-width: var(--mb-container);
}

.mb-article .mb-hero__media,
.mbpk-article .mb-hero__media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  border-radius: calc(var(--mb-radius-lg) - 1px);
  overflow: hidden;
  overflow: clip;
  background: #260806;
  border: 1px solid rgba(255, 224, 138, 0.14);
}

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

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

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

.mb-article .mb-hero__copy,
.mbpk-article .mb-hero__copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-inline: var(--mb-hero-pad);
  padding-block: 0 clamp(12px, 2.5vw, 22px);
}

.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: clamp(10px, 2vw, 16px);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 138, 0.42);
  background: rgba(244, 178, 58, 0.12);
  color: var(--mb-gold-2);
  font-size: clamp(0.78rem, 1.8vw, 0.9rem);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.02em;
  cursor: default;
}

.mb-article .mb-hero__lead,
.mbpk-article .mb-hero__lead {
  color: var(--mb-text-soft);
  font-size: clamp(1.08rem, 2.5vw, 1.32rem);
  line-height: 1.65;
  max-width: 100%;
}

.mb-article .mb-hero__actions,
.mbpk-article .mb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block-start: clamp(16px, 3vw, 24px);
}

/* Rows */

.mb-article .mb-row,
.mbpk-article .mb-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
  align-items: start;
  gap: clamp(18px, 4vw, 34px);
  padding: var(--mb-block-pad);
  border-radius: var(--mb-radius-lg);
  border: 1px solid var(--mb-border);
  background:
    linear-gradient(135deg, rgba(255, 224, 138, 0.06), rgba(15, 159, 141, 0.035)),
    rgba(45, 13, 8, 0.68);
  min-width: 0;
  max-width: var(--mb-container);
}

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

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

.mb-article .mb-copy > :last-child,
.mbpk-article .mb-copy > :last-child,
.mb-article .mb-hero__copy > :last-child,
.mbpk-article .mb-hero__copy > :last-child,
.mb-article .mb-cta__copy > :last-child,
.mbpk-article .mb-cta__copy > :last-child {
  margin-block-end: 0;
}

.mb-article .mb-media,
.mbpk-article .mb-media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  padding-block-start: 0;
  align-self: start;
  aspect-ratio: 2 / 3;
  border-radius: var(--mb-radius-md);
  border: 1px solid rgba(255, 224, 138, 0.16);
  background: #260806;
  overflow: hidden;
  overflow: clip;
  box-shadow: var(--mb-shadow-soft);
}

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

.mb-article .mb-media:hover img,
.mbpk-article .mb-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.07) contrast(1.05);
  cursor: pointer;
}

@media (min-width: 820px) {
  .mb-article .mb-row,
  .mbpk-article .mb-row {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    grid-template-areas: "copy media";
  }

  .mb-article .mb-row--reverse,
  .mbpk-article .mb-row--reverse {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    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";
}

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

/* CTA and buttons */

.mb-article .mb-cta,
.mbpk-article .mb-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 3vw, 22px);
  align-items: center;
  padding: var(--mb-block-pad);
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(255, 224, 138, 0.34);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 224, 138, 0.22), rgba(255, 224, 138, 0) 34%),
    linear-gradient(135deg, rgba(15, 159, 141, 0.28), rgba(83, 25, 8, 0.76));
  box-shadow: var(--mb-glow);
  min-width: 0;
}

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

.mb-article .mb-cta__actions,
.mbpk-article .mb-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.mb-article .mb-btn,
.mbpk-article .mb-btn,
.mb-article a.mb-btn,
.mbpk-article a.mb-btn {
  --mb-btn-bg: linear-gradient(180deg, var(--mb-primary-2), var(--mb-primary));
  --mb-btn-text: #fffdf4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 138, 0.48);
  background: var(--mb-btn-bg);
  color: var(--mb-btn-text);
  text-decoration: none;
  text-align: center;
  font-family: var(--mb-font);
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 12px 24px rgba(15, 159, 141, 0.28);
  cursor: pointer;
  overflow-wrap: anywhere;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mb-article .mb-btn:hover,
.mb-article .mb-btn:focus-visible,
.mbpk-article .mb-btn:hover,
.mbpk-article .mb-btn:focus-visible,
.mb-article a.mb-btn:hover,
.mb-article a.mb-btn:focus-visible,
.mbpk-article a.mb-btn:hover,
.mbpk-article a.mb-btn:focus-visible {
  color: var(--mb-btn-text);
  background: linear-gradient(180deg, #31d8c1, #0b8d7e);
  border-color: rgba(255, 224, 138, 0.7);
  box-shadow: 0 16px 34px rgba(15, 159, 141, 0.34);
  transform: translateY(-1px);
  outline: none;
}

.mb-article .mb-btn--secondary,
.mbpk-article .mb-btn--secondary,
.mb-article a.mb-btn--secondary,
.mbpk-article a.mb-btn--secondary {
  --mb-btn-bg: rgba(255, 224, 138, 0.08);
  --mb-btn-text: var(--mb-gold-2);
  color: var(--mb-btn-text);
  background: var(--mb-btn-bg);
  border-color: rgba(255, 224, 138, 0.36);
  box-shadow: none;
}

.mb-article .mb-btn--secondary:hover,
.mb-article .mb-btn--secondary:focus-visible,
.mbpk-article .mb-btn--secondary:hover,
.mbpk-article .mb-btn--secondary:focus-visible,
.mb-article a.mb-btn--secondary:hover,
.mb-article a.mb-btn--secondary:focus-visible,
.mbpk-article a.mb-btn--secondary:hover,
.mbpk-article a.mb-btn--secondary:focus-visible {
  color: #fff5d6;
  background: rgba(244, 178, 58, 0.16);
}

.mb-article .mb-btn--accent,
.mbpk-article .mb-btn--accent,
.mb-article a.mb-btn--accent,
.mbpk-article a.mb-btn--accent {
  --mb-btn-bg: linear-gradient(180deg, #ffe08a, var(--mb-gold));
  --mb-btn-text: #2a0b07;
  color: var(--mb-btn-text);
  background: var(--mb-btn-bg);
  border-color: rgba(255, 244, 197, 0.65);
  box-shadow: 0 12px 24px rgba(244, 178, 58, 0.24);
}

.mb-article .mb-btn--accent:hover,
.mb-article .mb-btn--accent:focus-visible,
.mbpk-article .mb-btn--accent:hover,
.mbpk-article .mb-btn--accent:focus-visible,
.mb-article a.mb-btn--accent:hover,
.mb-article a.mb-btn--accent:focus-visible,
.mbpk-article a.mb-btn--accent:hover,
.mbpk-article a.mb-btn--accent:focus-visible {
  color: var(--mb-btn-text);
  background: linear-gradient(180deg, #fff1ad, #f6bd45);
}

/* 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 {
  display: grid;
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 3vw, 24px);
  align-items: stretch;
  min-width: 0;
}

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

.mb-article .mb-card,
.mbpk-article .mb-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  border-radius: var(--mb-radius-md);
  border: 1px solid var(--mb-border);
  background:
    linear-gradient(180deg, rgba(255, 224, 138, 0.055), rgba(255, 224, 138, 0)),
    rgba(45, 13, 8, 0.72);
  box-shadow: var(--mb-shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.mb-article .mb-card:hover,
.mbpk-article .mb-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 224, 138, 0.38);
  box-shadow: var(--mb-glow);
}

.mb-article .mb-card__media,
.mbpk-article .mb-card__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 2 / 3;
  padding: 0;
  border-radius: calc(var(--mb-radius-md) - 1px);
  background: #260806;
  overflow: hidden;
  overflow: clip;
}

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

.mb-article .mb-card:hover .mb-card__media img,
.mbpk-article .mb-card:hover .mb-card__media img {
  transform: scale(1.035);
  filter: saturate(1.07) contrast(1.05);
  cursor: pointer;
}

.mb-article .mb-card__body,
.mbpk-article .mb-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(14px, 2.6vw, 20px);
  min-width: 0;
  max-width: 100%;
}

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

.mb-article .mb-card__copy,
.mbpk-article .mb-card__copy {
  color: var(--mb-text-soft);
  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));
  }

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

@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: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;
  }

  .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),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .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:nth-last-child(2):nth-child(3n+1),
  .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):has(.mb-card__body),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.82fr);
    grid-template-rows: auto;
    gap: 0;
    align-items: start;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body) > .mb-card__media,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body) > .mb-card__media,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body) > .mb-card__media,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body) > .mb-card__media {
    grid-column: 2;
    grid-row: 1;
    height: auto;
    align-self: start;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body) > .mb-card__body,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body) > .mb-card__body,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body) > .mb-card__body,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):has(.mb-card__body) > .mb-card__body {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    padding: clamp(18px, 3vw, 28px);
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):not(:has(.mb-card__body)),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):not(:has(.mb-card__body)),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):not(:has(.mb-card__body)),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):not(:has(.mb-card__body)) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.82fr);
    grid-template-rows: auto;
    gap: clamp(14px, 3vw, 24px);
    align-items: start;
    padding: clamp(18px, 3vw, 28px);
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):not(:has(.mb-card__body)) > .mb-card__media,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):not(:has(.mb-card__body)) > .mb-card__media,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):not(:has(.mb-card__body)) > .mb-card__media,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1):not(:has(.mb-card__body)) > .mb-card__media {
    grid-column: 2;
    grid-row: 1;
  }

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

/* Lists */

.mb-article ul,
.mb-article ol,
.mbpk-article ul,
.mbpk-article ol {
  margin-block-start: 0;
  margin-block-end: 1.1em;
  padding-inline-start: 1.35em;
  padding-inline-end: 0;
}

.mb-article li,
.mbpk-article li {
  margin-block: 0.28em;
  padding-inline-start: 0.12em;
}

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

.mb-article[dir="rtl"] ul,
.mb-article[dir="rtl"] ol,
[dir="rtl"] .mb-article ul,
[dir="rtl"] .mb-article ol {
  padding-inline-start: 0;
  padding-inline-end: 1.35em;
}

/* FAQ */

.mb-article .mb-faq,
.mbpk-article .mb-faq {
  display: grid;
  gap: 12px;
  break-inside: avoid;
}

.mb-article .mb-faq details,
.mbpk-article .mb-faq details {
  border-radius: var(--mb-radius-md);
  border: 1px solid var(--mb-border);
  background: rgba(45, 13, 8, 0.72);
  box-shadow: var(--mb-shadow-soft);
  min-width: 0;
  break-inside: avoid;
}

.mb-article .mb-faq summary,
.mbpk-article .mb-faq summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--mb-text);
  font-weight: 850;
  line-height: 1.35;
  list-style-position: inside;
}

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

.mb-article .mb-faq details[open] summary,
.mbpk-article .mb-faq details[open] summary {
  color: var(--mb-gold-2);
  border-bottom: 1px solid rgba(244, 178, 58, 0.16);
}

.mb-article .mb-faq__answer,
.mb-article .mb-faq details > :not(summary),
.mbpk-article .mb-faq__answer,
.mbpk-article .mb-faq details > :not(summary) {
  padding-inline: 18px;
  padding-block: 14px 18px;
  color: var(--mb-text-soft);
  max-width: 100%;
}

.mb-article .mb-faq details > :last-child,
.mbpk-article .mb-faq details > :last-child {
  margin-block-end: 0;
}

/* Tables */

.mb-article .mb-table-wrap,
.mbpk-article .mb-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  display: block;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  margin-block: clamp(18px, 3vw, 28px);
  border-radius: var(--mb-radius-md);
  border: 1px solid var(--mb-border);
  background: rgba(22, 5, 4, 0.52);
  box-shadow: var(--mb-shadow-soft);
}

.mb-article .mb-table-wrap table,
.mb-article table.mb-table,
.mbpk-article .mb-table-wrap table,
.mbpk-article table.mb-table {
  width: 100%;
  min-width: 600px;
  max-width: none;
  border-collapse: separate;
  border-spacing: 0;
  direction: ltr;
  text-align: left;
  color: var(--mb-text-soft);
  background: rgba(45, 13, 8, 0.74);
}

.mb-article table.mb-table th,
.mb-article table.mb-table td,
.mb-article .mb-table-wrap th,
.mb-article .mb-table-wrap td,
.mbpk-article table.mb-table th,
.mbpk-article table.mb-table td,
.mbpk-article .mb-table-wrap th,
.mbpk-article .mb-table-wrap td {
  padding: 12px 14px;
  border-inline-end: 1px solid rgba(244, 178, 58, 0.13);
  border-block-end: 1px solid rgba(244, 178, 58, 0.13);
  vertical-align: top;
}

.mb-article table.mb-table th,
.mb-article .mb-table-wrap th,
.mbpk-article table.mb-table th,
.mbpk-article .mb-table-wrap th {
  color: #fff4c5;
  background: rgba(244, 178, 58, 0.13);
  font-weight: 850;
}

.mb-article table.mb-table tr:last-child td,
.mb-article .mb-table-wrap tr:last-child td,
.mbpk-article table.mb-table tr:last-child td,
.mbpk-article .mb-table-wrap tr:last-child td {
  border-block-end: 0;
}

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

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

/* Media helpers */

.mb-article .mb-media--contain,
.mbpk-article .mb-media--contain {
  background: rgba(22, 5, 4, 0.74);
}

.mb-article .mb-media--contain img,
.mbpk-article .mb-media--contain img {
  object-fit: contain;
}

/* Mobile hardening */

@media (max-width: 639.98px) {
  body.mb-site {
    overflow-x: clip;
  }

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

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

  .mb-site-header__actions {
    flex: 0 0 auto;
    flex-shrink: 0;
    gap: 6px;
  }

  .mb-site-btn {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .mb-page-strip__inner,
  .mb-site-footer__inner,
  .mb-site-header__inner,
  .mb-topbar__inner {
    width: min(100% - 20px, var(--mb-container));
  }

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

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

  .mb-article,
  .mbpk-article,
  .mbpk-page .mb-article {
    width: min(100% - 20px, var(--mb-container));
    max-width: calc(100% - 20px);
    padding: 12px;
    border-radius: 20px;
  }

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

  .mb-article .mb-hero,
  .mbpk-article .mb-hero {
    border-radius: 18px;
  }

  .mb-article .mb-hero__media,
  .mbpk-article .mb-hero__media {
    border-radius: 17px;
  }

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

  .mb-article .mb-row,
  .mb-article .mb-cta,
  .mbpk-article .mb-row,
  .mbpk-article .mb-cta {
    padding: 14px;
    border-radius: 18px;
  }

  .mb-article .mb-hero__actions,
  .mb-article .mb-cta__actions,
  .mbpk-article .mb-hero__actions,
  .mbpk-article .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;
  }

  .mb-article .mb-table-wrap,
  .mbpk-article .mb-table-wrap {
    width: 100%;
    max-width: 100%;
    margin-block: 16px 24px;
  }

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

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

@media (max-width: 819.98px) {
  .mb-article .mb-row,
  .mbpk-article .mb-row {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .mb-article .mb-btn,
  .mb-article .mb-media img,
  .mb-article .mb-card,
  .mb-article .mb-card__media img,
  .mb-article .mb-hero__media img,
  .mb-site-nav__link,
  .mb-menu-link {
    transition: none;
  }

  .mb-article .mb-btn:hover,
  .mb-article .mb-card:hover,
  .mb-article .mb-media:hover img,
  .mb-article .mb-card:hover .mb-card__media img,
  .mb-article .mb-hero__media:hover img {
    transform: none;
  }
}

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

