/* ============================================================
   CIRRUS LAKE SOLUTIONS — Cluster section component
   Feature-split section pattern used by both the Services hub
   (BUILD / CONNECT / OPERATE / SCALE) and the Industries hub
   (Healthcare / Technology / Data). Narrative left, cards right.
   Includes the svc-card-bullets and svc-card-link styles that
   appear inside cluster service cards on both hubs.
   ============================================================ */

.cluster-section { padding: 80px 0; background: white; }
.cluster-section.bg-gray { background: var(--gray-50); }

.cluster-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: start;
}
.cluster-feature .cluster-head {
  text-align: left;
  max-width: none;
  margin: 0;
  padding-top: 6px;
}
.cluster-feature .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cluster-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.cluster-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1c6b34;
  background: rgba(80,200,120,0.12);
  border: 1px solid rgba(28,107,52,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.cluster-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cluster-head p {
  font-size: 0.96rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0 auto;
}
.cluster-feature .cluster-head p { margin: 0; }

.svc-card-bullets {
  list-style: none;
  margin: 14px 0 0 0;
  padding: 14px 0 0 0;
  border-top: 1px solid var(--gray-100);
}
.svc-card-bullets li {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.55;
  padding: 4px 0 4px 18px;
  position: relative;
}
.svc-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-500);
  transition: var(--transition-fast);
}
.svc-card-link:hover { color: var(--accent-dark); gap: 9px; }

@media (max-width: 1024px) {
  .cluster-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cluster-feature .cluster-head {
    text-align: center;
    padding-top: 0;
  }
  .cluster-feature .cluster-head p { margin: 0 auto; max-width: 600px; }
}
