/* ============================================================
   richText bullet list → capability chip grid.
   "One tool, endless potential" stores its 8 capabilities as a Portable
   Text bullet list, which renders as a plain <ul>. This is the only bullet
   list in the page builder, so we style it into the diamond-marker chip
   grid from the design (mirrors .role-chip in the static site).
   ============================================================ */
.section--rich-text .sec-head,
.section--rich-text .richtext .prose {
  width: 100%;
  max-width: var(--narrow);
  margin-inline: 0;
  text-align: left;
}

.richtext .prose ul {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.richtext .prose ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.richtext .prose ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transform: rotate(45deg);
  flex: none;
  background: var(--mint);
}
.richtext .prose ul li:hover { border-color: var(--mint-40); box-shadow: var(--shadow-card); }
.richtext .prose ul li:nth-child(6n+1)::before { background: var(--dv-aqua); }
.richtext .prose ul li:nth-child(6n+2)::before { background: var(--dv-indigo); }
.richtext .prose ul li:nth-child(6n+3)::before { background: var(--dv-coral); }
.richtext .prose ul li:nth-child(6n+4)::before { background: var(--dv-amber); }
.richtext .prose ul li:nth-child(6n+5)::before { background: var(--dv-violet); }
.richtext .prose ul li:nth-child(6n+6)::before { background: var(--dv-pink); }
@media (max-width: 900px) { .richtext .prose ul { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .richtext .prose ul { grid-template-columns: 1fr; } }