/* Contenido legal en texto corrido — Aviso de privacidad, Términos, Cookies */
.prose {
  max-width: 74ch;
  margin-inline: auto;
}

.prose h2 {
  font-size: var(--fs-lg);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-2);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  font-family: var(--font-body);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-1);
  color: var(--green-800);
}

.prose p {
  color: var(--ink-700);
  margin-bottom: var(--sp-3);
}

.prose ul {
  margin: 0 0 var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prose li {
  color: var(--ink-700);
  padding-left: 1.4rem;
  position: relative;
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.prose a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose strong {
  color: var(--ink-900);
}

.prose__updated {
  color: var(--ink-500);
  font-size: var(--fs-xs);
  margin-bottom: var(--sp-5);
}
