/* Desktop top-nav inline search box */
#tnb #hd_sch.hd-sch-inline {
  position: static;
  left: auto;
  top: auto;
  width: auto;
  display: inline-flex;
  align-items: center;
  list-style: none;
  float: left; /* matches #tnb li { float:left } */
  margin: 0 8px 0 0;
  padding: 0 8px 0 0;
  border: 0;
  line-height: 35px;
}
#tnb #hd_sch.hd-sch-inline:after { display: none; }
#tnb #hd_sch.hd-sch-inline h3 { display: none; }

#hd_sch.hd-sch-inline form {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18), 0 0 0 1px rgba(204,163,84,0.35);
  height: 32px;
}
#hd_sch.hd-sch-inline #sch_str {
  border: 0;
  outline: none;
  background: transparent;
  color: #111;
  font-size: 13px;
  padding: 0 12px;
  width: 200px;
  line-height: 32px;
  box-shadow: none;
  margin: 0;
}
#hd_sch.hd-sch-inline #sch_str::placeholder { color: #888; }
#hd_sch.hd-sch-inline #sch_submit {
  border: 0;
  outline: none;
  background: linear-gradient(135deg, #f3e6c4, #e3cf95);
  color: #5a3f0a;
  cursor: pointer;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, color .15s ease;
  margin: 0;
}
#hd_sch.hd-sch-inline #sch_submit:hover {
  background: linear-gradient(135deg, #e6d09a, #cca354);
  color: #2c1c00;
}
#hd_sch.hd-sch-inline #sch_submit svg {
  width: 14px;
  height: 14px;
  display: block;
}
@media (max-width: 768px) {
  #hd_sch.hd-sch-inline #sch_str { width: 140px; }
}
