/* ==========================================================================
   TMI Search Bar — Shared styles for News and Blog search
   ========================================================================== */

.tmi-search-bar {
  margin-bottom: 1.2rem;
  max-width: 350px;
}
.tmi-search-bar form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.tmi-search-input {
  flex: 1;
  padding: 0.5rem 0.8rem;
  font-size: 13px;
  border: 1px solid #C6CFDE;
  border-radius: 5px;
  background-color: #fff;
  color: #313440;
  outline: none;
  transition: border-color 0.2s ease;
}
.tmi-search-input:focus {
  border-color: #2164E6;
}
.tmi-search-input::placeholder {
  color: #8a95a8;
}
.tmi-search-btn {
  padding: 0.5rem 1.2rem;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background-color: #2164E6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.tmi-search-btn:hover {
  background-color: #1a4fb8;
}

@media screen and (max-width: 743px) {
  .tmi-search-input {
    font-size: 12px;
    padding: 0.4rem 0.6rem;
  }
  .tmi-search-btn {
    font-size: 12px;
    padding: 0.4rem 0.8rem;
  }
}
