/* Theme tokens based on the dark red betting/casino 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", "Noto Sans Arabic", "Segoe UI", Arial, sans-serif;
  --mb-container: 1120px;
  --mb-radius-lg: 28px;
  --mb-radius-md: 20px;
  --mb-radius-sm: 999px;
  --mb-content-pad: clamp(1rem, 3vw, 2rem);

  --mb-bg: #050000;
  --mb-bg-2: #120304;
  --mb-panel: #140607;
  --mb-panel-2: #220909;
  --mb-panel-3: #300d0c;

  --mb-primary: #f04436;
  --mb-primary-2: #ff6a3d;
  --mb-gold: #ffc957;
  --mb-gold-2: #ff9f2f;
  --mb-red: #f04436;
  --mb-teal: #24c981;
  --mb-green: #2dd477;

  --mb-text: #fff8f2;
  --mb-text-soft: #f1d5cc;
  --mb-muted: #c79c93;
  --mb-muted-2: #8f6862;

  --mb-line: rgba(240, 68, 54, 0.28);
  --mb-border: rgba(240, 68, 54, 0.34);
  --mb-line-strong: rgba(255, 106, 61, 0.58);
  --mb-border-strong: rgba(255, 106, 61, 0.62);

  --mb-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 34px rgba(240, 68, 54, 0.18);
  --mb-glow: 0 0 0 1px rgba(255, 106, 61, 0.3), 0 22px 70px rgba(240, 68, 54, 0.22);
  --mb-btn-text: #ffffff;
  --mb-dark-text: #170403;

  --mb-section-gap: clamp(1.75rem, 4vw, 3.5rem);
  --mb-inner-gap: clamp(1rem, 2.4vw, 1.75rem);
}

/* Page shell */
body.mb-site {
  margin: 0;
  direction: ltr;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 50% -10%, rgba(240, 68, 54, 0.22) 0, transparent 34rem),
    radial-gradient(circle at 85% 18%, rgba(255, 106, 61, 0.16) 0, transparent 26rem),
    linear-gradient(180deg, #050000 0%, #100202 42%, #050000 100%);
}

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

.mb-site-header *,
.mb-page-strip *,
.mb-site-footer *,
.mb-site-drawer * {
  box-sizing: border-box;
  min-width: 0;
}

.mb-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--mb-border);
  background: rgba(5, 0, 0, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.mb-site-header__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: 0.75rem var(--mb-content-pad);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.5rem, 2vw, 1rem);
}

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

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

.mb-site-brand__name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--mb-text);
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.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: 0.45rem;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.mb-site-nav__link,
.mb-site-drawer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(240, 68, 54, 0.24);
  border-radius: var(--mb-radius-sm);
  color: var(--mb-text-soft);
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mb-site-nav__link {
  padding: 0.58rem 0.85rem;
}

.mb-site-nav__link:hover,
.mb-site-nav__link:focus-visible,
.mb-site-drawer__link:hover,
.mb-site-drawer__link:focus-visible {
  color: #ffffff;
  background: rgba(240, 68, 54, 0.18);
  border-color: var(--mb-border-strong);
  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: 0.5rem;
  max-width: 48%;
}

.mb-site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 2.35rem;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(255, 106, 61, 0.72);
  border-radius: var(--mb-radius-sm);
  color: #ffffff;
  background: linear-gradient(135deg, var(--mb-primary) 0%, var(--mb-primary-2) 100%);
  box-shadow: 0 10px 28px rgba(240, 68, 54, 0.28);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.mb-site-btn:hover,
.mb-site-btn:focus-visible {
  color: #ffffff;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(240, 68, 54, 0.36);
  outline: none;
}

.mb-site-btn--apk {
  color: var(--mb-text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 201, 87, 0.58);
  box-shadow: none;
}

.mb-site-burger {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  min-width: 2.35rem;
  border: 1px solid var(--mb-border);
  border-radius: 50%;
  color: var(--mb-text);
  background: rgba(255, 255, 255, 0.04);
}

/* Off-canvas drawer colors and viewport-safe sizing */
.mb-site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 1200;
  color: var(--mb-text);
  background: rgba(5, 0, 0, 0.72);
}

.mb-site-drawer__panel {
  height: 100%;
  min-height: 100dvh;
  color: var(--mb-text);
  background:
    radial-gradient(circle at 20% 0%, rgba(240, 68, 54, 0.2), transparent 20rem),
    linear-gradient(180deg, rgba(30, 8, 8, 0.98), rgba(8, 1, 1, 0.98));
  border-color: var(--mb-border);
  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 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mb-site-drawer__link {
  width: 100%;
  padding: 0.85rem 1rem;
  justify-content: flex-start;
  text-align: left;
}

.mb-site-drawer__cta,
.mb-site-drawer__cta--apk {
  color: #ffffff;
  border-color: rgba(255, 106, 61, 0.72);
  background: linear-gradient(135deg, var(--mb-primary), var(--mb-primary-2));
  box-shadow: 0 14px 34px rgba(240, 68, 54, 0.28);
}

.mb-site-drawer__cta--apk {
  color: var(--mb-text);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 201, 87, 0.58);
  box-shadow: none;
}

/* Compact breadcrumb/title strip */
.mb-page-strip {
  border-bottom: 1px solid rgba(240, 68, 54, 0.18);
  background: rgba(10, 1, 1, 0.58);
}

.mb-page-strip__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: 8px var(--mb-content-pad);
  color: var(--mb-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

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

/* Footer */
.mb-site-footer {
  margin-block-start: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--mb-border);
  background:
    radial-gradient(circle at 70% 0%, rgba(240, 68, 54, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(18, 3, 4, 0.92), rgba(5, 0, 0, 0.98));
}

.mb-site-footer__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2rem) var(--mb-content-pad);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
}

.mb-site-footer__brand {
  flex: 0 1 15rem;
  min-width: 0;
  color: var(--mb-text);
}

.mb-site-footer__text {
  margin: 0.65rem 0 0;
  color: var(--mb-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

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

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

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

.mb-footer-nav__link {
  width: 100%;
  max-width: 100%;
  min-height: 2.35rem;
  padding: 0.65rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 68, 54, 0.25);
  border-radius: var(--mb-radius-sm);
  color: var(--mb-text-soft);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.mb-footer-nav__link:hover,
.mb-footer-nav__link:focus-visible {
  color: #ffffff;
  background: rgba(240, 68, 54, 0.16);
  border-color: var(--mb-border-strong);
  outline: none;
}

/* Article root */
.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  box-sizing: border-box;
  direction: ltr;
  text-align: left;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 68, 54, 0.17), transparent 30rem),
    linear-gradient(180deg, rgba(22, 6, 7, 0.98) 0%, rgba(9, 1, 1, 0.99) 100%);
  border: 1px solid var(--mb-border);
  border-radius: var(--mb-radius-lg);
  padding: var(--mb-content-pad);
  box-shadow: var(--mb-shadow);
}

.mb-article *,
.mb-article *::before,
.mb-article *::after,
.mbpk-article *,
.mbpk-article *::before,
.mbpk-article *::after,
.mbpk-page .mb-article *,
.mbpk-page .mb-article *::before,
.mbpk-page .mb-article *::after {
  box-sizing: border-box;
  min-width: 0;
}

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

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(img, svg, video, canvas, 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) a {
  color: var(--mb-primary-2);
  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-gold);
}

: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.58em;
  color: var(--mb-text);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h1 {
  font-size: clamp(2.1rem, 6vw, 4.65rem);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h2 {
  font-size: clamp(1.65rem, 3.6vw, 3rem);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.75rem);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h4 {
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(p, li, dd, figcaption) {
  max-width: 100%;
  color: var(--mb-text-soft);
  font-size: clamp(1rem, 1.2vw, 1.075rem);
  line-height: 1.78;
  overflow-wrap: break-word;
}

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

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

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

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) .mb-accent {
  color: var(--mb-primary-2);
}

/* Hero: single-column image -> CTA -> copy at every breakpoint */
.mb-article .mb-hero,
.mbpk-article .mb-hero,
.mbpk-page .mb-article .mb-hero {
  --mb-hero-copy-pad: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block-end: var(--mb-section-gap);
  padding-inline: 0;
  padding-block-start: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "cta"
    "copy";
  gap: 0;
}

.mb-article .mb-hero__media,
.mbpk-article .mb-hero__media,
.mbpk-page .mb-article .mb-hero__media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(1rem, 3vw, var(--mb-radius-lg));
  overflow: clip;
  background: #080101;
  border: 1px solid var(--mb-border);
  box-shadow: var(--mb-glow);
  cursor: pointer;
}

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

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

.mb-article .mb-hero__copy,
.mbpk-article .mb-hero__copy,
.mbpk-page .mb-article .mb-hero__copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  padding-inline: var(--mb-hero-copy-pad);
  padding-block-start: clamp(1rem, 2.6vw, 1.75rem);
}

.mb-article .mb-hero > .mb-cta,
.mbpk-article .mb-hero > .mb-cta,
.mbpk-page .mb-article .mb-hero > .mb-cta {
  grid-area: cta;
  width: calc(100% - (2 * var(--mb-hero-copy-pad)));
  max-width: calc(100% - (2 * var(--mb-hero-copy-pad)));
  margin-inline: var(--mb-hero-copy-pad);
  margin-block-start: clamp(1rem, 2.4vw, 1.5rem);
  margin-block-end: 0;
}

.mb-article .mb-hero__badge,
.mbpk-article .mb-hero__badge,
.mbpk-page .mb-article .mb-hero__badge,
.mb-article .mb-badge,
.mbpk-article .mb-badge,
.mbpk-page .mb-article .mb-badge {
  width: fit-content;
  max-width: 100%;
  margin-block-end: 0.85rem;
  padding: 0.46rem 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 201, 87, 0.42);
  border-radius: var(--mb-radius-sm);
  color: var(--mb-gold);
  background: rgba(255, 201, 87, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.mb-article .mb-row:not(.mb-hero),
.mbpk-article .mb-row:not(.mb-hero),
.mbpk-page .mb-article .mb-row:not(.mb-hero) {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
  align-items: start;
  gap: var(--mb-inner-gap);
}

.mb-article .mb-row--reverse:not(.mb-hero),
.mbpk-article .mb-row--reverse:not(.mb-hero),
.mbpk-page .mb-article .mb-row--reverse:not(.mb-hero) {
  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),
.mbpk-page .mb-article .mb-row--stack:not(.mb-hero),
.mbpk-page .mb-article .mb-row--long:not(.mb-hero) {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
}

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

.mb-article .mb-copy,
.mbpk-article .mb-copy,
.mbpk-page .mb-article .mb-copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  padding-block-start: clamp(0.25rem, 1vw, 0.6rem);
}

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

.mb-article .mb-media,
.mbpk-article .mb-media,
.mbpk-page .mb-article .mb-media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  padding-block-start: clamp(0.25rem, 1vw, 0.6rem);
  aspect-ratio: 2 / 3;
  border-radius: clamp(1rem, 2.2vw, var(--mb-radius-md));
  overflow: clip;
  background: #080101;
  border: 1px solid var(--mb-border);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38), 0 0 28px rgba(240, 68, 54, 0.14);
  cursor: pointer;
}

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

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

/* Buttons and CTA */
.mb-article .mb-cta,
.mbpk-article .mb-cta,
.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(1rem, 3vw, 2rem);
  border: 1px solid var(--mb-border-strong);
  border-radius: var(--mb-radius-lg);
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 201, 87, 0.11), transparent 14rem),
    linear-gradient(135deg, rgba(48, 13, 12, 0.96), rgba(17, 3, 4, 0.98));
  box-shadow: var(--mb-glow);
}

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

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

.mb-article .mb-hero__actions,
.mb-article .mb-cta__actions,
.mb-article .mb-actions,
.mb-article .mb-btn-row,
.mbpk-article .mb-hero__actions,
.mbpk-article .mb-cta__actions,
.mbpk-article .mb-actions,
.mbpk-article .mb-btn-row,
.mbpk-page .mb-article .mb-hero__actions,
.mbpk-page .mb-article .mb-cta__actions,
.mbpk-page .mb-article .mb-actions,
.mbpk-page .mb-article .mb-btn-row {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-block-start: 1rem;
}

.mb-article .mb-btn,
.mbpk-article .mb-btn,
.mbpk-page .mb-article .mb-btn,
.mb-article a.mb-btn,
.mbpk-article a.mb-btn,
.mbpk-page .mb-article a.mb-btn,
.mb-article button.mb-btn,
.mbpk-article button.mb-btn,
.mbpk-page .mb-article button.mb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 106, 61, 0.75);
  border-radius: var(--mb-radius-sm);
  color: var(--mb-btn-text);
  background: linear-gradient(135deg, var(--mb-primary) 0%, var(--mb-primary-2) 100%);
  box-shadow: 0 12px 32px rgba(240, 68, 54, 0.32);
  text-align: center;
  text-decoration: none;
  font-family: var(--mb-font);
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.15;
  overflow-wrap: anywhere;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 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,
.mbpk-page .mb-article .mb-btn:hover,
.mbpk-page .mb-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,
.mbpk-page .mb-article a.mb-btn:hover,
.mbpk-page .mb-article a.mb-btn:focus-visible {
  color: #ffffff;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(240, 68, 54, 0.42);
  outline: none;
}

.mb-article .mb-btn--secondary,
.mbpk-article .mb-btn--secondary,
.mbpk-page .mb-article .mb-btn--secondary,
.mb-article a.mb-btn--secondary,
.mbpk-article a.mb-btn--secondary,
.mbpk-page .mb-article a.mb-btn--secondary {
  color: var(--mb-text);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 201, 87, 0.58);
  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,
.mbpk-page .mb-article .mb-btn--secondary:hover,
.mbpk-page .mb-article .mb-btn--secondary:focus-visible {
  color: #ffffff;
  background: rgba(255, 201, 87, 0.12);
  border-color: rgba(255, 201, 87, 0.85);
}

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

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

.mb-article .mb-card,
.mbpk-article .mb-card,
.mbpk-page .mb-article .mb-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "body";
  align-content: start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(240, 68, 54, 0.25);
  border-radius: var(--mb-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(20, 6, 7, 0.96);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

.mb-article .mb-card__media,
.mbpk-article .mb-card__media,
.mbpk-page .mb-article .mb-card__media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: calc(var(--mb-radius-md) - 0.35rem);
  overflow: clip;
  background: #080101;
  border: 1px solid rgba(240, 68, 54, 0.22);
  cursor: pointer;
}

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

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

.mb-article .mb-card__body,
.mbpk-article .mb-card__body,
.mbpk-page .mb-article .mb-card__body {
  grid-area: body;
  width: 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

.mb-article .mb-faq details,
.mbpk-article .mb-faq details,
.mbpk-page .mb-article .mb-faq details {
  width: 100%;
  max-width: 100%;
  margin-block-end: 0.75rem;
  border: 1px solid rgba(240, 68, 54, 0.26);
  border-radius: var(--mb-radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.mb-article .mb-faq summary,
.mbpk-article .mb-faq summary,
.mbpk-page .mb-article .mb-faq summary {
  min-width: 0;
  padding: 1rem 1.1rem;
  color: var(--mb-text);
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
  overflow-wrap: break-word;
}

.mb-article .mb-faq details[open] summary,
.mbpk-article .mb-faq details[open] summary,
.mbpk-page .mb-article .mb-faq details[open] summary {
  color: var(--mb-primary-2);
}

.mb-article .mb-faq details > :not(summary),
.mbpk-article .mb-faq details > :not(summary),
.mbpk-page .mb-article .mb-faq details > :not(summary) {
  padding-inline: 1.1rem;
}

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

/* Tables: horizontal scrolling stays inside the wrapper */
.mb-article .mb-table-wrap,
.mbpk-article .mb-table-wrap,
.mbpk-page .mb-article .mb-table-wrap {
  width: 100%;
  max-width: 100%;
  margin-block: 1.25rem var(--mb-section-gap);
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  border: 1px solid var(--mb-border);
  border-radius: var(--mb-radius-md);
  background: rgba(5, 0, 0, 0.5);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

.mb-article table.mb-table,
.mbpk-article table.mb-table,
.mbpk-page .mb-article table.mb-table {
  width: 100%;
  min-width: 640px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  direction: ltr;
  text-align: left;
  color: var(--mb-text-soft);
  background: rgba(20, 6, 7, 0.96);
  table-layout: auto;
}

.mb-article table.mb-table caption,
.mbpk-article table.mb-table caption,
.mbpk-page .mb-article table.mb-table caption {
  caption-side: bottom;
  padding: 0.85rem;
  color: var(--mb-muted);
  font-size: 0.9rem;
  text-align: inherit;
}

.mb-article table.mb-table th,
.mb-article table.mb-table td,
.mbpk-article table.mb-table th,
.mbpk-article table.mb-table td,
.mbpk-page .mb-article table.mb-table th,
.mbpk-page .mb-article table.mb-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(240, 68, 54, 0.18);
  border-inline-end: 1px solid rgba(240, 68, 54, 0.12);
  vertical-align: top;
  line-height: 1.45;
}

.mb-article table.mb-table th,
.mbpk-article table.mb-table th,
.mbpk-page .mb-article table.mb-table th {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(240, 68, 54, 0.22), rgba(240, 68, 54, 0.09));
  font-weight: 900;
}

.mb-article table.mb-table tr:last-child td,
.mbpk-article table.mb-table tr:last-child td,
.mbpk-page .mb-article table.mb-table tr:last-child td {
  border-bottom: 0;
}

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

/* Utility content blocks */
.mb-article .mb-divider,
.mbpk-article .mb-divider,
.mbpk-page .mb-article .mb-divider {
  width: 100%;
  max-width: var(--mb-container);
  height: 1px;
  margin: var(--mb-section-gap) auto;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 61, 0.58), transparent);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(blockquote, .mb-note) {
  width: 100%;
  max-width: 100%;
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border-inline-start: 4px solid var(--mb-primary);
  border-radius: var(--mb-radius-md);
  color: var(--mb-text-soft);
  background: rgba(255, 255, 255, 0.04);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(pre, code) {
  max-width: 100%;
  border-radius: 0.75rem;
  color: #ffe8df;
  background: rgba(0, 0, 0, 0.36);
  font-size: 0.92em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) pre {
  width: 100%;
  overflow-x: auto;
  padding: 1rem;
}

/* Forms inside article */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(input, select, textarea) {
  width: 100%;
  max-width: 100%;
  min-height: 2.85rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(240, 68, 54, 0.3);
  border-radius: 0.85rem;
  color: var(--mb-text);
  background: rgba(0, 0, 0, 0.28);
  font-family: var(--mb-font);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(input, select, textarea):focus {
  border-color: var(--mb-primary-2);
  outline: 2px solid rgba(240, 68, 54, 0.25);
  outline-offset: 2px;
}

/* Tablet */
@media (min-width: 640px) {
  .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));
  }
}

/* Desktop */
@media (min-width: 980px) {
  .mb-article .mb-row:not(.mb-hero),
  .mbpk-article .mb-row:not(.mb-hero),
  .mbpk-page .mb-article .mb-row:not(.mb-hero) {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    grid-template-areas: "copy media";
    gap: clamp(1.5rem, 3vw, 2.75rem);
  }

  .mb-article .mb-row--reverse:not(.mb-hero),
  .mbpk-article .mb-row--reverse:not(.mb-hero),
  .mbpk-page .mb-article .mb-row--reverse:not(.mb-hero) {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    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),
  .mbpk-page .mb-article .mb-row--stack:not(.mb-hero),
  .mbpk-page .mb-article .mb-row--long:not(.mb-hero) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "copy";
  }

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

  .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;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "body media";
    align-items: stretch;
  }

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

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

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

  .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;
  }
}

/* Mobile */
@media (max-width: 1023px) {
  .mb-site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.5rem;
  }

  .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;
    max-width: 62%;
    gap: 0.35rem;
  }

  .mb-site-btn {
    min-height: 30px;
    padding: 0.45rem 0.62rem;
    font-size: clamp(0.68rem, 2.7vw, 0.82rem);
  }

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

@media (max-width: 767px) {
  .mb-site-footer__inner {
    flex-direction: column;
  }

  .mb-site-footer__brand,
  .mb-footer-nav {
    flex-basis: auto;
    width: 100%;
  }
}

@media (max-width: 639px) {
  .mb-article,
  .mbpk-article,
  .mbpk-page .mb-article {
    width: 100%;
    max-width: 100%;
    border-radius: clamp(1rem, 5vw, 1.5rem);
    padding: clamp(0.85rem, 4vw, 1rem);
  }

  .mb-article .mb-hero,
  .mbpk-article .mb-hero,
  .mbpk-page .mb-article .mb-hero {
    --mb-hero-copy-pad: clamp(0.75rem, 4vw, 1rem);
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "cta"
      "copy";
  }

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

  .mb-article .mb-hero__actions,
  .mb-article .mb-cta__actions,
  .mb-article .mb-actions,
  .mb-article .mb-btn-row,
  .mbpk-article .mb-hero__actions,
  .mbpk-article .mb-cta__actions,
  .mbpk-article .mb-actions,
  .mbpk-article .mb-btn-row,
  .mbpk-page .mb-article .mb-hero__actions,
  .mbpk-page .mb-article .mb-cta__actions,
  .mbpk-page .mb-article .mb-actions,
  .mbpk-page .mb-article .mb-btn-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }

  .mb-article .mb-btn,
  .mbpk-article .mb-btn,
  .mbpk-page .mb-article .mb-btn,
  .mb-article a.mb-btn,
  .mbpk-article a.mb-btn,
  .mbpk-page .mb-article a.mb-btn,
  .mb-article button.mb-btn,
  .mbpk-article button.mb-btn,
  .mbpk-page .mb-article button.mb-btn {
    width: 100%;
    max-width: 100%;
  }

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

  .mb-article .mb-media,
  .mb-article .mb-media img,
  .mb-article .mb-card__media,
  .mb-article .mb-card__media img,
  .mbpk-article .mb-media,
  .mbpk-article .mb-media img,
  .mbpk-article .mb-card__media,
  .mbpk-article .mb-card__media img,
  .mbpk-page .mb-article .mb-media,
  .mbpk-page .mb-article .mb-media img,
  .mbpk-page .mb-article .mb-card__media,
  .mbpk-page .mb-article .mb-card__media img {
    max-width: 100%;
  }

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

  .mb-article table.mb-table th,
  .mb-article table.mb-table td,
  .mbpk-article table.mb-table th,
  .mbpk-article table.mb-table td,
  .mbpk-page .mb-article table.mb-table th,
  .mbpk-page .mb-article table.mb-table td {
    white-space: nowrap;
  }
}
/* Подпись CTA-блока: раньше была <h3> и давала пропуск уровня h1→h3 (стандарт флота §1.4).
   Тег сменён на <p>, типографика сохранена один в один. */
.mb-article .mb-cta__title,
.mbpk-article .mb-cta__title {
  color: var(--mb-text);
  font-family: var(--mb-font);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-block-start: 0;
  margin-block-end: 0.62em;
  overflow-wrap: anywhere;
  break-after: avoid;
  font-size: clamp(1.32rem, 3vw, 2rem);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

