.mt-mobile-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  line-height: 1;
  text-align: center;
  pointer-events: none;
}

.mt-mobile-hero-text[data-align="flex-start"] {
  text-align: left;
}

.mt-mobile-hero-text[data-align="flex-end"] {
  text-align: right;
}

.mt-mobile-hero-text .mt-mht__word {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 17vw, 104px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: none;
}

body.mt-theme-light .mt-mobile-hero-text .mt-mht__modern,
body:not(.mt-theme-dark) .mt-mobile-hero-text .mt-mht__modern {
  color: var(--mt-mht-modern-light, #111111);
  -webkit-text-fill-color: var(--mt-mht-modern-light, #111111);
}

body.mt-theme-dark .mt-mobile-hero-text .mt-mht__modern {
  color: var(--mt-mht-modern-dark, #f5f5f0);
  -webkit-text-fill-color: var(--mt-mht-modern-dark, #f5f5f0);
}

body.mt-theme-light .mt-mobile-hero-text .mt-mht__treasures,
body:not(.mt-theme-dark) .mt-mobile-hero-text .mt-mht__treasures {
  color: var(--mt-mht-treasures-light, #b0b8bd);
  -webkit-text-fill-color: var(--mt-mht-treasures-light, #b0b8bd);
  background: none;
  background-image: none;
}

body.mt-theme-dark .mt-mobile-hero-text.mt-mht--treasures-solid .mt-mht__treasures {
  color: var(--mt-mht-treasures-dark-solid, #e8c45a);
  -webkit-text-fill-color: var(--mt-mht-treasures-dark-solid, #e8c45a);
  background: none;
  background-image: none;
}

body.mt-theme-dark .mt-mobile-hero-text.mt-mht--treasures-gradient .mt-mht__treasures {
  background: linear-gradient(
    var(--mt-mht-gradient-angle, 90deg),
    var(--mt-mht-gradient-color-1, rgba(232, 196, 90, 0.45)) var(--mt-mht-gradient-stop-1, 0%),
    var(--mt-mht-gradient-color-2, rgba(247, 224, 144, 1)) var(--mt-mht-gradient-stop-2, 45%),
    var(--mt-mht-gradient-color-3, rgba(255, 255, 255, 0.92)) var(--mt-mht-gradient-stop-3, 50%),
    var(--mt-mht-gradient-color-4, rgba(247, 224, 144, 1)) var(--mt-mht-gradient-stop-4, 55%),
    var(--mt-mht-gradient-color-5, rgba(160, 122, 48, 0.55)) var(--mt-mht-gradient-stop-5, 100%)
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}

body.mt-theme-dark .mt-mobile-hero-text.mt-mht--treasures-gradient.mt-mht--gradient-animate .mt-mht__treasures {
  animation: mtMhtTreasuresGradient var(--mt-mht-gradient-duration, 6s) ease-in-out infinite;
}

@keyframes mtMhtTreasuresGradient {
  0% {
    background-position: 0% 50%;
  }

  35% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@media (min-width: 901px) {
  .mt-mobile-hero-text {
    display: none;
  }
}
