/* -------------------------------------------------------------------------- */
/* Shared tokens */
/* -------------------------------------------------------------------------- */

.mb-site-header,
.mb-topbar,
.mb-page-strip,
.mb-site-footer,
.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  --mb-container: 1120px;
  --mb-radius-xs: 12px;
  --mb-radius-sm: 16px;
  --mb-radius-md: 24px;
  --mb-radius-lg: 32px;
  --mb-space-1: 0.375rem;
  --mb-space-2: 0.625rem;
  --mb-space-3: 0.875rem;
  --mb-space-4: 1.125rem;
  --mb-space-5: 1.5rem;
  --mb-space-6: 2rem;
  --mb-space-7: 2.75rem;
  --mb-space-8: 3.5rem;
  --mb-section-gap: clamp(2.5rem, 5vw, 5rem);
  --mb-row-gap: clamp(1.25rem, 2.6vw, 2.25rem);
  --mb-row-top-pad: clamp(0.25rem, 0.9vw, 0.65rem);
  --mb-border: rgba(255, 255, 255, 0.1);
  --mb-border-strong: rgba(215, 164, 74, 0.35);
  --mb-bg: #0b1120;
  --mb-bg-2: #111a2c;
  --mb-surface: #162238;
  --mb-surface-2: #1b2942;
  --mb-surface-3: #20314f;
  --mb-text: #f5f1e9;
  --mb-text-soft: #d7deea;
  --mb-text-muted: #a7b2c7;
  --mb-accent: #d7a44a;
  --mb-accent-2: #f1c36e;
  --mb-brand: #36c6c8;
  --mb-brand-deep: #139aa1;
  --mb-success-ink: #08131b;
  --mb-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --mb-shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.2);
  --mb-glow: 0 0 0 1px rgba(215, 164, 74, 0.18), 0 16px 40px rgba(19, 154, 161, 0.12);
  direction: rtl;
  text-align: start;
  font-family: "Tajawal", "Cairo", "Noto Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mb-text);
}

/* -------------------------------------------------------------------------- */
/* UI shell */
/* -------------------------------------------------------------------------- */

.mb-topbar,
.mb-site-header,
.mb-page-strip,
.mb-site-footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.mb-topbar {
  background:
    linear-gradient(90deg, rgba(54, 198, 200, 0.08), rgba(215, 164, 74, 0.12)),
    var(--mb-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mb-topbar__inner,
.mb-site-header__inner,
.mb-page-strip__inner,
.mb-site-footer__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
  box-sizing: border-box;
}

.mb-topbar__inner {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--mb-space-3);
  color: var(--mb-text-soft);
  font-size: 0.95rem;
}

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

.mb-topbar a:hover,
.mb-topbar a:focus-visible {
  color: var(--mb-accent-2);
}

.mb-site-header {
  position: relative;
  z-index: 5;
  background:
    radial-gradient(circle at top left, rgba(215, 164, 74, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(54, 198, 200, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--mb-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mb-site-header__inner {
  min-height: 5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--mb-space-4);
  padding-block: 1rem;
}

.mb-site-brand,
.mb-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--mb-text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.mb-site-brand__mark,
.mb-footer-brand__mark {
  inline-size: 2.5rem;
  block-size: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mb-accent), var(--mb-accent-2));
  color: var(--mb-success-ink);
  box-shadow: 0 10px 24px rgba(215, 164, 74, 0.22);
  flex: 0 0 auto;
}

.mb-site-nav,
.mb-footer-nav {
  min-width: 0;
}

.mb-site-nav ul,
.mb-footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.mb-site-nav a,
.mb-footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding-inline: 1rem;
  padding-block: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--mb-text-soft);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  box-sizing: border-box;
}

.mb-site-nav a:hover,
.mb-site-nav a:focus-visible,
.mb-footer-nav a:hover,
.mb-footer-nav a:focus-visible,
.mb-site-nav .current-menu-item > a,
.mb-site-nav .current_page_item > a,
.mb-footer-nav .current-menu-item > a,
.mb-footer-nav .current_page_item > a {
  background: linear-gradient(135deg, rgba(215, 164, 74, 0.2), rgba(54, 198, 200, 0.14));
  border-color: rgba(215, 164, 74, 0.28);
  color: var(--mb-text);
  box-shadow: var(--mb-shadow-soft);
}

.mb-page-strip {
  background:
    linear-gradient(135deg, rgba(215, 164, 74, 0.08), rgba(54, 198, 200, 0.06)),
    var(--mb-bg-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mb-page-strip__inner {
  padding-block: clamp(1rem, 3vw, 1.5rem);
}

.mb-page-strip h1,
.mb-page-strip h2,
.mb-page-strip .mb-page-strip__title {
  margin: 0;
  color: var(--mb-text);
  font-size: clamp(1.4rem, 1.1rem + 1.8vw, 2.25rem);
  line-height: 1.15;
}

.mb-site-footer {
  margin-block-start: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at bottom left, rgba(54, 198, 200, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--mb-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mb-site-footer__inner {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: var(--mb-space-5);
}

.mb-site-footer__meta {
  color: var(--mb-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* -------------------------------------------------------------------------- */
/* Root article */
/* -------------------------------------------------------------------------- */

.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3.5vw, 2rem);
  padding-block: clamp(1.25rem, 4vw, 2.75rem);
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  overflow: visible;
  background:
    radial-gradient(circle at top right, rgba(215, 164, 74, 0.1), transparent 26%),
    radial-gradient(circle at 0% 15%, rgba(54, 198, 200, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #0c1322 0%, #0b1120 100%);
  color: var(--mb-text);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--mb-radius-lg);
  box-shadow: var(--mb-shadow);
  line-height: 1.85;
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.mb-article a,
.mbpk-article a,
.mbpk-page .mb-article a {
  color: var(--mb-accent-2);
  text-decoration-line: underline;
  text-decoration-color: rgba(215, 164, 74, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

.mb-article a:hover,
.mbpk-article a:hover,
.mbpk-page .mb-article a:hover,
.mb-article a:focus-visible,
.mbpk-article a:focus-visible,
.mbpk-page .mb-article a:focus-visible {
  color: #ffd893;
  text-decoration-color: rgba(255, 216, 147, 0.55);
}

.mb-article p,
.mbpk-article p,
.mbpk-page .mb-article p {
  margin-block: 0 1rem;
  color: var(--mb-text-soft);
  max-width: 100%;
  overflow-wrap: break-word;
}

.mb-article :is(h1, h2, h3, h4, h5, h6),
.mbpk-article :is(h1, h2, h3, h4, h5, h6),
.mbpk-page .mb-article :is(h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
  margin-block-end: 0.65em;
  color: var(--mb-text);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.mb-article h1,
.mbpk-article h1,
.mbpk-page .mb-article h1 {
  font-size: clamp(2rem, 1.45rem + 2.4vw, 3.6rem);
}

.mb-article h2,
.mbpk-article h2,
.mbpk-page .mb-article h2 {
  font-size: clamp(1.65rem, 1.3rem + 1.4vw, 2.5rem);
}

.mb-article h3,
.mbpk-article h3,
.mbpk-page .mb-article h3 {
  font-size: clamp(1.35rem, 1.18rem + 0.8vw, 1.9rem);
}

.mb-article h4,
.mbpk-article h4,
.mbpk-page .mb-article h4 {
  font-size: clamp(1.15rem, 1.04rem + 0.45vw, 1.45rem);
}

.mb-article h5,
.mb-article h6,
.mbpk-article h5,
.mbpk-article h6,
.mbpk-page .mb-article h5,
.mbpk-page .mb-article h6 {
  font-size: 1rem;
}

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

.mb-article em,
.mbpk-article em,
.mbpk-page .mb-article em {
  color: #e9edf8;
}

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

.mb-article img,
.mbpk-article img,
.mbpk-page .mb-article img,
.mb-article svg,
.mbpk-article svg,
.mbpk-page .mb-article svg,
.mb-article video,
.mbpk-article video,
.mbpk-page .mb-article video,
.mb-article iframe,
.mbpk-article iframe,
.mbpk-page .mb-article iframe {
  display: block;
  max-width: 100%;
}

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

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

.mb-article blockquote,
.mbpk-article blockquote,
.mbpk-page .mb-article blockquote {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-inline-start: 3px solid var(--mb-accent);
  border-radius: var(--mb-radius-sm);
  background: linear-gradient(135deg, rgba(215, 164, 74, 0.08), rgba(255, 255, 255, 0.03));
  color: #e7edf8;
}

.mb-article pre,
.mbpk-article pre,
.mbpk-page .mb-article pre {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border-radius: var(--mb-radius-sm);
  background: #0a1020;
  color: #dde7f8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  max-width: 100%;
  white-space: pre;
}

.mb-article code,
.mbpk-article code,
.mbpk-page .mb-article code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
}

.mb-article hr,
.mbpk-article hr,
.mbpk-page .mb-article hr,
.mb-article .mb-divider,
.mbpk-article .mb-divider,
.mbpk-page .mb-article .mb-divider {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: clamp(2rem, 4vw, 3rem);
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 164, 74, 0.55), rgba(54, 198, 200, 0.4), transparent);
}

/* -------------------------------------------------------------------------- */
/* Section sizing and spacing */
/* -------------------------------------------------------------------------- */

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

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

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

.mb-article .mb-row,
.mbpk-article .mb-row,
.mbpk-page .mb-article .mb-row,
.mb-article .mb-cta,
.mbpk-article .mb-cta,
.mbpk-page .mb-article .mb-cta,
.mb-article .mb-hero,
.mbpk-article .mb-hero,
.mbpk-page .mb-article .mb-hero,
.mb-article .mb-card,
.mbpk-article .mb-card,
.mbpk-page .mb-article .mb-card,
.mb-article .mb-copy,
.mbpk-article .mb-copy,
.mbpk-page .mb-article .mb-copy {
  overflow: visible;
}

.mb-article .mb-row,
.mbpk-article .mb-row,
.mbpk-page .mb-article .mb-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--mb-row-gap);
  align-items: start;
}

.mb-article .mb-row > *,
.mbpk-article .mb-row > *,
.mbpk-page .mb-article .mb-row > *,
.mb-article .mb-grid > *,
.mbpk-article .mb-grid > *,
.mbpk-page .mb-article .mb-grid > *,
.mb-article .mb-slot-grid > *,
.mbpk-article .mb-slot-grid > *,
.mbpk-page .mb-article .mb-slot-grid > *,
.mb-article .mb-cta > *,
.mbpk-article .mb-cta > *,
.mbpk-page .mb-article .mb-cta > *,
.mb-article .mb-hero > *,
.mbpk-article .mb-hero > *,
.mbpk-page .mb-article .mb-hero > * {
  min-width: 0;
  max-width: 100%;
}

.mb-article .mb-copy,
.mbpk-article .mb-copy,
.mbpk-page .mb-article .mb-copy,
.mb-article .mb-media,
.mbpk-article .mb-media,
.mbpk-page .mb-article .mb-media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-block-start: var(--mb-row-top-pad);
}

.mb-article .mb-copy,
.mbpk-article .mb-copy,
.mbpk-page .mb-article .mb-copy,
.mb-article .mb-hero__copy,
.mbpk-article .mb-hero__copy,
.mbpk-page .mb-article .mb-hero__copy,
.mb-article .mb-cta__copy,
.mbpk-article .mb-cta__copy,
.mbpk-page .mb-article .mb-cta__copy,
.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;
  margin-inline: 0;
  text-align: start;
  overflow-wrap: break-word;
}

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

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

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

/* -------------------------------------------------------------------------- */
/* Eyebrow and badges */
/* -------------------------------------------------------------------------- */

.mb-article .mb-badge,
.mbpk-article .mb-badge,
.mbpk-page .mb-article .mb-badge,
.mb-article .mb-kicker,
.mbpk-article .mb-kicker,
.mbpk-page .mb-article .mb-kicker,
.mb-article .mb-eyebrow,
.mbpk-article .mb-eyebrow,
.mbpk-page .mb-article .mb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  inline-size: fit-content;
  max-inline-size: 100%;
  padding-inline: 0.85rem;
  padding-block: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(215, 164, 74, 0.26);
  background: linear-gradient(135deg, rgba(215, 164, 74, 0.16), rgba(54, 198, 200, 0.08));
  color: #ffd58a;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* -------------------------------------------------------------------------- */
/* Hero */
/* -------------------------------------------------------------------------- */

.mb-article .mb-hero,
.mbpk-article .mb-hero,
.mbpk-page .mb-article .mb-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 1.75rem);
  align-items: start;
  padding: clamp(1rem, 2.8vw, 1.5rem);
  border-radius: var(--mb-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(215, 164, 74, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(54, 198, 200, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--mb-shadow-soft);
}

.mb-article .mb-hero__media,
.mbpk-article .mb-hero__media,
.mbpk-page .mb-article .mb-hero__media {
  order: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  border-radius: calc(var(--mb-radius-lg) - 6px);
  aspect-ratio: 16 / 9;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at center, rgba(54, 198, 200, 0.1), transparent 56%),
    #0d1526;
  box-shadow: var(--mb-glow);
  cursor: pointer;
}

.mb-article .mb-hero__copy,
.mbpk-article .mb-hero__copy,
.mbpk-page .mb-article .mb-hero__copy {
  order: 2;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.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%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

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

/* -------------------------------------------------------------------------- */
/* Content media */
/* -------------------------------------------------------------------------- */

.mb-article .mb-media,
.mbpk-article .mb-media,
.mbpk-page .mb-article .mb-media,
.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;
  margin: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 2 / 3;
  padding: clamp(0.45rem, 1vw, 0.7rem);
  border-radius: var(--mb-radius-md);
  overflow: clip;
  background:
    radial-gradient(circle at center, rgba(54, 198, 200, 0.08), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--mb-glow);
  cursor: pointer;
}

.mb-article .mb-media :is(img, picture, figure img),
.mbpk-article .mb-media :is(img, picture, figure img),
.mbpk-page .mb-article .mb-media :is(img, picture, figure img),
.mb-article .mb-card__media :is(img, picture, figure img),
.mbpk-article .mb-card__media :is(img, picture, figure img),
.mbpk-page .mb-article .mb-card__media :is(img, picture, figure img) {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--mb-radius-md) - 6px);
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

.mb-article .mb-media > picture,
.mbpk-article .mb-media > picture,
.mbpk-page .mb-article .mb-media > picture,
.mb-article .mb-card__media > picture,
.mbpk-article .mb-card__media > picture,
.mbpk-page .mb-article .mb-card__media > picture {
  width: 100%;
  height: 100%;
}

.mb-article .mb-media a,
.mbpk-article .mb-media a,
.mbpk-page .mb-article .mb-media a,
.mb-article .mb-card__media a,
.mbpk-article .mb-card__media a,
.mbpk-page .mb-article .mb-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}

/* -------------------------------------------------------------------------- */
/* Actions and buttons */
/* -------------------------------------------------------------------------- */

.mb-article .mb-actions,
.mbpk-article .mb-actions,
.mbpk-page .mb-article .mb-actions,
.mb-article .mb-hero__actions,
.mbpk-article .mb-hero__actions,
.mbpk-page .mb-article .mb-hero__actions,
.mb-article .mb-cta__actions,
.mbpk-article .mb-cta__actions,
.mbpk-page .mb-article .mb-cta__actions {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
}

.mb-article .mb-hero__actions,
.mbpk-article .mb-hero__actions,
.mbpk-page .mb-article .mb-hero__actions {
  max-width: min(100%, 36rem);
}

.mb-article .mb-cta__actions,
.mbpk-article .mb-cta__actions,
.mbpk-page .mb-article .mb-cta__actions {
  align-self: start;
}

.mb-article .mb-actions > *,
.mbpk-article .mb-actions > *,
.mbpk-page .mb-article .mb-actions > *,
.mb-article .mb-hero__actions > *,
.mbpk-article .mb-hero__actions > *,
.mbpk-page .mb-article .mb-hero__actions > *,
.mb-article .mb-cta__actions > *,
.mbpk-article .mb-cta__actions > *,
.mbpk-page .mb-article .mb-cta__actions > * {
  min-width: 0;
  max-width: 100%;
}

.mb-article .mb-btn,
.mbpk-article .mb-btn,
.mbpk-page .mb-article .mb-btn,
.mb-article .elementor-button,
.mbpk-article .elementor-button,
.mbpk-page .mb-article .elementor-button {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding-inline: 1.1rem;
  padding-block: 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.mb-article .mb-btn,
.mbpk-article .mb-btn,
.mbpk-page .mb-article .mb-btn,
.mb-article .elementor-button,
.mbpk-article .elementor-button,
.mbpk-page .mb-article .elementor-button {
  background: linear-gradient(135deg, var(--mb-accent), var(--mb-accent-2));
  color: var(--mb-success-ink);
  box-shadow: 0 14px 30px rgba(215, 164, 74, 0.24);
}

.mb-article .mb-btn:hover,
.mbpk-article .mb-btn:hover,
.mbpk-page .mb-article .mb-btn:hover,
.mb-article .mb-btn:focus-visible,
.mbpk-article .mb-btn:focus-visible,
.mbpk-page .mb-article .mb-btn:focus-visible,
.mb-article .elementor-button:hover,
.mbpk-article .elementor-button:hover,
.mbpk-page .mb-article .elementor-button:hover,
.mb-article .elementor-button:focus-visible,
.mbpk-article .elementor-button:focus-visible,
.mbpk-page .mb-article .elementor-button:focus-visible {
  background: linear-gradient(135deg, #e8b85b, #ffd07b);
  color: var(--mb-success-ink);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(215, 164, 74, 0.3);
}

.mb-article .mb-btn--secondary,
.mbpk-article .mb-btn--secondary,
.mbpk-page .mb-article .mb-btn--secondary,
.mb-article .mb-btn.is-secondary,
.mbpk-article .mb-btn.is-secondary,
.mbpk-page .mb-article .mb-btn.is-secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--mb-text);
  border-color: rgba(54, 198, 200, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mb-article .mb-btn--secondary:hover,
.mbpk-article .mb-btn--secondary:hover,
.mbpk-page .mb-article .mb-btn--secondary:hover,
.mb-article .mb-btn--secondary:focus-visible,
.mbpk-article .mb-btn--secondary:focus-visible,
.mbpk-page .mb-article .mb-btn--secondary:focus-visible,
.mb-article .mb-btn.is-secondary:hover,
.mbpk-article .mb-btn.is-secondary:hover,
.mbpk-page .mb-article .mb-btn.is-secondary:hover,
.mb-article .mb-btn.is-secondary:focus-visible,
.mbpk-article .mb-btn.is-secondary:focus-visible,
.mbpk-page .mb-article .mb-btn.is-secondary:focus-visible {
  background: linear-gradient(135deg, rgba(54, 198, 200, 0.9), rgba(19, 154, 161, 0.92));
  color: #07121a;
  border-color: rgba(54, 198, 200, 0.42);
  box-shadow: 0 18px 34px rgba(19, 154, 161, 0.22);
}

.mb-article .mb-btn--ghost,
.mbpk-article .mb-btn--ghost,
.mbpk-page .mb-article .mb-btn--ghost {
  background: transparent;
  color: var(--mb-text-soft);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.mb-article .mb-btn--ghost:hover,
.mbpk-article .mb-btn--ghost:hover,
.mbpk-page .mb-article .mb-btn--ghost:hover,
.mb-article .mb-btn--ghost:focus-visible,
.mbpk-article .mb-btn--ghost:focus-visible,
.mbpk-page .mb-article .mb-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--mb-text);
  border-color: rgba(255, 255, 255, 0.2);
}

.mb-article .mb-btn:focus-visible,
.mbpk-article .mb-btn:focus-visible,
.mbpk-page .mb-article .mb-btn:focus-visible,
.mb-article .elementor-button:focus-visible,
.mbpk-article .elementor-button:focus-visible,
.mbpk-page .mb-article .elementor-button:focus-visible,
.mb-site-nav a:focus-visible,
.mb-footer-nav a:focus-visible,
.mb-topbar a:focus-visible {
  outline: 2px solid rgba(255, 211, 126, 0.95);
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------- */
/* CTA */
/* -------------------------------------------------------------------------- */

.mb-article .mb-cta,
.mbpk-article .mb-cta,
.mbpk-page .mb-article .mb-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--mb-row-gap);
  align-items: start;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--mb-radius-lg);
  background:
    linear-gradient(135deg, rgba(215, 164, 74, 0.14), rgba(54, 198, 200, 0.1)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--mb-shadow-soft);
}

.mb-article .mb-cta__copy,
.mbpk-article .mb-cta__copy,
.mbpk-page .mb-article .mb-cta__copy,
.mb-article .mb-cta__actions,
.mbpk-article .mb-cta__actions,
.mbpk-page .mb-article .mb-cta__actions {
  padding-block-start: var(--mb-row-top-pad);
}

/* -------------------------------------------------------------------------- */
/* Lists */
/* -------------------------------------------------------------------------- */

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

.mb-article li,
.mbpk-article li,
.mbpk-page .mb-article li {
  max-width: 100%;
  overflow-wrap: break-word;
}

.mb-article li + li,
.mbpk-article li + li,
.mbpk-page .mb-article li + li {
  margin-block-start: 0.45rem;
}

.mb-article li::marker,
.mbpk-article li::marker,
.mbpk-page .mb-article li::marker {
  color: var(--mb-accent);
}

/* -------------------------------------------------------------------------- */
/* Cards and grids */
/* -------------------------------------------------------------------------- */

.mb-article .mb-grid,
.mbpk-article .mb-grid,
.mbpk-page .mb-article .mb-grid,
.mb-article .mb-slot-grid,
.mbpk-article .mb-slot-grid,
.mbpk-page .mb-article .mb-slot-grid {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.mb-article .mb-grid > .mb-card,
.mbpk-article .mb-grid > .mb-card,
.mbpk-page .mb-article .mb-grid > .mb-card,
.mb-article .mb-slot-grid > .mb-card,
.mbpk-article .mb-slot-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 {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--mb-space-4);
  padding: clamp(0.95rem, 2vw, 1.25rem);
  border-radius: var(--mb-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--mb-shadow-soft);
  color: inherit;
  text-decoration: none;
}

.mb-article .mb-card__body,
.mbpk-article .mb-card__body,
.mbpk-page .mb-article .mb-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 0;
  max-width: 100%;
}

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

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

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

/* -------------------------------------------------------------------------- */
/* FAQ */
/* -------------------------------------------------------------------------- */

.mb-article .mb-faq,
.mbpk-article .mb-faq,
.mbpk-page .mb-article .mb-faq {
  display: grid;
  gap: 0.9rem;
}

.mb-article .mb-faq details,
.mbpk-article .mb-faq details,
.mbpk-page .mb-article .mb-faq details {
  width: 100%;
  max-width: 100%;
  padding: 0;
  border-radius: var(--mb-radius-sm);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mb-article .mb-faq summary,
.mbpk-article .mb-faq summary,
.mbpk-page .mb-article .mb-faq summary {
  list-style: none;
  margin: 0;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--mb-text);
  font-weight: 800;
  line-height: 1.5;
}

.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;
  inline-size: 1.5rem;
  block-size: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(215, 164, 74, 0.14);
  color: #ffd58a;
  font-size: 1rem;
  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: 1.1rem;
  padding-block-end: 1rem;
  color: var(--mb-text-soft);
}

/* -------------------------------------------------------------------------- */
/* Tables */
/* -------------------------------------------------------------------------- */

.mb-article .mb-table-wrap,
.mbpk-article .mb-table-wrap,
.mbpk-page .mb-article .mb-table-wrap {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-gutter: stable both-edges;
  overscroll-behavior-x: contain;
  border-radius: var(--mb-radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mb-article table.mb-table,
.mbpk-article table.mb-table,
.mbpk-page .mb-article table.mb-table {
  width: 100%;
  min-width: 560px;
  max-width: none;
  border-collapse: separate;
  border-spacing: 0;
  direction: rtl;
  text-align: start;
  background: transparent;
}

.mb-article table.mb-table caption,
.mbpk-article table.mb-table caption,
.mbpk-page .mb-article table.mb-table caption {
  padding: 0.95rem 1rem 0;
  color: var(--mb-text-muted);
  caption-side: bottom;
}

.mb-article table.mb-table thead th,
.mbpk-article table.mb-table thead th,
.mbpk-page .mb-article table.mb-table thead th {
  background: linear-gradient(180deg, rgba(215, 164, 74, 0.18), rgba(215, 164, 74, 0.1));
  color: #ffe0a5;
  font-weight: 800;
}

.mb-article table.mb-table th,
.mbpk-article table.mb-table th,
.mbpk-page .mb-article table.mb-table th,
.mb-article table.mb-table td,
.mbpk-article table.mb-table td,
.mbpk-page .mb-article table.mb-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--mb-text-soft);
  background: rgba(255, 255, 255, 0.015);
  vertical-align: top;
}

.mb-article table.mb-table tr > :first-child,
.mbpk-article table.mb-table tr > :first-child,
.mbpk-page .mb-article table.mb-table tr > :first-child {
  border-inline-start: 0;
}

.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, 255, 255, 0.03);
}

.mb-article .mb-table-wrap::-webkit-scrollbar,
.mbpk-article .mb-table-wrap::-webkit-scrollbar,
.mbpk-page .mb-article .mb-table-wrap::-webkit-scrollbar {
  height: 0.7rem;
}

.mb-article .mb-table-wrap::-webkit-scrollbar-track,
.mbpk-article .mb-table-wrap::-webkit-scrollbar-track,
.mbpk-page .mb-article .mb-table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.mb-article .mb-table-wrap::-webkit-scrollbar-thumb,
.mbpk-article .mb-table-wrap::-webkit-scrollbar-thumb,
.mbpk-page .mb-article .mb-table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(215, 164, 74, 0.75), rgba(54, 198, 200, 0.7));
  border-radius: 999px;
}

/* -------------------------------------------------------------------------- */
/* Helpers */
/* -------------------------------------------------------------------------- */

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

.mb-article .mb-align-center,
.mbpk-article .mb-align-center,
.mbpk-page .mb-article .mb-align-center {
  text-align: center;
}

.mb-article .mb-align-start,
.mbpk-article .mb-align-start,
.mbpk-page .mb-article .mb-align-start {
  text-align: start;
}

/* -------------------------------------------------------------------------- */
/* Responsive layout */
/* -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .mb-site-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

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

  .mb-article .mb-hero__actions,
  .mbpk-article .mb-hero__actions,
  .mbpk-page .mb-article .mb-hero__actions,
  .mb-article .mb-actions,
  .mbpk-article .mb-actions,
  .mbpk-page .mb-article .mb-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mb-article .mb-actions > .mb-btn:only-child,
  .mbpk-article .mb-actions > .mb-btn:only-child,
  .mbpk-page .mb-article .mb-actions > .mb-btn:only-child,
  .mb-article .mb-hero__actions > .mb-btn:only-child,
  .mbpk-article .mb-hero__actions > .mb-btn:only-child,
  .mbpk-page .mb-article .mb-hero__actions > .mb-btn:only-child,
  .mb-article .mb-actions > .elementor-button:only-child,
  .mbpk-article .mb-actions > .elementor-button:only-child,
  .mbpk-page .mb-article .mb-actions > .elementor-button:only-child,
  .mb-article .mb-hero__actions > .elementor-button:only-child,
  .mbpk-article .mb-hero__actions > .elementor-button:only-child,
  .mbpk-page .mb-article .mb-hero__actions > .elementor-button:only-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .mb-article .mb-row:not(.mb-row--stack):not(.mb-row--long),
  .mbpk-article .mb-row:not(.mb-row--stack):not(.mb-row--long),
  .mbpk-page .mb-article .mb-row:not(.mb-row--stack):not(.mb-row--long) {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .mb-article .mb-row:not(.mb-row--reverse) > .mb-media,
  .mbpk-article .mb-row:not(.mb-row--reverse) > .mb-media,
  .mbpk-page .mb-article .mb-row:not(.mb-row--reverse) > .mb-media {
    order: 2;
  }

  .mb-article .mb-row:not(.mb-row--reverse) > .mb-copy,
  .mbpk-article .mb-row:not(.mb-row--reverse) > .mb-copy,
  .mbpk-page .mb-article .mb-row:not(.mb-row--reverse) > .mb-copy {
    order: 1;
  }

  .mb-article .mb-row.mb-row--reverse > .mb-media,
  .mbpk-article .mb-row.mb-row--reverse > .mb-media,
  .mbpk-page .mb-article .mb-row.mb-row--reverse > .mb-media {
    order: 1;
  }

  .mb-article .mb-row.mb-row--reverse > .mb-copy,
  .mbpk-article .mb-row.mb-row--reverse > .mb-copy,
  .mbpk-page .mb-article .mb-row.mb-row--reverse > .mb-copy {
    order: 2;
  }

  .mb-article .mb-cta:not(.mb-cta--stack),
  .mbpk-article .mb-cta:not(.mb-cta--stack),
  .mbpk-page .mb-article .mb-cta:not(.mb-cta--stack) {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .mb-article .mb-cta__actions,
  .mbpk-article .mb-cta__actions,
  .mbpk-page .mb-article .mb-cta__actions {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .mb-article .mb-grid--orphan-fix,
  .mbpk-article .mb-grid--orphan-fix,
  .mbpk-page .mb-article .mb-grid--orphan-fix,
  .mb-article .mb-slot-grid--orphan-fix,
  .mbpk-article .mb-slot-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,
  .mbpk-article .mb-grid--orphan-fix > .mb-card,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card,
  .mbpk-article .mb-slot-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),
  .mbpk-article .mb-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),
  .mb-article .mb-slot-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-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);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: start;
  }

  .mb-article .mb-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-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-media,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-media,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-media,
  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > figure,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > figure,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > figure,
  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > picture,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > picture,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > picture,
  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > img,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > img,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > img,
  .mb-article .mb-slot-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-slot-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-media,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-media,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-media,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > figure,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > figure,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > figure,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > picture,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > picture,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > picture,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > img,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > img,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > img {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-media):not(figure):not(picture):not(img),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-media):not(figure):not(picture):not(img),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-media):not(figure):not(picture):not(img),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-media):not(figure):not(picture):not(img),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-media):not(figure):not(picture):not(img),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-media):not(figure):not(picture):not(img) {
    grid-column: 1;
    min-width: 0;
    max-width: 100%;
  }

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

@media (max-width: 979.98px) {
  .mb-site-header__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .mb-site-nav ul,
  .mb-footer-nav ul {
    width: 100%;
  }

  .mb-article .mb-row > .mb-media,
  .mbpk-article .mb-row > .mb-media,
  .mbpk-page .mb-article .mb-row > .mb-media {
    order: 1;
  }

  .mb-article .mb-row > .mb-copy,
  .mbpk-article .mb-row > .mb-copy,
  .mbpk-page .mb-article .mb-row > .mb-copy {
    order: 2;
  }
}

@media (max-width: 639.98px) {
  .mb-topbar__inner,
  .mb-site-header__inner,
  .mb-page-strip__inner,
  .mb-site-footer__inner {
    padding-inline: 1rem;
  }

  .mb-site-nav a,
  .mb-footer-nav a {
    width: 100%;
    max-width: 100%;
  }

  .mb-article,
  .mbpk-article,
  .mbpk-page .mb-article {
    padding-inline: 0.9rem;
    padding-block: 1rem 1.25rem;
    border-radius: var(--mb-radius-md);
  }

  .mb-article .mb-hero,
  .mbpk-article .mb-hero,
  .mbpk-page .mb-article .mb-hero,
  .mb-article .mb-cta,
  .mbpk-article .mb-cta,
  .mbpk-page .mb-article .mb-cta {
    padding-inline: 0.95rem;
    padding-block: 0.95rem;
  }

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

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

@media (hover: hover) and (pointer: fine) {
  .mb-article .mb-media:hover img,
  .mbpk-article .mb-media:hover img,
  .mbpk-page .mb-article .mb-media:hover img,
  .mb-article .mb-card__media:hover img,
  .mbpk-article .mb-card__media:hover img,
  .mbpk-page .mb-article .mb-card__media:hover img,
  .mb-article .mb-hero__media:hover img,
  .mbpk-article .mb-hero__media:hover img,
  .mbpk-page .mb-article .mb-hero__media:hover img {
    transform: scale(1.04);
    filter: saturate(1.06) brightness(1.03);
  }

  .mb-article .mb-card:hover,
  .mbpk-article .mb-card:hover,
  .mbpk-page .mb-article .mb-card:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 164, 74, 0.2);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .mb-site-nav a:hover,
  .mb-footer-nav a:hover,
  .mb-article .mb-btn:hover,
  .mbpk-article .mb-btn:hover,
  .mbpk-page .mb-article .mb-btn:hover,
  .mb-article .elementor-button:hover,
  .mbpk-article .elementor-button:hover,
  .mbpk-page .mb-article .elementor-button:hover {
    transform: translateY(-1px);
  }
}
