.fh-home-filters {
  margin: 2rem 0;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.fh-home-filters__form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: end;
}

.fh-home-filters__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1 1 220px;
  min-width: 220px;
}

.fh-home-filters__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.fh-home-filters__select {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #fff;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fh-home-filters__select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.fh-home-filters__select:hover {
  border-color: #94a3b8;
}

.fh-home-filters .alert {
  margin: 0;
}

@media (max-width: 991px) {
  .fh-home-filters__field {
    flex: 1 1 calc(50% - 1rem);
    min-width: 240px;
  }
}

@media (max-width: 767px) {
  .fh-home-filters {
    padding: 1rem;
  }

  .fh-home-filters__form {
    flex-direction: column;
    align-items: stretch;
  }

  .fh-home-filters__field {
    min-width: 100%;
    flex-basis: 100%;
  }
}