/* Trollhunter Child – Footer Search
   Suchfeld im Footer (Breite/Focus/Mobile). */

/* Footer-Suche */
.th-search-container {
  margin-top: 0px;
  text-align: right;
}

.th-search-field {
  width: 180px;
  max-width: 100%;
  background-color: #161b22;
  padding: 6px 10px; /* FIX: war 6x 10x */
  font-size: 16px;
  color: #7d8286;
  border-radius: 0;
  box-sizing: border-box;
  height: 30px;
}

.th-search-field::placeholder {
  color: #7d8286;
}

.th-search-field:focus {
  outline: none;
  border-color: #c7c299;
}

@media (max-width: 768px) {
  .th-search-container {
    text-align: left;
    margin-top: 16px;
  }
  .th-search-field {
    width: 100%;
  }
}
