/* ============================================================
   hrdelivered-business-size.css
   Business Size hub page — card color overrides + Switch PEO banner
   Depends on: hrdelivered-global.css, hrdelivered-industries.css
   ============================================================ */

/* ── Card top bars ───────────────────────────────────────── */
.biz-card--small .ind-card-bar   { background: linear-gradient(90deg, #10b981, #34d399); }
.biz-card--midsize .ind-card-bar { background: linear-gradient(90deg, #094ffe, #5b8cff); }
.biz-card--startup .ind-card-bar { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

/* ── Card icons ──────────────────────────────────────────── */
.biz-card--small .ind-card-icon   { background: rgba(16,185,129,0.10); color: #10b981; }
.biz-card--midsize .ind-card-icon { background: rgba(9,79,254,0.10);   color: #094ffe; }
.biz-card--startup .ind-card-icon { background: rgba(139,92,246,0.10); color: #8b5cf6; }

/* ── Card footer link color ──────────────────────────────── */
.biz-card--small .ind-card-footer   { color: #10b981; }
.biz-card--midsize .ind-card-footer { color: #094ffe; }
.biz-card--startup .ind-card-footer { color: #8b5cf6; }

/* ── Card grid — 3 even columns on desktop ───────────────── */
.biz-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .biz-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .biz-grid { grid-template-columns: 1fr; }
}

/* ── Switch PEO banner ───────────────────────────────────── */
.biz-switch-banner {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #001342;
  border-radius: 14px;
  padding: 2rem 2.25rem;
  flex-wrap: wrap;
}

.biz-switch-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(9,79,254,0.20);
  border: 1px solid rgba(91,140,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b8cff;
}

.biz-switch-text {
  flex: 1;
  min-width: 200px;
}

.biz-switch-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.biz-switch-text p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  margin: 0;
}

.biz-switch-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #094ffe;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.biz-switch-btn:hover {
  background: #0742e0;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 640px) {
  .biz-switch-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .biz-switch-btn {
    width: 100%;
    justify-content: center;
  }
}
