/* =========================
   Category Status Bar
========================= */

.category-status-bar {
  margin-bottom: 22px;
}

.category-status-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  font-size: 0.85rem;
  color: #475569;
}

.category-status-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.category-status-item strong {
  font-weight: 700;
  color: #0f172a;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-green { background: #22c55e; }
.status-yellow { background: #facc15; }

.status-muted {
  color: #64748b;
}

/* =========================
   Provider Grid
========================= */

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

/* =========================
   Provider Tile
========================= */

.provider-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px 22px 30px;
  min-height: 140px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.provider-tile:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* =========================
   Logo
========================= */

.provider-logo {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.provider-logo img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
}

/* =========================
   Name
========================= */

.provider-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  line-height: 1.35;
}

/* =========================
   Chevron
========================= */

.provider-chevron {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-size: 1.1rem;
  color: #9ca3af;
  transition: transform 0.15s ease, color 0.15s ease;
}

.provider-tile:hover .provider-chevron {
  transform: translateX(4px);
  color: #475569;
}

/* =========================
   Mobile
========================= */

@media (max-width: 640px) {
  .provider-grid {
    gap: 16px;
  }

  .provider-tile {
    padding: 22px 18px 26px;
    min-height: 120px;
  }

  .provider-name {
    font-size: 0.9rem;
  }
}

/* =========================
   Category SEO Header
========================= */

.category-header {
  max-width: 760px;
  margin: 32px auto 28px;
  text-align: center;
}

.category-header h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 12px;
}

.category-header p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

@media (max-width: 640px) {
  .category-header {
    margin: 22px auto 22px;
    padding: 0 16px;
  }

  .category-header h1 {
    font-size: 1.7rem;
  }

  .category-header p {
    font-size: 0.95rem;
  }
}
