/************************************************************
  Mostbet-inspired global CSS for Elementor HTML blocks
  Language: en
  Direction: LTR
************************************************************/

/* Theme tokens shared by shell chrome and article content */
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-gutter: clamp(14px, 3vw, 28px);
  --mb-section-pad: clamp(16px, 3.2vw, 34px);
  --mb-card-pad: clamp(16px, 2.6vw, 26px);

  --mb-bg: #170405;
  --mb-bg-2: #2b0707;
  --mb-bg-3: #4a0b08;
  --mb-panel: #260708;
  --mb-panel-2: #3b0b08;
  --mb-panel-3: #57140d;

  --mb-primary: #ffcc4d;
  --mb-primary-2: #f59a23;
  --mb-gold: #ffcc4d;
  --mb-gold-2: #f59a23;
  --mb-amber: #ffb13b;
  --mb-red: #b51c18;
  --mb-red-2: #7c0e0b;
  --mb-teal: #31d0b7;

  --mb-text: #fff6df;
  --mb-text-soft: #f7dba6;
  --mb-muted: #d6af75;
  --mb-muted-2: #a77b55;

  --mb-line: rgba(255, 205, 89, 0.22);
  --mb-line-strong: rgba(255, 205, 89, 0.48);
  --mb-border: rgba(255, 205, 89, 0.22);
  --mb-border-strong: rgba(255, 205, 89, 0.48);

  --mb-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  --mb-shadow-soft: 0 14px 42px rgba(0, 0, 0, 0.34);
  --mb-glow: 0 0 34px rgba(255, 181, 54, 0.34);
  --mb-glow-strong: 0 0 48px rgba(255, 190, 62, 0.48);

  --mb-radius-sm: 12px;
  --mb-radius: 18px;
  --mb-radius-lg: 28px;
  --mb-radius-pill: 999px;

  --mb-space-xs: 8px;
  --mb-space-sm: 12px;
  --mb-space-md: 18px;
  --mb-space-lg: 28px;
  --mb-space-xl: 42px;
  --mb-space-section: clamp(34px, 6vw, 72px);
}

/* Page-wide shell background */
body.mb-site {
  margin: 0;
  min-width: 0;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 177, 59, 0.26) 0, transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(181, 28, 24, 0.42) 0, transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(245, 154, 35, 0.16) 0, transparent 34%),
    linear-gradient(135deg, #120304 0%, #260606 42%, #4a0b08 100%);
  direction: ltr;
  text-align: left;
  overflow-wrap: anywhere;
}

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

/************************************************************
  Shell chrome: header, navigation, breadcrumbs, footer, drawer
************************************************************/

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

.mb-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(180deg, rgba(49, 7, 7, 0.92), rgba(28, 4, 5, 0.86));
  border-block-end: 1px solid var(--mb-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mb-site-topbar {
  border-block-end: 1px solid rgba(255, 205, 89, 0.12);
  background: rgba(17, 3, 4, 0.42);
}

.mb-site-topbar__inner,
.mb-site-header__inner,
.mb-page-strip__inner,
.mb-site-footer__inner {
  width: min(var(--mb-container), calc(100% - (var(--mb-page-gutter) * 2)));
  max-width: var(--mb-container);
  margin-inline: auto;
  box-sizing: border-box;
}

.mb-site-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  padding-block: 7px;
  color: var(--mb-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.mb-site-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 18px);
  min-width: 0;
  padding-block: clamp(8px, 1.8vw, 14px);
}

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

.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__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--mb-text);
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(255, 192, 57, 0.24);
}

.mb-site-header__actions {
  flex: 0 0 auto;
  flex-shrink: 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(6px, 1.4vw, 10px);
}

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

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

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

.mb-site-nav__link,
.mb-site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  padding: 8px 13px;
  border: 1px solid rgba(255, 205, 89, 0.24);
  border-radius: var(--mb-radius-pill);
  color: var(--mb-text-soft);
  background: rgba(255, 205, 89, 0.07);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
  line-height: 1.15;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mb-site-nav__link:hover,
.mb-site-nav a:hover,
.mb-site-nav__link:focus-visible,
.mb-site-nav a:focus-visible {
  color: #2a0707;
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
  border-color: rgba(255, 232, 151, 0.72);
  transform: translateY(-1px);
  outline: none;
}

.mb-site-btn,
.mb-site-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  min-height: 34px;
  padding: 8px 15px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 237, 169, 0.72);
  border-radius: var(--mb-radius-pill);
  color: #2a0707;
  background: linear-gradient(180deg, #ffe07a 0%, #ffbf38 46%, #e98216 100%);
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(0.78rem, 2.2vw, 0.94rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 9px 24px rgba(245, 154, 35, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.mb-site-btn:hover,
.mb-site-btn:focus-visible {
  color: #210404;
  filter: brightness(1.06) saturate(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 13px 32px rgba(255, 191, 56, 0.34);
  outline: none;
}

.mb-site-btn--apk,
.mb-site-btn--apk:visited {
  color: var(--mb-text);
  background: rgba(255, 205, 89, 0.08);
  border-color: rgba(255, 205, 89, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mb-site-btn--apk:hover,
.mb-site-btn--apk:focus-visible {
  color: #2a0707;
  background: linear-gradient(180deg, #ffe07a, #f59a23);
}

.mb-site-menu-toggle {
  flex: 0 0 auto;
  inline-size: 38px;
  block-size: 38px;
  min-width: 0;
  display: inline-grid;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(255, 205, 89, 0.34);
  border-radius: 12px;
  color: var(--mb-text);
  background: rgba(255, 205, 89, 0.09);
  cursor: pointer;
}

.mb-page-strip {
  background: rgba(17, 3, 4, 0.54);
  border-block-end: 1px solid rgba(255, 205, 89, 0.14);
}

.mb-page-strip__inner {
  padding-block: 8px;
  color: var(--mb-muted);
  font-size: 0.92rem;
  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-gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.mb-page-strip__title {
  margin: 0;
  color: var(--mb-text);
  font-size: clamp(1rem, 2.6vw, 1.22rem);
  font-weight: 900;
  line-height: 1.25;
}

.mb-site-footer {
  margin-block-start: clamp(34px, 6vw, 70px);
  border-block-start: 1px solid var(--mb-line);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 205, 89, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(43, 7, 7, 0.96), rgba(15, 3, 4, 0.98));
}

.mb-site-footer__inner {
  display: grid;
  /* было 0.78fr + 1.22fr: меню зажималось в узкую колонку и сворачивалось
     в рваный столбик. Футер — одна колонка, как на отгруженных. */
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 4vw, 42px);
  padding-block: clamp(26px, 5vw, 48px);
  min-width: 0;
}

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

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

.mb-site-footer__copy {
  margin-block: 12px 0;
  max-width: 100%;
  color: var(--mb-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

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

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

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

.mb-footer-nav__link,
.mb-footer-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  min-height: 38px;
  padding: 9px 13px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 205, 89, 0.22);
  border-radius: var(--mb-radius-pill);
  color: var(--mb-text-soft);
  background: rgba(255, 205, 89, 0.07);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.mb-footer-nav__link:hover,
.mb-footer-nav a:hover,
.mb-footer-nav__link:focus-visible,
.mb-footer-nav a:focus-visible {
  color: #260606;
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
  border-color: rgba(255, 232, 151, 0.74);
  outline: none;
}

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

.mb-site-drawer__panel {
  height: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  color: var(--mb-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 205, 89, 0.16), transparent 34%),
    linear-gradient(180deg, #310707, #170405);
  border-inline-start: 1px solid rgba(255, 205, 89, 0.22);
  box-shadow: -18px 0 60px rgba(0, 0, 0, 0.42);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.mb-site-drawer__link,
.mb-site-drawer a:not(.mb-site-drawer__cta):not(.mb-site-drawer__cta--apk) {
  color: var(--mb-text-soft);
  text-decoration: none;
}

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

.mb-site-drawer__cta,
.mb-site-drawer__cta:visited {
  box-sizing: border-box;
  color: #260606;
  background: linear-gradient(180deg, #ffe07a, #f59a23);
  border-color: rgba(255, 232, 151, 0.72);
  text-decoration: none;
  font-weight: 900;
}

.mb-site-drawer__cta:hover,
.mb-site-drawer__cta:focus-visible {
  color: #210404;
  filter: brightness(1.06) saturate(1.08);
  outline: none;
}

.mb-site-drawer__cta--apk,
.mb-site-drawer__cta--apk:visited {
  color: var(--mb-text);
  background: rgba(255, 205, 89, 0.09);
  border-color: rgba(255, 205, 89, 0.36);
}

.mb-site-drawer__cta--apk:hover,
.mb-site-drawer__cta--apk:focus-visible {
  color: #260606;
  background: linear-gradient(180deg, #ffe07a, #f59a23);
}

/************************************************************
  Article root and safe scoped base
************************************************************/

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

.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  width: min(var(--mb-container), calc(100% - (var(--mb-page-gutter) * 2)));
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: clamp(18px, 4vw, 42px);
  padding: clamp(16px, 3.5vw, 34px);
  min-width: 0;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 205, 89, 0.14), transparent 31%),
    radial-gradient(circle at 88% 7%, rgba(181, 28, 24, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(43, 7, 7, 0.97), rgba(20, 4, 5, 0.98));
  border: 1px solid rgba(255, 205, 89, 0.20);
  border-radius: var(--mb-radius-lg);
  box-shadow: var(--mb-shadow);
  direction: ltr;
  text-align: left;
  line-height: 1.72;
  overflow-wrap: anywhere;
  text-rendering: optimizeLegibility;
}

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

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

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

.mb-article a:not(.mb-btn),
.mbpk-article a:not(.mb-btn),
.mbpk-page .mb-article a:not(.mb-btn) {
  color: var(--mb-gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.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,
.mbpk-page .mb-article a:not(.mb-btn):hover,
.mbpk-page .mb-article a:not(.mb-btn):focus-visible {
  color: #ffe8a1;
  outline: none;
}

/************************************************************
  Typography
************************************************************/

.mb-article h1,
.mb-article h2,
.mb-article h3,
.mb-article h4,
.mb-article h5,
.mb-article h6,
.mbpk-article h1,
.mbpk-article h2,
.mbpk-article h3,
.mbpk-article h4,
.mbpk-article h5,
.mbpk-article h6,
.mbpk-page .mb-article h1,
.mbpk-page .mb-article h2,
.mbpk-page .mb-article h3,
.mbpk-page .mb-article h4,
.mbpk-page .mb-article h5,
.mbpk-page .mb-article h6 {
  margin-block-start: 0;
  margin-block-end: 0.62em;
  max-width: 100%;
  color: var(--mb-text);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.018em;
  overflow-wrap: anywhere;
}

.mb-article h1,
.mbpk-article h1,
.mbpk-page .mb-article h1 {
  font-size: clamp(2rem, 6vw, 4.4rem);
  text-shadow: 0 6px 28px rgba(255, 178, 54, 0.20);
}

.mb-article h2,
.mbpk-article h2,
.mbpk-page .mb-article h2 {
  font-size: clamp(1.55rem, 4vw, 2.65rem);
}

.mb-article h3,
.mbpk-article h3,
.mbpk-page .mb-article h3 {
  font-size: clamp(1.22rem, 2.8vw, 1.72rem);
}

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

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

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

.mb-article strong,
.mbpk-article strong,
.mbpk-page .mb-article strong {
  color: #ffe7a0;
  font-weight: 900;
}

.mb-article small,
.mbpk-article small,
.mbpk-page .mb-article small {
  color: var(--mb-muted);
  line-height: 1.55;
}

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

.mb-kicker,
.mb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-block-end: 12px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 205, 89, 0.32);
  border-radius: var(--mb-radius-pill);
  color: var(--mb-gold);
  background: rgba(255, 205, 89, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mb-divider,
.mb-article hr.mb-divider,
.mbpk-article hr.mb-divider,
.mbpk-page .mb-article hr.mb-divider {
  width: 100%;
  max-width: var(--mb-container);
  height: 1px;
  margin: var(--mb-space-section) auto;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 205, 89, 0.62), transparent);
}

/************************************************************
  Lists
************************************************************/

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

.mb-article li,
.mbpk-article li,
.mbpk-page .mb-article li {
  max-width: 100%;
  margin-block: 0.38em;
  padding-inline-start: 0.12em;
  line-height: 1.72;
}

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

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

/************************************************************
  Buttons and CTA controls
************************************************************/

.mb-btn,
.mb-btn:visited,
.mb-article a.mb-btn,
.mb-article a.mb-btn:visited,
.mbpk-article a.mb-btn,
.mbpk-article a.mb-btn:visited,
.mbpk-page .mb-article a.mb-btn,
.mbpk-page .mb-article a.mb-btn:visited {
  --mb-btn-bg: linear-gradient(180deg, #ffe37d 0%, #ffbe37 42%, #e77d13 100%);
  --mb-btn-text: #260606;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  padding: 13px 22px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 238, 170, 0.78);
  border-radius: var(--mb-radius-pill);
  color: var(--mb-btn-text);
  background: var(--mb-btn-bg);
  text-decoration: none;
  font-weight: 950;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 12px 32px rgba(245, 154, 35, 0.34);
  cursor: pointer;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.mb-btn:hover,
.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: #210404;
  filter: brightness(1.07) saturate(1.08);
  transform: translateY(-2px);
  border-color: rgba(255, 246, 205, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 16px 42px rgba(255, 190, 62, 0.42);
  outline: none;
}

.mb-btn--secondary,
.mb-btn--secondary:visited,
.mb-article a.mb-btn--secondary,
.mb-article a.mb-btn--secondary:visited,
.mbpk-article a.mb-btn--secondary,
.mbpk-article a.mb-btn--secondary:visited,
.mbpk-page .mb-article a.mb-btn--secondary,
.mbpk-page .mb-article a.mb-btn--secondary:visited {
  color: var(--mb-text);
  background: rgba(255, 205, 89, 0.08);
  border-color: rgba(255, 205, 89, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 10px 26px rgba(0, 0, 0, 0.22);
}

.mb-btn--secondary:hover,
.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,
.mbpk-page .mb-article a.mb-btn--secondary:hover,
.mbpk-page .mb-article a.mb-btn--secondary:focus-visible {
  color: #260606;
  background: linear-gradient(180deg, #ffe07a, #f59a23);
  border-color: rgba(255, 232, 151, 0.76);
}

.mb-btn--accent,
.mb-btn--accent:visited,
.mb-article a.mb-btn--accent,
.mb-article a.mb-btn--accent:visited,
.mbpk-article a.mb-btn--accent,
.mbpk-article a.mb-btn--accent:visited,
.mbpk-page .mb-article a.mb-btn--accent,
.mbpk-page .mb-article a.mb-btn--accent:visited {
  color: #fff8e5;
  background: linear-gradient(180deg, #c92b23, #8d130f);
  border-color: rgba(255, 205, 89, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 34px rgba(181, 28, 24, 0.34);
}

.mb-btn--accent:hover,
.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,
.mbpk-page .mb-article a.mb-btn--accent:hover,
.mbpk-page .mb-article a.mb-btn--accent:focus-visible {
  color: #fff8e5;
  background: linear-gradient(180deg, #db342b, #9c1712);
}

/************************************************************
  Hero
************************************************************/

.mb-article .mb-hero,
.mbpk-article .mb-hero,
.mbpk-page .mb-article .mb-hero {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: 0 var(--mb-space-section);
  padding-inline: 0;
  padding-block-start: 0;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "cta"
    "copy";
  align-items: start;
  gap: 0;
  border: 1px solid rgba(255, 205, 89, 0.24);
  border-radius: var(--mb-radius-lg);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 205, 89, 0.18), transparent 34%),
    radial-gradient(circle at 92% 16%, rgba(181, 28, 24, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(69, 13, 9, 0.94), rgba(28, 5, 6, 0.96));
  box-shadow: var(--mb-shadow-soft);
}

.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%;
  min-width: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--mb-radius-lg) - 1px);
  overflow: clip;
  background: #2b0707;
  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 {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease, filter 260ms 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%;
  min-width: 0;
  padding-inline: var(--mb-section-pad);
  padding-block: 0 var(--mb-section-pad);
}

.mb-article .mb-hero__badge,
.mbpk-article .mb-hero__badge,
.mbpk-page .mb-article .mb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-block-end: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 205, 89, 0.38);
  border-radius: var(--mb-radius-pill);
  color: var(--mb-gold);
  background: rgba(255, 205, 89, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.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.03rem, 2.4vw, 1.24rem);
  line-height: 1.68;
}

.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% - (var(--mb-section-pad) * 2));
  max-width: calc(100% - (var(--mb-section-pad) * 2));
  margin-inline: auto;
  margin-block: clamp(16px, 3.4vw, 28px) clamp(18px, 3.2vw, 30px);
}

/************************************************************
  Rows and media sections
************************************************************/

.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: 0 var(--mb-space-section);
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
  align-items: start;
  gap: clamp(18px, 4vw, 42px);
}

.mb-article .mb-row--reverse,
.mbpk-article .mb-row--reverse,
.mbpk-page .mb-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),
.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--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),
.mbpk-page .mb-article .mb-row--reverse.mb-row--stack:not(.mb-hero),
.mbpk-page .mb-article .mb-row--reverse.mb-row--long: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%;
  min-width: 0;
  padding-block-start: 0;
  align-self: start;
}

.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-copy p,
.mb-article .mb-copy ul,
.mb-article .mb-copy ol,
.mb-article .mb-hero__copy p,
.mb-article .mb-hero__copy ul,
.mb-article .mb-hero__copy ol,
.mb-article .mb-cta__copy,
.mb-article .mb-cta__copy p,
.mb-article .mb-card__copy,
.mb-article .mb-card__copy p,
.mbpk-article .mb-copy p,
.mbpk-article .mb-copy ul,
.mbpk-article .mb-copy ol,
.mbpk-article .mb-hero__copy p,
.mbpk-article .mb-hero__copy ul,
.mbpk-article .mb-hero__copy ol,
.mbpk-article .mb-cta__copy,
.mbpk-article .mb-cta__copy p,
.mbpk-article .mb-card__copy,
.mbpk-article .mb-card__copy p,
.mbpk-page .mb-article .mb-copy p,
.mbpk-page .mb-article .mb-copy ul,
.mbpk-page .mb-article .mb-copy ol,
.mbpk-page .mb-article .mb-hero__copy p,
.mbpk-page .mb-article .mb-hero__copy ul,
.mbpk-page .mb-article .mb-hero__copy ol,
.mbpk-page .mb-article .mb-cta__copy,
.mbpk-page .mb-article .mb-cta__copy p,
.mbpk-page .mb-article .mb-card__copy,
.mbpk-page .mb-article .mb-card__copy p {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.mb-article .mb-media,
.mbpk-article .mb-media,
.mbpk-page .mb-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: 1px solid rgba(255, 205, 89, 0.22);
  border-radius: var(--mb-radius-lg);
  background: #2b0707;
  box-shadow: var(--mb-glow);
  overflow: clip;
  cursor: pointer;
}

.mb-article .mb-media img,
.mbpk-article .mb-media img,
.mbpk-page .mb-article .mb-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms 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.04);
}

/************************************************************
  CTA blocks
************************************************************/

.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: 0 var(--mb-space-section);
  padding: clamp(18px, 3.4vw, 34px);
  min-width: 0;
  border: 1px solid rgba(255, 205, 89, 0.30);
  border-radius: var(--mb-radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 205, 89, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(79, 14, 10, 0.98), rgba(36, 6, 7, 0.98));
  box-shadow: var(--mb-shadow-soft);
}

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

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

.mb-article .mb-cta__actions,
.mb-article .mb-hero__actions,
.mbpk-article .mb-cta__actions,
.mbpk-article .mb-hero__actions,
.mbpk-page .mb-article .mb-cta__actions,
.mbpk-page .mb-article .mb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block-start: 18px;
}

.mb-article[dir="rtl"] .mb-cta__actions,
.mb-article[dir="rtl"] .mb-hero__actions,
[dir="rtl"] .mb-article .mb-cta__actions,
[dir="rtl"] .mb-article .mb-hero__actions {
  justify-content: flex-start;
}

/************************************************************
  Card grids and slot grids
************************************************************/

.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: 0 var(--mb-space-section);
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 3vw, 26px);
  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,
.mbpk-page .mb-article .mb-grid > .mb-card,
.mbpk-page .mb-article .mb-slot-grid > .mb-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.mb-article .mb-card,
.mbpk-article .mb-card,
.mbpk-page .mb-article .mb-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(255, 205, 89, 0.22);
  border-radius: var(--mb-radius-lg);
  background:
    linear-gradient(180deg, rgba(61, 12, 9, 0.98), rgba(27, 5, 6, 0.98));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.mb-article .mb-card__media,
.mbpk-article .mb-card__media,
.mbpk-page .mb-article .mb-card__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  aspect-ratio: 2 / 3;
  border-radius: calc(var(--mb-radius-lg) - 1px) calc(var(--mb-radius-lg) - 1px) var(--mb-radius-sm) var(--mb-radius-sm);
  background: #2b0707;
  overflow: clip;
  box-shadow: var(--mb-glow);
  cursor: pointer;
}

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

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

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

.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%;
  min-width: 0;
  color: var(--mb-text-soft);
}

.mb-article .mb-card > :not(.mb-card__media):not(.mb-card__body),
.mbpk-article .mb-card > :not(.mb-card__media):not(.mb-card__body),
.mbpk-page .mb-article .mb-card > :not(.mb-card__media):not(.mb-card__body) {
  margin-inline: var(--mb-card-pad);
}

.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,
.mbpk-page .mb-article .mb-card > :not(.mb-card__media):not(.mb-card__body):first-child {
  margin-block-start: var(--mb-card-pad);
}

.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,
.mbpk-page .mb-article .mb-card > :not(.mb-card__media):not(.mb-card__body):last-child {
  margin-block-end: var(--mb-card-pad);
}

/************************************************************
  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: 0 var(--mb-space-section);
  min-width: 0;
}

.mb-article .mb-faq details,
.mbpk-article .mb-faq details,
.mbpk-page .mb-article .mb-faq details {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block-end: 12px;
  border: 1px solid rgba(255, 205, 89, 0.22);
  border-radius: var(--mb-radius);
  background: rgba(255, 205, 89, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.20);
}

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

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

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

.mb-article .mb-faq summary::after,
.mbpk-article .mb-faq summary::after,
.mbpk-page .mb-article .mb-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  inline-size: 26px;
  block-size: 26px;
  border-radius: 50%;
  color: #260606;
  background: linear-gradient(180deg, var(--mb-gold), var(--mb-gold-2));
  font-weight: 950;
  line-height: 1;
}

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

.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: 18px;
}

.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: 18px;
}

/************************************************************
  Tables with contained mobile horizontal scroll
************************************************************/

.mb-article .mb-table-wrap,
.mbpk-article .mb-table-wrap,
.mbpk-page .mb-article .mb-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block: 0 var(--mb-space-section);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  touch-action: pan-x;
  border: 1px solid rgba(255, 205, 89, 0.24);
  border-radius: var(--mb-radius);
  background: rgba(17, 3, 4, 0.36);
  box-shadow: 0 12px 34px 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;
  border-collapse: separate;
  border-spacing: 0;
  direction: ltr;
  color: var(--mb-text-soft);
  background: rgba(43, 7, 7, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.mb-article table.mb-table caption,
.mbpk-article table.mb-table caption,
.mbpk-page .mb-article table.mb-table caption {
  padding: 12px 14px;
  color: var(--mb-muted);
  text-align: left;
}

.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: 13px 15px;
  border-block-end: 1px solid rgba(255, 205, 89, 0.16);
  border-inline-end: 1px solid rgba(255, 205, 89, 0.10);
  text-align: left;
  vertical-align: top;
}

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

.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-block-end: 0;
}

.mb-article table.mb-table th,
.mbpk-article table.mb-table th,
.mbpk-page .mb-article table.mb-table th {
  color: #2a0707;
  background: linear-gradient(180deg, #ffe07a, #f59a23);
  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,
.mbpk-page .mb-article table.mb-table tbody tr:nth-child(even) td {
  background: rgba(255, 205, 89, 0.045);
}

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

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

/************************************************************
  Utility blocks
************************************************************/

.mb-article .mb-note,
.mb-article .mb-alert,
.mbpk-article .mb-note,
.mbpk-article .mb-alert,
.mbpk-page .mb-article .mb-note,
.mbpk-page .mb-article .mb-alert {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block: 0 var(--mb-space-lg);
  padding: 16px 18px;
  border: 1px solid rgba(255, 205, 89, 0.26);
  border-radius: var(--mb-radius);
  color: var(--mb-text-soft);
  background: rgba(255, 205, 89, 0.07);
}

.mb-article blockquote,
.mbpk-article blockquote,
.mbpk-page .mb-article blockquote {
  width: 100%;
  max-width: 100%;
  margin: 0 0 var(--mb-space-lg);
  padding: 18px 20px;
  border-inline-start: 4px solid var(--mb-gold);
  border-radius: var(--mb-radius);
  color: var(--mb-text);
  background: rgba(255, 205, 89, 0.07);
}

/************************************************************
  Responsive rules
************************************************************/

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

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

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

  .mb-site-footer__inner {
    /* было 0.78fr + 1.22fr: меню зажималось в узкую колонку и сворачивалось
     в рваный столбик. Футер — одна колонка, как на отгруженных. */
  grid-template-columns: minmax(0, 1fr);
  }
}

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

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

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

  .mb-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mb-article .mb-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),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0;
    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;
    border-radius: 0 calc(var(--mb-radius-lg) - 1px) calc(var(--mb-radius-lg) - 1px) 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,
  .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: start;
  }

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

@media (max-width: 1023.98px) {
  .mb-site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

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

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

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

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

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

  .mb-article .mb-hero__copy,
  .mbpk-article .mb-hero__copy,
  .mbpk-page .mb-article .mb-hero__copy {
    padding-inline: var(--mb-section-pad);
    padding-block-end: var(--mb-section-pad);
  }

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

  .mb-article .mb-cta__actions,
  .mb-article .mb-hero__actions,
  .mbpk-article .mb-cta__actions,
  .mbpk-article .mb-hero__actions,
  .mbpk-page .mb-article .mb-cta__actions,
  .mbpk-page .mb-article .mb-hero__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .mb-btn,
  .mb-btn:visited,
  .mb-article a.mb-btn,
  .mb-article a.mb-btn:visited,
  .mbpk-article a.mb-btn,
  .mbpk-article a.mb-btn:visited,
  .mbpk-page .mb-article a.mb-btn,
  .mbpk-page .mb-article a.mb-btn:visited {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }

  .mb-article .mb-media,
  .mb-article .mb-card__media,
  .mbpk-article .mb-media,
  .mbpk-article .mb-card__media,
  .mbpk-page .mb-article .mb-media,
  .mbpk-page .mb-article .mb-card__media {
    border-radius: 18px;
  }

  .mb-article table.mb-table,
  .mbpk-article table.mb-table,
  .mbpk-page .mb-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,
  .mbpk-page .mb-article table.mb-table th,
  .mbpk-page .mb-article table.mb-table td {
    white-space: nowrap;
  }

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

  .mb-site-brand__name {
    font-size: 0.94rem;
  }

  .mb-site-header__actions {
    gap: 6px;
  }

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

  .mb-site-menu-toggle {
    inline-size: 34px;
    block-size: 34px;
  }
}

@supports not (overflow: clip) {
  .mb-article .mb-hero__media,
  .mb-article .mb-media,
  .mb-article .mb-card__media,
  .mbpk-article .mb-hero__media,
  .mbpk-article .mb-media,
  .mbpk-article .mb-card__media,
  .mbpk-page .mb-article .mb-hero__media,
  .mbpk-page .mb-article .mb-media,
  .mbpk-page .mb-article .mb-card__media {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mb-article .mb-btn,
  .mb-article .mb-hero__media img,
  .mb-article .mb-media img,
  .mb-article .mb-card__media img,
  .mb-site-btn,
  .mb-site-nav__link,
  .mb-site-nav a,
  .mb-footer-nav__link,
  .mb-footer-nav a,
  .mbpk-article .mb-btn,
  .mbpk-article .mb-hero__media img,
  .mbpk-article .mb-media img,
  .mbpk-article .mb-card__media img,
  .mbpk-page .mb-article .mb-btn,
  .mbpk-page .mb-article .mb-hero__media img,
  .mbpk-page .mb-article .mb-media img,
  .mbpk-page .mb-article .mb-card__media img {
    transition-duration: 1ms;
  }
}
/* Подпись 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%;
  }
}

