.search__field--suggest {
  position: relative;
}

.search__suggest {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 0.15rem;
  max-height: min(52vh, 360px);
  overflow: auto;
  padding: 0.4rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.search__suggest-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.55rem;
  border-radius: var(--radius-xs);
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease;
}

.search__suggest-item:hover {
  background: rgba(204, 28, 57, 0.18);
}

.search__suggest-item img {
  flex-shrink: 0;
  width: 36px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--surface);
}

.search__suggest-item span {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.search__suggest-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search__suggest-item small {
  color: var(--muted);
  font-size: 0.78rem;
}

.search__suggest-empty {
  margin: 0;
  padding: 0.75rem 0.65rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.search__suggest-more {
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.65rem 0.7rem;
  border: 0;
  border-radius: var(--radius-xs);
  background: rgba(204, 28, 57, 0.14);
  color: var(--rose);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.search__suggest-more:hover {
  background: rgba(204, 28, 57, 0.24);
}
