/* IBM Plex Sans ist der globale Default – keine Überschreibung nötig */

/* Untere Suche (Blogseite, kein Suchergebnis): klein und zentriert */
.blog-search-wrap {
  max-width: 450px;
  margin: 2rem auto;
}

/* Obere Suche (Suchergebnisseite): bündig mit Fließtext, größer */
.notes-stream-wrapper .blog-search-wrap {
  max-width: none;
  margin: 0 0 2rem;
  padding-left: calc(3rem + 1rem);
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-search__btn {
  font-size: .8rem;
  padding: 8px 14px;
  white-space: nowrap;
}

.blog-search__input {
  flex: 1;
  font: inherit;
  font-size: .875rem;
  padding: 8px 12px;
  border: 1.5px solid #A0A8AF;
  border-radius: 6px;
  background: transparent;
  color: var(--color-text);
  outline: none;
  transition: border-color .2s ease;
}

/* Suchergebnisseite: größere Eingabe */
.notes-stream-wrapper .blog-search__btn {
  font-size: .875rem;
  padding: 12px 20px;
}

.notes-stream-wrapper .blog-search__input {
  font-size: 1.125rem;
  padding: 12px 16px;
}

.blog-search__input::placeholder {
  color: var(--color-grey, #888);
}

.blog-search__input:focus {
  border-color: #F26D43;
}

.blog-search__reset {
  font-size: 1.4rem;
  color: var(--color-grey, #888);
  text-decoration: none;
  line-height: 1;
  padding: 0 4px;
  transition: color .2s ease;
}

.blog-search__reset:hover {
  color: #F26D43;
}

.blog-search__empty {
  text-align: center;
  color: var(--color-grey, #888);
  margin-bottom: 2rem;
}

.blog-search__suggestions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.blog-search__tag {
  font-size: 0.8rem;
  font-family: var(--font-family-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  border: 1.5px solid currentColor;
  border-radius: 4px;
  padding: 4px 10px;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity .2s ease, color .2s ease, border-color .2s ease;
}

.blog-search__tag:hover {
  opacity: 1;
  color: #F26D43;
  border-color: #F26D43;
}

