/* ================== Hero ================== */
.mah-hero {
  background-color: var(--mah-color-gray);
  box-shadow: none;
  position: relative;
  overflow-x: hidden;
  padding: var(--mah-section-padding-tight);
}

.mah-hero--centered {
  text-align: center;
}

.mah-hero--left {
  text-align: left;
}

.mah-hero--right {
  text-align: right;
}


.mah-hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--mah-color-purple-dark);
  margin: 1rem;
  font-family: var(--mah-font-alt);
}

.mah-hero-subtitle {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.7;
}

.mah-hero h1,
.mah-hero p {
  max-width: 796px;
  margin-left: auto;
  margin-right: auto;
}

.mah-hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--mah-color-purple-dark);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  font-family: var(--mah-font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .mah-hero-title {
    font-size: 1.8rem;
  }
}
