/* Demo section: value bullets under headline */
#demo .demo-value-bullets{
  margin: 10px auto 0;
  max-width: 520px; /* keeps the bullets block compact */
}

#demo .demo-value-bullets ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

#demo .demo-value-bullets li{
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 10px;
  align-items: center;
  justify-content: start;
  text-align: left;
  color: rgba(15,26,43,0.72);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 600;
  max-width: 520px;
  margin: 0 auto;
}

#demo .demo-value-bullets li::before{
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
  font-weight: 900;
  margin-top: 0;
  justify-self: end; /* ensures all checkmarks line up in the same column */
}

#demo .demo-field-note{
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(15,26,43,0.62);
  font-weight: 600;
}

@media (max-width: 640px){
  #demo .demo-value-bullets li{
    max-width: 100%;
    margin: 0;
  }
}
