/* broadband.css — extends shared.css */

/* Page header */
.page-header h1 { color: white; }
.page-header h2 { font-size: 1.1rem; font-weight: 600; color: #94a3b8; margin-bottom: 0.5rem; }

/* Search section */
.search-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.search-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
}
.form-group { flex: 1; min-width: 190px; }

/* Results */
.results-area {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* Provider cards (populated by JS) */
.provider-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.provider-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: hsl(220,78%,52%);
  border-radius: 4px 0 0 4px;
}
.provider-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .search-form { flex-direction: column; padding: 1.25rem; }
  .search-form .btn-primary { width: 100%; justify-content: center; }
}
