/* ============================================================
   Feature · companyFinder
   ------------------------------------------------------------
   Every rule is scoped under `.feature-company-finder` so it
   never collides with styles.css / modernize.css / other
   features. Token-driven; no hard-coded color, spacing, or
   radius. Loaded after ui-primitives.css per
   migration/css-token-migration.md "Load order is the contract".
   Created by: Phase 10 — first composite input.
   ============================================================ */

.feature-company-finder {
  padding: var(--space-6) 0 var(--space-10);
}

.feature-company-finder .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 640px;
  margin: 0 auto;
  padding-inline: var(--space-4);
}

.feature-company-finder__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.feature-company-finder__search {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .feature-company-finder {
    padding: var(--space-8) 0 var(--space-12);
  }
}
