/* ══════════════════════════════════════════════════════════════
   COMPONENT: Split List (icon + text bullet items)
   Used on: business-security, smart-home
   ══════════════════════════════════════════════════════════════ */

/* Business-security variant: icon box + h4/p text */
.split-list { list-style: none; margin-top: 32px; }

.split-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.split-list li:last-child { border-bottom: none; }

.split-list-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(245,197,24,0.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.split-list-icon svg { width: 22px; height: 22px; color: var(--yellow); }

.split-list-text h4 {
  font-size: 16px; font-weight: 600; color: var(--navy);
  margin-bottom: 4px;
}
.split-list-text p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* Navy section overrides */
.section-navy .split-list li { border-bottom-color: rgba(255,255,255,0.1); }
.section-navy .split-list-text h4 { color: var(--white); }
.section-navy .split-list-text p { color: rgba(255,255,255,0.75); }
