.finding-count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  padding: 0 7px;
  border-radius: 99px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.group-intro {
  color: var(--muted);
  font-size: 13px;
}

.occurrences {
  display: grid;
  gap: 8px;
}

.occurrence {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f4ec;
}

.occurrence > summary {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  padding: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.occurrence > summary b {
  color: var(--orange);
}

.occurrence > summary span {
  overflow-wrap: anywhere;
}

.occurrence pre {
  margin: 0 12px 12px;
}

@media (max-width: 800px) {
  .occurrence > summary {
    grid-template-columns: 28px 1fr;
  }
}
