/* RESULTADOS DE BÚSQUEDA (estética limpia) */
.search-results-panel {
  display: none;
  max-width: 1400px;
  margin: 24px auto;
  padding: 0 20px;
}

.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid #e2edf2;
  padding-bottom: 12px;
}

.search-results-header h2 {
  font-size: 1.5rem;
  color: #022a68;
  font-weight: 600;
}

.close-search-btn {
  background: #f0f5f9;
  border: 1px solid #e2edf2;
  padding: 8px 20px;
  border-radius: 60px;
  font-weight: 500;
  cursor: pointer;
  color: #1f3b4c;
  transition: 0.2s;
}

.close-search-btn:hover {
  background: #e6edf4;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
