/* --- Default homepage search bar --- */
.linked-home-searchbar {
  display:flex;
  align-items:center;
  gap:14px;
  background:#ffffff;
  border:1px solid #e6ebf2;
  border-radius:999px;
  padding:12px 14px 12px 18px;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
}
.linked-home-searchbar .linked-search-icon {
  color:#64748b;
  font-size:18px;
  line-height:1;
}
.linked-home-searchbar input {
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  font-size:16px;
  color:#0f172a;
}
.linked-home-searchbar button {
  border:none;
  background:#2563eb;
  color:#fff;
  border-radius:999px;
  padding:12px 20px;
  font-weight:700;
  cursor:pointer;
}
@media (max-width: 700px) {
  .linked-home-searchbar {flex-wrap:wrap; border-radius:24px;}
  .linked-home-searchbar button {width:100%;}
}
