/* Default (smallest phones) */
#top-banner {
  width: 100%;
  position: relative;
  height: 370px;
  z-index: 99;
}

/* Smooth responsive vertical spacing below banner */
.button-banner-wrapper {
  margin-top: clamp(1.5rem, 3vw, 3rem);
}

/* sm: ≥ 576px */
@media (min-width: 576px) {
  #top-banner {
    height: 450px;
  }
}

@media (min-width: 768px) {
  #top-banner {
    height: 500px;
  }
}

/* lg: ≥ 992px */
@media (min-width: 992px) {
  #top-banner {
    height: 600px;
  }
}

/* xl: ≥ 1200px */
@media (min-width: 1200px) {
  #top-banner {
    height: 700px;
  }
}

/* xxl: ≥ 1400px */
@media (min-width: 1400px) {
  #top-banner {
    height: 800px;
  }
}

.top-banner-bg::before {
  content: "";
  background: linear-gradient(180deg, #07192d 0%, rgba(102, 102, 102, 0) 100%),
    linear-gradient(90deg, #07192d 0%, rgba(102, 102, 102, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-banner-bg:after {
  background-image: url("/img/common/hook_background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
}

.top-banner-box {
  position: absolute;
  left: 0px;
  z-index: 2;
  /* Replace fixed spacing with fully responsive clamp */
  top: clamp(100px, 20vw, 186px);
  padding-left: clamp(40px, 10vw, 150px);
}

.top-banner-box .banner-text-bg-highlight {
  color: #ffa100;
}