.bh-banner{width:100%;padding:0;margin:0}
.bh-banner__inner{width:100%;border:0;border-radius:0;overflow:hidden}

/* Stage is relative so overlay can position inside */
.bh-banner__stage{
  position:relative;
  width:100%;
}

/* Background image div */
.bh-banner__bg{
  width:100%;
  height:auto;
  min-height:120px;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center center;
}

/* Click layer behind overlay */
.bh-banner__click{
  position:absolute;
  inset:0;
  z-index:1;
  display:block;
}

/* Overlay bottom-center */
.bh-banner__overlay{
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:min(1120px, calc(100% - 32px));
  padding:18px 0 16px;
  z-index:2;
}

.bh-banner__overlay-inner{
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(4px);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:18px;
  color:#fff;
}

.bh-banner__title{
  margin:0;
  font-size:clamp(20px, 2.2vw, 34px);
  font-weight:800;
  line-height:1.15;
  text-align:center;
  width:100%;
}

.bh-banner__overlay-inner .bh-banner__subtitle{
  display:block;
  width:100%;
  margin:6px auto 14px;
  opacity:.9;
  text-align:center !important;
}

/* Banner search filters */
.bh-banner__search{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  width:100% !important;
  margin:0 auto !important;
  flex-wrap:nowrap !important;
}

.bh-banner__field{
  min-width:0 !important;
  margin:0 !important;
}

.bh-banner__field--country,
.bh-banner__field--category{
  flex:0 0 230px !important;
  width:230px !important;
  max-width:230px !important;
}

.bh-banner__field--keyword{
  flex:1 1 auto !important;
  width:auto !important;
  max-width:none !important;
  min-width:340px !important;
}

.bh-banner__select,
.bh-banner__input{
  width:100% !important;
  height:46px !important;
  min-height:46px !important;
  box-sizing:border-box !important;
  font-size:15px !important;
}

.bh-banner__select{
  padding:11px 30px 11px 12px !important;
  border-radius:10px !important;
  border:1px solid rgba(255,255,255,.22) !important;
  background-color:rgba(255,255,255,.96) !important;
  color:#1f2937 !important;
  outline:none !important;
  cursor:pointer !important;
}

/*
 * IMPORTANT: the submit button is absolutely attached to the right edge of
 * the keyword box. This avoids browser/flex width conflicts and removes the
 * white gap after the yellow icon button.
 */
.bh-banner__keyword-wrap{
  position:relative !important;
  display:block !important;
  width:100% !important;
  height:46px !important;
  margin:0 !important;
  padding:0 !important;
  border:1px solid rgba(255,255,255,.22) !important;
  border-radius:10px !important;
  background:rgba(255,255,255,.96) !important;
  overflow:hidden !important;
  box-sizing:border-box !important;
}

.bh-banner__keyword-wrap .bh-banner__input{
  display:block !important;
  width:100% !important;
  height:44px !important;
  min-height:44px !important;
  margin:0 !important;
  padding:10px 58px 10px 12px !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:#1f2937 !important;
  outline:none !important;
  box-shadow:none !important;
}

.bh-banner__keyword-wrap .bh-banner__button{
  position:absolute !important;
  top:0 !important;
  right:0 !important;
  bottom:0 !important;
  z-index:2 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:46px !important;
  min-width:46px !important;
  max-width:46px !important;
  height:44px !important;
  min-height:44px !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 9px 9px 0 !important;
  background:#ffd400 !important;
  color:#003a61 !important;
  cursor:pointer !important;
  box-shadow:none !important;
  line-height:1 !important;
}

.bh-banner__keyword-wrap .bh-banner__button:hover,
.bh-banner__keyword-wrap .bh-banner__button:focus{
  background:#ffdf32 !important;
  color:#003a61 !important;
}

.bh-banner__button i{
  font-size:17px !important;
  line-height:1 !important;
}

.bh-banner__input::placeholder{color:#6b7280;opacity:1}
.bh-banner__input::-webkit-input-placeholder{color:#6b7280}
.bh-banner__input::-moz-placeholder{color:#6b7280;opacity:1}

.bh-banner__select:focus,
.bh-banner__keyword-wrap:focus-within{
  border-color:rgba(255,212,0,.75) !important;
  box-shadow:0 0 0 .2rem rgba(255,212,0,.18) !important;
}

@media (max-width:992px){
  .bh-banner__search{
    flex-wrap:wrap !important;
    gap:8px !important;
  }
  .bh-banner__field--country,
  .bh-banner__field--category{
    flex:1 1 calc(50% - 4px) !important;
    width:auto !important;
    max-width:none !important;
  }
  .bh-banner__field--keyword{
    flex:1 1 100% !important;
    min-width:0 !important;
  }
}

@media (max-width:576px){
  .bh-banner__overlay{width:calc(100% - 20px)}
  .bh-banner__overlay-inner{padding:14px;border-radius:14px}
  .bh-banner__overlay-inner .bh-banner__subtitle{display:none !important;}
  .bh-banner__field--country,
  .bh-banner__field--category{
    display:none !important;
  }
  .bh-banner__field--keyword{
    flex:1 1 100% !important;
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
  }
}