.hlhs-hero{
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hlhs-hero__track{
  position: relative;
  height: 520px;
}

.hlhs-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}

.hlhs-slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

.hlhs-slide__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position:center;
}

.hlhs-slide__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.65));
}

.hlhs-slide__content{
  position:absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  max-width: 900px;
  color: #fff;
}

.hlhs-badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.18);
  color: #fff;
  font-size: 12px;
}

.hlhs-slide__title{
  margin: 10px 0 14px;
  font-size: 44px;
  line-height: 1.12;
}

.hlhs-slide__title a{ color:#fff; text-decoration:none; }
.hlhs-slide__title a:hover{ text-decoration: underline; }

.hlhs-slide__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.hlhs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  font-weight: 700;
  margin: 0;
}

.hlhs-btn--primary{
  background: #d9b25f;
  color: #111;
  transition: .2s ease;
}

.hlhs-btn--primary:hover{
  background: #B9943F;
  color: #fff;
  transition: .2s ease;
}

@media (max-width: 768px){
  .hlhs-btn--primary {
      margin-bottom: 10px;
  }
}

.hlhs-dots{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display:flex;
  justify-content:center;
  gap: 10px;
}

.hlhs-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor:pointer;
  transition: .25s ease;
}

.hlhs-dot.is-active{
  width: 36px;
  background: #d9b25f;
}

/* Responsive */
@media (max-width: 1024px){
  .hlhs-hero, .hlhs-hero__track{ min-height: 460px; height: 460px; }
  .hlhs-slide__title{ font-size: 36px; }
}

@media (max-width: 768px){
  .hlhs-hero, .hlhs-hero__track{ min-height: 400px; height: 400px; }
  .hlhs-slide__title{ font-size: 28px; }
  .hlhs-slide__content{ left: 16px; right: 16px; bottom: 16px; }
}
