/* Klon-Nachrüstung: Suchfenster — Aufbau wie Wix' Suchleiste (Feld oben, „Schließen" rechts,
 * Vorschläge als Karten mit Bild, Titel, Textanfang; „Alle Ergebnisse anzeigen") */
.klon-suche {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(255, 255, 255, 0.98);
  color: #1b1b1b;
  font-family: madefor-text, "Wix Madefor Text", Helvetica, Arial, sans-serif;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
}
.klon-suche-offen,
.klon-suche-offen body {
  overflow: hidden;
}
.klon-suche__leiste {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 33px 69px 0;
}
.klon-suche__feld {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #b6b6b6;
  background: #fff;
  box-sizing: border-box;
}
.klon-suche__lupe {
  display: flex;
  color: #333;
}
.klon-suche__eingabe {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 16px;
  color: #1b1b1b;
  min-width: 0;
}
.klon-suche__eingabe::-webkit-search-cancel-button { -webkit-appearance: none; }
.klon-suche__leeren {
  border: 0;
  background: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  padding: 0 4px;
}
.klon-suche__schliessen {
  border: 0;
  background: none;
  font: inherit;
  font-size: 16px;
  color: #1b1b1b;
  cursor: pointer;
  padding: 8px 0;
}
.klon-suche__schliessen:hover { text-decoration: underline; }
.klon-suche__inhalt {
  padding: 30px 69px 60px;
}
.klon-suche__hinweis {
  margin: 10px 0 24px;
  font-size: 16px;
  color: #1b1b1b;
}
.klon-suche__gruppe {
  margin: 26px 0 16px;
  font-size: 16px;
  font-weight: 400;
  color: #1b1b1b;
}
.klon-suche__karten {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px 36px;
}
.klon-suche__karte {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}
.klon-suche__karte img,
.klon-suche__platzhalterbild {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: #e8e8e4;
  display: block;
}
.klon-suche__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding-top: 4px;
}
.klon-suche__titel {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.klon-suche__karte:hover .klon-suche__titel { text-decoration: underline; }
.klon-suche__vorschau {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.klon-suche__alle {
  margin-top: 36px;
  padding: 12px 16px;
  border: 0;
  background: #1b1b1b;
  color: #fff;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}
.klon-suche__alle:hover { background: #333; }
@media (max-width: 767px) {
  .klon-suche__leiste { padding: 16px 16px 0; gap: 12px; }
  .klon-suche__inhalt { padding: 20px 16px 40px; }
  .klon-suche__karten { grid-template-columns: 1fr; gap: 16px; }
}
