:root {
  --mh-primary: #7A0019;
  --mh-secondary: #A6183C;
  --mh-deep: #4A0012;
  --mh-gold: #D4AF37;
  --mh-gold-light: #FFD97A;
  --mh-card-bg: rgba(255, 255, 255, 0.08);
  --mh-card-border: rgba(255, 255, 255, 0.15);
  --mh-radius: 20px;
  --mh-container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.meta-theme {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  color: #fff;
  background: linear-gradient(180deg, var(--mh-deep) 0%, #650018 35%, var(--mh-primary) 100%);
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}

.mh-container {
  width: min(var(--mh-container), 100% - 2rem);
  margin-inline: auto;
}

.mh-header {
  background: rgba(74, 0, 18, 0.95);
  border-bottom: 1px solid var(--mh-card-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.mh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.mh-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mh-gold-light);
  text-decoration: none;
}

.mh-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.mh-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
}

.mh-nav a:hover {
  color: var(--mh-gold-light);
}

.mh-section {
  padding: 4rem 0;
}

.mh-section__title {
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
  color: var(--mh-gold-light);
}

.mh-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.mh-card {
  background: var(--mh-card-bg);
  border: 1px solid var(--mh-card-border);
  border-radius: var(--mh-radius);
  padding: 1.25rem;
}

.mh-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.mh-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--mh-gold);
  background: var(--mh-primary);
  color: var(--mh-gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.mh-btn:hover {
  background: var(--mh-secondary);
}

.mh-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}

.mh-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin: 0 0 1rem;
}

.mh-hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.mh-footer {
  background: rgba(74, 0, 18, 0.95);
  border-top: 1px solid var(--mh-card-border);
  padding: 2rem 0;
  margin-top: 2rem;
}

.mh-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
}

.mh-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(74, 0, 18, 0.98);
  border-top: 1px solid var(--mh-card-border);
  z-index: 60;
}

.mh-bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.6875rem;
  line-height: 1.2;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.mh-bottom-nav a.is-active {
  color: var(--mh-gold-light);
  font-weight: 700;
}

@media (max-width: 768px) {
  .mh-header__inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .mh-menu-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    border: 1px solid rgba(255, 217, 122, 0.28);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--mh-gold-light);
    cursor: pointer;
  }

  .mh-menu-toggle span,
  .mh-menu-toggle span::before,
  .mh-menu-toggle span::after {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    position: relative;
  }

  .mh-menu-toggle span::before,
  .mh-menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .mh-menu-toggle span::before {
    top: -5px;
  }

  .mh-menu-toggle span::after {
    top: 5px;
  }

  .mh-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    order: 3;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mh-nav.is-open {
    display: flex;
  }

  .mh-nav a {
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .mh-bottom-nav {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  body.meta-theme {
    padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0));
  }

  .mh-hero--split {
    padding: 2rem 0 1.5rem;
  }

  .mh-hero__picture--mobile-only {
    display: block;
    margin-bottom: 1rem;
  }

  .mh-hero__art:not(.mh-hero__art--trophy) {
    display: none;
  }

  .mh-hero__art--trophy {
    display: block;
    min-height: 150px;
    margin-top: 1rem;
  }

  .mh-feature-strip__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
  }

  .mh-feature-strip__grid .mh-feature {
    flex: 0 0 min(240px, 78vw);
    scroll-snap-align: start;
  }

  .mh-actions {
    flex-wrap: wrap;
  }

  .mh-news-faq {
    grid-template-columns: 1fr;
  }

  .mh-section {
    padding: 2rem 0;
  }

  .mh-section-head {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .mh-footer__grid {
    gap: 1.25rem;
  }

  .mh-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mh-feature-strip__grid,
  .mh-grid {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mh-feature-strip__grid::-webkit-scrollbar,
  .mh-grid::-webkit-scrollbar {
    display: none;
  }

  .mh-btn,
  .mh-carousel-btn,
  .mh-menu-toggle {
    min-height: 44px;
  }
}

.mh-menu-toggle {
  display: none;
}

@media (min-width: 769px) {
  .mh-hero__picture--mobile-only {
    display: none;
  }
}

.mh-hero__picture {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: min(720px, 100%);
}

.mh-hero__image {
  width: 100%;
  border-radius: var(--mh-radius);
  border: 1px solid var(--mh-card-border);
}

.mh-card__logo {
  max-height: 48px;
  margin-bottom: 0.75rem;
}

.mh-card__link {
  color: inherit;
  text-decoration: none;
}

.mh-card__link:hover {
  color: var(--mh-gold-light);
}

.mh-card__actions {
  margin: 0.75rem 0 0;
}

.mh-card--stacked {
  margin-bottom: 1rem;
}

.mh-empty {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  margin: 0;
}

.mh-news-faq {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.mh-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mh-marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: mh-marquee-scroll var(--mh-marquee-duration, 30s) linear infinite;
}

.mh-marquee__item img {
  height: 48px;
  width: auto;
  opacity: 0.85;
}

@keyframes mh-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mh-logo__mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  border: 2px solid var(--mh-gold);
  border-radius: 50%;
  color: var(--mh-gold-light);
  font-weight: 900;
  font-size: 0.875rem;
}

.mh-hero--split { text-align: left; padding: 3rem 0; }
.mh-hero__grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr); gap: 2rem; align-items: center; }
.mh-hero__copy h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.625rem); color: var(--mh-gold-light); margin: 0 0 1rem; }
.mh-hero__copy p { color: rgba(255,255,255,.82); max-width: 34rem; margin: 0 0 1.5rem; }
.mh-hero__art { min-height: 250px; border: 1px solid rgba(255,217,122,.22); border-radius: 16px; overflow: hidden; background: radial-gradient(circle at 50% 30%, rgba(255,217,122,.25), transparent 18%), rgba(0,0,0,.2); }
.mh-feature-strip { padding: .875rem 0; border-block: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.18); }
.mh-feature-strip__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; }
.mh-feature { display: grid; grid-template-columns: 34px 1fr; gap: .625rem; align-items: center; font-size: .6875rem; color: rgba(255,255,255,.68); }
.mh-feature strong { display: block; color: var(--mh-gold-light); font-size: .75rem; margin-bottom: .15rem; }
.mh-feature__icon { width: 34px; height: 34px; border: 1px solid rgba(255,217,122,.23); border-radius: 10px; display: grid; place-items: center; color: var(--mh-gold-light); font-weight: 900; background: rgba(255,217,122,.07); }
.mh-section-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.mh-section-head__title { margin: 0; font-size: 1rem; text-transform: uppercase; color: var(--mh-gold-light); }
.mh-section-head__link, .mh-section-head__meta { color: var(--mh-gold-light); font-size: .75rem; font-weight: 700; }
.mh-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mh-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mh-grid--partners { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: .75rem; }
.mh-logo-tile { aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,217,122,.16); background: rgba(255,255,255,.05); font-weight: 800; font-size: .75rem; padding: .5rem; text-align: center; }
.mh-logo-tile img { max-height: 48px; max-width: 80%; object-fit: contain; }
.mh-logo-tile--link { text-decoration: none; transition: transform .15s ease; }
.mh-logo-tile--link:hover { transform: translateY(-2px); border-color: var(--mh-gold); }
.mh-meta { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: .625rem; }
.mh-tag { min-height: 22px; padding: 0 .5rem; border-radius: 999px; background: rgba(255,217,122,.1); border: 1px solid rgba(255,217,122,.18); color: var(--mh-gold-light); font-size: .625rem; font-weight: 700; display: inline-flex; align-items: center; }
.mh-tag--active { color: #b8f5c3; }
.mh-tag--upcoming { color: #ffe08a; }
.mh-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.mh-btn--ghost { background: rgba(255,255,255,.05); color: var(--mh-gold-light); }
.mh-btn--block { display: flex; width: 100%; margin-bottom: 1rem; }
.mh-activity-card__media { min-height: 92px; border-radius: 12px; margin-bottom: .75rem; border: 1px solid rgba(255,217,122,.16); overflow: hidden; background: linear-gradient(135deg, rgba(255,217,122,.18), rgba(166,27,60,.36)); }
.mh-activity-card__media img { width: 100%; height: 92px; object-fit: cover; }
.mh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mh-list { display: grid; gap: .5rem; }
.mh-list-row { min-height: 44px; display: grid; grid-template-columns: 32px 1fr auto; gap: .625rem; align-items: center; border: 1px solid rgba(255,217,122,.13); border-radius: 10px; padding: .5rem .625rem; background: rgba(255,255,255,.035); color: inherit; text-decoration: none; }
.mh-list-row strong { display: block; font-size: .75rem; }
.mh-list-row span { color: rgba(255,255,255,.68); font-size: .6875rem; }
.mh-list-row__icon { width: 32px; height: 32px; border: 1px solid rgba(255,217,122,.23); border-radius: 10px; display: grid; place-items: center; color: var(--mh-gold-light); font-weight: 900; font-size: .75rem; }
.mh-page-hero { padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.08); background: radial-gradient(circle at 80% 20%, rgba(255,217,122,.12), transparent 34%); }
.mh-page-hero__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem; align-items: center; }
.mh-page-hero__badge { width: 72px; height: 72px; border-radius: 16px; border: 1px solid rgba(255,217,122,.23); display: grid; place-items: center; color: var(--mh-gold-light); font-weight: 900; background: rgba(255,255,255,.06); }
.mh-page-hero__badge--large { width: 140px; height: 140px; }
.mh-page-hero h1 { margin: 0 0 .5rem; color: var(--mh-gold-light); font-family: 'Playfair Display', serif; }
.mh-filters { display: grid; grid-template-columns: minmax(0,1fr) repeat(3,minmax(120px,150px)) auto; gap: .625rem; padding: 1rem 0; width: min(var(--mh-container),100% - 2rem); margin-inline: auto; }
.mh-field { height: 38px; border: 1px solid rgba(255,217,122,.18); border-radius: 10px; background: rgba(255,255,255,.05); color: #fff; padding: 0 .75rem; font: inherit; font-size: .75rem; }
.mh-detail-cols { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1rem; }
.mh-panel { border: 1px solid rgba(255,217,122,.15); border-radius: 14px; padding: 1rem; background: rgba(255,255,255,.045); }
.mh-panel h2 { margin: 0 0 .75rem; color: var(--mh-gold-light); font-size: 1rem; }
.mh-pagination { display: flex; gap: .375rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.mh-pagination__item { min-width: 36px; height: 36px; display: inline-grid; place-items: center; border: 1px solid rgba(255,217,122,.18); border-radius: 8px; color: var(--mh-gold-light); text-decoration: none; }
.mh-pagination__item.is-active { background: rgba(255,217,122,.15); }
.mh-faq-item { border: 1px solid rgba(255,217,122,.13); border-radius: 10px; padding: .75rem 1rem; margin-bottom: .5rem; background: rgba(255,255,255,.03); }
.mh-faq-item summary { cursor: pointer; font-weight: 600; color: var(--mh-gold-light); }

.mh-hero--default { background: linear-gradient(90deg, rgba(25,0,8,.92), rgba(74,0,18,.45)), radial-gradient(circle at 76% 42%, rgba(255,217,122,.2), transparent 32%); }
.mh-hero__art--trophy { background: radial-gradient(circle at 50% 30%, rgba(255,217,122,.45), transparent 20%), radial-gradient(circle at 50% 58%, rgba(166,27,60,.55), transparent 35%), linear-gradient(160deg, rgba(255,217,122,.12), rgba(0,0,0,.25)); position: relative; }
.mh-hero__art--trophy::before { content: ""; position: absolute; inset: 28% 34% 18%; border: 4px solid var(--mh-gold); border-radius: 18px 18px 42px 42px; box-shadow: 0 0 36px rgba(255,217,122,.25); }
.mh-hero__art--trophy::after { content: "M"; position: absolute; top: 42%; left: 50%; transform: translateX(-50%); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(180deg, var(--mh-gold-light), var(--mh-gold)); color: #210008; font-weight: 900; font-size: 1.5rem; }

.mh-btn--gold { background: linear-gradient(180deg, var(--mh-gold-light), var(--mh-gold)); color: #160008; border-color: rgba(255,217,122,.85); font-weight: 700; }
.mh-btn--gold:hover { filter: brightness(1.05); }
.mh-btn--wa { background: #25D366; border-color: #25D366; color: #fff; min-width: 2.5rem; padding-inline: .65rem; font-weight: 700; font-size: .75rem; }
.mh-btn--tg { background: #229ED9; border-color: #229ED9; color: #fff; min-width: 2.5rem; padding-inline: .65rem; font-weight: 700; font-size: .75rem; }
.mh-actions--platform { align-items: center; }

.mh-countdown { display: flex; align-items: center; gap: .35rem; margin: .5rem 0 .75rem; font-size: .8125rem; color: var(--mh-gold-light); font-weight: 700; }
.mh-countdown__part strong { font-size: 1rem; margin-right: .1rem; }
.mh-countdown__sep { opacity: .7; }
.mh-countdown--upcoming { font-size: .75rem; color: rgba(255,255,255,.72); font-weight: 500; }
.mh-tag--type { text-transform: uppercase; letter-spacing: .04em; }

.mh-partner-carousel { display: grid; grid-template-columns: auto 1fr auto; gap: .75rem; align-items: center; }
.mh-partner-carousel__viewport { overflow: hidden; }
.mh-partner-carousel__track { display: flex; gap: .75rem; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: .25rem 0; }
.mh-partner-carousel__track::-webkit-scrollbar { display: none; }
.mh-partner-carousel__track .mh-logo-tile { flex: 0 0 100px; width: 100px; }
.mh-logo-tile__text { font-size: .625rem; line-height: 1.2; }
.mh-carousel-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,217,122,.3); background: rgba(255,255,255,.06); color: var(--mh-gold-light); font-size: 1.25rem; cursor: pointer; line-height: 1; }

.mh-info-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.mh-list-row--news { grid-template-columns: 48px 1fr auto; }
.mh-list-row__thumb { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; border: 1px solid rgba(255,217,122,.16); }

.mh-why-strip { padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.15); }
.mh-why-strip__title { margin: 0 0 1.25rem; text-align: center; color: var(--mh-gold-light); font-family: 'Playfair Display', serif; }
.mh-why-strip__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.mh-why-item { text-align: center; font-size: .75rem; color: rgba(255,255,255,.68); }
.mh-why-item strong { display: block; color: var(--mh-gold-light); margin: .5rem 0 .25rem; font-size: .8125rem; }
.mh-why-item__icon { width: 40px; height: 40px; margin-inline: auto; border-radius: 12px; border: 1px solid rgba(255,217,122,.23); display: grid; place-items: center; color: var(--mh-gold-light); font-weight: 900; background: rgba(255,217,122,.07); }

.mh-footer { padding: 2.5rem 0 1rem; margin-top: 0; }
.mh-footer__grid { display: grid; grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr)); gap: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.mh-footer__brand .mh-logo { display: inline-flex; align-items: center; margin-bottom: .75rem; }
.mh-footer__tagline, .mh-footer__note { color: rgba(255,255,255,.65); font-size: .8125rem; line-height: 1.5; margin: 0 0 .75rem; }
.mh-footer__social { display: flex; gap: .5rem; }
.mh-social-link { width: 32px; height: 32px; border-radius: 8px; border: 1px solid rgba(255,217,122,.2); display: grid; place-items: center; font-size: .6875rem; font-weight: 700; color: var(--mh-gold-light); text-decoration: none; }
.mh-footer__col { display: flex; flex-direction: column; gap: .45rem; font-size: .8125rem; }
.mh-footer__col strong { color: var(--mh-gold-light); margin-bottom: .25rem; }
.mh-footer__col a { color: rgba(255,255,255,.72); text-decoration: none; }
.mh-footer__col a:hover { color: var(--mh-gold-light); }
.mh-footer__bottom { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; padding-top: 1rem; font-size: .75rem; color: rgba(255,255,255,.55); }
.mh-footer__bottom a { color: rgba(255,255,255,.65); text-decoration: none; }

@media (max-width: 768px) {
  .mh-hero__grid,
  .mh-grid--3,
  .mh-grid--4,
  .mh-split,
  .mh-detail-cols,
  .mh-page-hero__inner,
  .mh-filters,
  .mh-info-cols,
  .mh-footer__grid,
  .mh-why-strip__grid {
    grid-template-columns: 1fr;
  }

  .mh-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .mh-grid > .mh-card,
  .mh-grid > .mh-logo-tile {
    min-width: 220px;
    scroll-snap-align: start;
  }

  .mh-partner-carousel {
    grid-template-columns: auto 1fr auto;
  }
}

.mh-logo__img {
  display: block;
  max-height: 40px;
  max-width: 160px;
  object-fit: contain;
}

.mh-logo__img--mobile {
  display: none;
}

@media (max-width: 768px) {
  .mh-logo__img--desktop {
    display: none;
  }

  .mh-logo__img--mobile {
    display: block;
    max-height: 36px;
  }
}

.cms-page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  touch-action: none;
}

.cms-page-preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.cms-preloader-icon--spinner::before {
  content: "";
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--mh-gold);
  border-radius: 50%;
  display: block;
  animation: cms-spin 0.8s linear infinite;
}

.cms-preloader-icon--dots::before {
  content: "•••";
  font-size: 32px;
  letter-spacing: 4px;
  color: var(--mh-gold-light);
  animation: cms-pulse 1s ease-in-out infinite;
}

.cms-preloader-logo {
  max-width: 120px;
  animation: cms-pulse 1.2s ease-in-out infinite;
}

@keyframes cms-spin {
  to { transform: rotate(360deg); }
}

@keyframes cms-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

.cms-img--pending,
.cms-img--loading {
  opacity: 0.72;
  filter: saturate(0.85);
  background: rgba(255, 255, 255, 0.04);
}

.cms-img--skeleton,
.cms-img--blur {
  object-fit: cover;
  background: linear-gradient(110deg, rgba(255,255,255,.06) 8%, rgba(255,217,122,.12) 18%, rgba(255,255,255,.06) 33%);
  background-size: 200% 100%;
  animation: cms-img-shimmer 1.4s linear infinite;
}

.cms-img--icon_only {
  position: relative;
  display: inline-block;
}

.cms-img--icon_only::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(212, 175, 55, 0.25);
  border-top-color: var(--mh-gold);
  border-radius: 50%;
  animation: cms-spin 0.8s linear infinite;
}

.cms-img--loaded {
  opacity: 1;
  filter: none;
}

@keyframes cms-img-shimmer {
  to { background-position: -200% 0; }
}

/* Rich text from CMS (static pages, FAQ, partner content) */
.mh-rich-text {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  font-size: 0.95rem;
}

.mh-rich-text--small {
  font-size: 0.875rem;
  line-height: 1.65;
}

.mh-rich-text p {
  margin: 0 0 1rem;
}

.mh-rich-text h2,
.mh-rich-text h3,
.mh-rich-text h4 {
  color: var(--mh-gold-light);
  font-family: 'Playfair Display', serif;
  margin: 1.5rem 0 0.75rem;
}

.mh-rich-text h2 { font-size: 1.35rem; }
.mh-rich-text h3 { font-size: 1.15rem; }
.mh-rich-text h4 { font-size: 1rem; }

.mh-rich-text ul,
.mh-rich-text ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.mh-rich-text li {
  margin-bottom: 0.35rem;
}

.mh-rich-text a {
  color: var(--mh-gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mh-rich-text a:hover {
  color: #fff;
}

.mh-rich-text strong {
  color: #fff;
  font-weight: 600;
}

.mh-rich-text blockquote {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--mh-gold);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0.5rem 0.5rem 0;
}

.mh-rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.875rem;
}

.mh-rich-text th,
.mh-rich-text td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.mh-rich-text th {
  background: rgba(255, 217, 122, 0.1);
  color: var(--mh-gold-light);
}
