/* ============================================================
   GenIAcademy - barre de recherche (feuille dédiée, chargée en dernier).
   Conteneur en pilule + champ transparent + bouton terracotta.
   ============================================================ */

.searchbar {
  display: flex !important;
  align-items: stretch;
  width: 100%;
  max-width: 560px;
  margin: 0 0 22px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.searchbar:focus-within { border-color: var(--terra); }

.searchbar input,
.searchbar input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  height: 48px;
  margin: 0;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  padding: 0 20px;
}
.searchbar input::placeholder { color: var(--muted-2); }
.searchbar input[type="search"]::-webkit-search-cancel-button,
.searchbar input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.searchbar button {
  flex: 0 0 auto;
  height: 48px;
  min-width: 54px;
  margin: 0;
  border: 0;
  background: var(--terra);
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: background 0.2s;
}
.searchbar button:hover { background: var(--terra-light); }
.searchbar button i { line-height: 1; }

/* Résumé de recherche (page Formations). */
.search-summary {
  color: var(--muted); font-size: 13px;
  margin: -12px 0 22px;
}
