/* Brand Showcase — Homepage brand grid */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 2rem;
  text-decoration: none;
  color: #1a202c;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}

.brand-pill:hover,
.brand-pill:focus-visible {
  border-color: var(--primary, #2563eb);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
  color: var(--primary, #2563eb);
  text-decoration: none;
}
.brand-pill:focus-visible {
  outline: 2px solid var(--primary, #2563eb);
  outline-offset: 2px;
}

.brand-pill__count {
  font-size: 0.75rem;
  font-weight: 400;
  color: #475569;
  background: #f1f5f9;
  padding: 0.125rem 0.5rem;
  border-radius: 1rem;
}

.brand-pill:hover .brand-pill__count {
  background: #eff6ff;
  color: var(--primary, #2563eb);
}

@media (prefers-reduced-motion: reduce) {
  .brand-pill { transition: none; }
  .brand-pill:hover,
  .brand-pill:focus-visible { transform: none; }
}

@media (forced-colors: active) {
  .brand-pill__count {
    border: 1px solid;
  }
}

@media (max-width: 640px) {
  .brand-pill {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 44px;
  }
}
