@charset "utf-8";

.updates_search_section {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px 36px;
}

.updates_search_box {
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, .06);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, .04);
}

.updates_search_box label {
  display: block;
  margin-bottom: 12px;
  color: #111;
  font-size: 15px;
  font-weight: 900;
}

.updates_search_input_wrap {
  display: flex;
  gap: 10px;
}

.updates_search_input_wrap input {
  flex: 1;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f9fafb;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  box-sizing: border-box;
}

.updates_search_input_wrap input:focus {
  outline: none;
  border-color: #111827;
  background: #fff;
}

.updates_search_input_wrap button,
.updates_more_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.updates_search_box p {
  margin: 12px 0 0;
  color: #777;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.updates_result_summary {
  margin-bottom: 18px;
  color: #777;
  font-size: 14px;
  font-weight: 800;
}

.updates_more_wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.updates_no_result {
  display: none;
  padding: 54px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #fff;
  color: #777;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.updates_no_result.is_show {
  display: block;
}

.updates_meta small {
  color: #aaa;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 767px) {

  .updates_search_section {
    padding: 0 18px 30px;
  }

  .updates_search_box {
    padding: 18px;
    border-radius: 20px;
  }

  .updates_search_input_wrap {
    flex-direction: column;
  }

  .updates_search_input_wrap button,
  .updates_more_btn {
    width: 100%;
  }

  .updates_search_input_wrap input {
    padding: 10px 16px;
  }

}