.page-header-search {
  display: none;
  width: min(32rem, 100%);
}

.page-header-search__form {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.75rem;
  margin: 0;
}

.page-header-search__control {
  flex: 1 1 auto;
  position: relative;
}

.page-header-search__wrapper {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.page-header-search__wrapper:focus-within {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.page-header-search__input {
  background-color: transparent;
  color: #ffffff;
  font-size: 0.95rem;
  padding-block: 0.5rem;
  padding-inline: 1rem;
}

.page-header-search__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.page-header-search__input:focus {
  box-shadow: none;
}

.page-header-search__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.page-header-search__button:hover,
.page-header-search__button:focus-visible {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  outline: none;
}

.page-header-search .suggest-box {
  top: calc(100% + 0.5rem);
  background-color: #ffffff;
  color: #212529;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

@media (min-width: 768px) {
  .page-header-search {
    display: block;
    justify-self: center;
  }
}
