.wm-static-search-hero {
  width: 100%;
  max-width: 100%;
}

.wm-static-search-hero__form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.wm-static-search-hero__input {
  flex: 1;
  min-width: 0;
  height: 52px;
  box-sizing: border-box;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #2a3142;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
}

.wm-static-search-hero__input::placeholder {
  color: #9aa3b5;
}

.wm-static-search-hero__input:focus {
  outline: none;
  border-color: rgba(79, 156, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(79, 156, 255, 0.15);
}

.wm-static-search-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 52px;
  padding: 0.9rem 1.5rem;
  border: 1px solid #4f9cff;
  border-radius: 10px;
  background: #1a2744;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.wm-static-search-hero__button:hover {
  background: #223358;
  border-color: #6db0ff;
}

.wm-static-search-hero__button-icon {
  display: inline-flex;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .wm-static-search-hero__form {
    flex-direction: column;
  }

  .wm-static-search-hero__input,
  .wm-static-search-hero__button {
    width: 100%;
  }
}
