.proam-hero-shortcode{
  width:100%;
}
.proam-hero-bg{
  position:relative;
  min-height:90vh;
  background-size:cover;
  background-position:center center;
  border-radius:36px;
  overflow:hidden;
}
.proam-hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(17,32,45,.78), rgba(17,32,45,.28) 62%, rgba(17,32,45,.36));
}
.proam-hero-inner{
  position:relative;
  z-index:2;
  width:min(1240px, calc(100% - 40px));
  margin:0 auto;
  min-height:90vh;
  display:flex;
  align-items:center;
  padding:120px 0;
}
.proam-hero-content{
  max-width:760px;
}
.proam-eyebrow{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#BFE4DC;
  margin-bottom:18px;
}
.proam-hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(48px,7vw,84px);
  line-height:1.04;
  letter-spacing:-.02em;
  color:#fff;
  margin:0 0 20px;
  max-width:10ch;
}
.proam-hero-text{
  font-family:'Montserrat',sans-serif;
  font-size:clamp(18px,2vw,20px);
  line-height:1.65;
  color:rgba(255,255,255,.92);
  margin:0 0 28px;
  max-width:620px;
}
.proam-hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:22px;
}
.proam-hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  font-family:'Montserrat',sans-serif;
  font-weight:600;
  text-decoration:none;
  transition:.25s ease;
  border:1px solid transparent;
}
.proam-hero-btn:hover{
  transform:translateY(-1px);
}
.proam-hero-btn-primary{
  background:#9CC2B8;
  color:#1E3A56;
}
.proam-hero-btn-secondary{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.55);
}
.proam-hero-tags{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  color:rgba(255,255,255,.9);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.proam-hero-tags span{
  opacity:.65;
}
@media (max-width: 767px){
  .proam-hero-bg,
  .proam-hero-inner{
    min-height:78vh;
  }
  .proam-hero-inner{
    width:min(100% - 28px, 1240px);
    padding:88px 0;
  }
  .proam-hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }
}
