/**
 * Hero Banner Module
 *
 * Styles for template-part/modules/hero_banner_module.php
**/

.hero-banner-module {
  padding-top: 20px;
}

.hero-banner-module__inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-banner-module__heading {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-banner-module__body {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-banner-module__price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.hero-banner-module__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-banner-module__image-wrap {
  max-width: 48rem;
  margin: 0 auto;
}

.hero-banner-module__image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

@media (min-width: 768px) {
  .hero-banner-module__heading { font-size: 3.75rem; }
}

@media (min-width: 992px) {
  .hero-banner-module__heading { font-size: 4.5rem; }
}

@media (max-width: 768px) {
  .hero-banner-module {
    padding-top: 120px;
  }

  .hero-banner-module__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-banner-module__ctas .btn {
    width: 100%;
  }
}
