/* Hero module */
.hero_module{
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 120px 24px;
}
.hero_module--fullscreen{
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero_module--fullscreen .hero_module__inner{
  width: 100%;
}
.hero_module__inner{
  max-width: 960px;
  margin: 0 auto;
}
.hero_module__eyebrow{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  opacity: .8;
  margin-bottom: 12px;
}
.hero_module__heading{
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.hero_module__subheading{
  max-width: 640px;
  font-size: 18px;
  line-height: 1.6;
}
.hero_module__button{
  display: inline-block;
  margin-top: 20px;
  background: #ec1849;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
}
