/* FINAL-HERO-HEIGHT-0913Y
 * Increase desktop homepage hero height so the long fourth service slide has
 * enough vertical room and the control strip never gets pushed/clipped.
 * Also reduces the large empty fold below the hero on tall desktop screens.
 */
@media (min-width:901px){
  .hero{
    height:clamp(760px,78vh,820px)!important;
    min-height:clamp(760px,78vh,820px)!important;
    max-height:820px!important;
  }
  .hero-content{
    padding-top:78px!important;
    padding-bottom:30px!important;
  }
  .hero .hero-controls{
    flex:0 0 auto!important;
    min-height:66px!important;
  }
  .hero .slide-tabs{
    flex-wrap:nowrap!important;
    overflow:visible!important;
  }
  .hero .slide-tabs button{
    flex:0 0 auto!important;
    min-width:max-content!important;
    visibility:visible!important;
    opacity:1!important;
  }
  .hero .slide-tabs button:last-child{
    padding-right:4px!important;
  }
}
@media (min-width:1600px){
  .hero{
    height:820px!important;
    min-height:820px!important;
    max-height:820px!important;
  }
}
