/* =============================================
   Bullet Item — ACE Design System
   Single bullet with colored checkmark
   ============================================= */

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bullet-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
}

.bullet-item__icon svg {
  width: 14px;
  height: 14px;
}

.bullet-item__text {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
}

/* --- Color variants --- */
.bullet-item--orange .bullet-item__icon {
  background-color: #E87722;
}

.bullet-item--red .bullet-item__icon {
  background-color: #EE3124;
}

.bullet-item--green .bullet-item__icon {
  background-color: #006F45;
}

.bullet-item--blue .bullet-item__icon {
  background-color: #0056A6;
}
