.wm-static-search {
  border: 1px solid #e3e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(15, 139, 255, 0.08);
  max-width: 100%;
  margin: 1rem auto;
}

.wm-static-search__form {
  display: flex;
  gap: 0.75rem;
}

.wm-static-search__input {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid #cdd6f3;
  font-size: 1rem;
}

.wm-static-search__button {
  background: linear-gradient(135deg, #0f8bff 0%, #5126ff 100%);
  border: none;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.wm-static-search__status {
  margin-top: 0.75rem;
  color: #6c7a89;
  font-size: 0.9rem;
}

.wm-static-search__results {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wm-static-search__results li {
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  background-color: #ffffff;
}

.wm-static-search__results li:hover {
  transform: translateY(-2px);
  border-color: #0f8bff;
  box-shadow: 0 20px 35px rgba(15, 139, 255, 0.12);
}

.wm-static-search__result-content {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.wm-static-search__result-thumb {
  width: 140px !important;
  height: 100px !important;
  min-width: 140px !important;
  max-width: 140px !important;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.wm-static-search__result-thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: 140px !important;
  max-height: 100px !important;
  object-fit: cover;
  display: block;
  box-sizing: border-box;
}

.wm-static-search__result-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.wm-static-search__result-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #202b3c;
  text-decoration: none;
  display: block;
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}

.wm-static-search__result-title:hover {
  color: #0f8bff;
}

.wm-static-search__result-excerpt {
  color: #6c7a89;
  font-size: 0.95rem;
  margin: 0.35rem 0 0.5rem 0;
  line-height: 1.5;
}

.wm-static-search__pagination {
  margin-top: 1rem;
  display: none;
  justify-content: space-between;
  gap: 1rem;
}

.wm-static-search__pagination button {
  background: #ffffff;
  border: 1px solid #cdd6f3;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  color: #0f8bff;
  font-weight: 500;
  transition: all 0.2s ease;
}

.wm-static-search__pagination button:hover:not(:disabled) {
  background: #0f8bff;
  color: #ffffff;
  border-color: #0f8bff;
}

.wm-static-search__pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #9ca3af;
  border-color: #e5e7eb;
}

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

  .wm-static-search__button,
  .wm-static-search__input {
    width: 100%;
    border-radius: 8px;
  }

  .wm-static-search__results li {
    flex-direction: column;
    align-items: flex-start;
  }

  .wm-static-search__result-content {
    flex-direction: column;
    width: 100%;
  }

  .wm-static-search__result-thumb {
    width: 100%;
    height: 180px;
  }
}
