/* Verged · Legal Notice and Privacy — page-local additions.
   Follows the pattern of page-about.css and page-services.css.
   One rule, for the optional item list a legal section can carry
   (server log fields, data subject rights, analytics commitments).
   Deliberately plainer than .v-svcdet__list: legal prose gets a
   neutral bullet, not the orange rule used in marketing sections. */

.v-legal__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v-legal__list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
  text-wrap: pretty;
}

.v-legal__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg-muted);
}

/* A paragraph that follows the list keeps the block's rhythm. */
.v-legal__list + .v-legal__p { margin-top: 18px; }
