/* ─── Search overlay ─────────────────────────────────────────────────────── */

.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.92);
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}

.search-overlay.active {
  display: flex;
}

.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 1.5rem;
}

.search-input-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--sunset, #ed8b00);
  color: #ffffff;
  font-family: 'IM Fell English', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-style: italic;
  padding: 0.5rem 0;
  outline: none;
  caret-color: var(--sunset, #ed8b00);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.search-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.search-close:hover {
  color: #ffffff;
}

.search-hint {
  font-family: 'Fira Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 1rem;
}

.search-hint kbd {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 0.1em 0.35em;
  font-family: inherit;
}

/* ─── Results ─────────────────────────────────────────────────────────────── */

.search-results {
  margin-top: 1.5rem;
}

.search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-result-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

.search-result-link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.search-result-link:hover {
  color: var(--sunset, #ed8b00);
}

.search-result-summary {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0.2rem 0 0;
  line-height: 1.5;
}

.search-no-results {
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin-top: 1rem;
}
