/* Privacy page — prose layout on top of main M3 tokens */

.prose-page {
  padding: 48px 0 80px;
}

.prose-page__header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prose-page__back {
  align-self: flex-start;
}

.prose-page__label {
  color: var(--md-primary);
  margin-bottom: 8px;
}

.prose-page__updated {
  color: var(--md-on-surface-variant);
  margin-top: 8px;
}

/* Card wrapper — mirrors SectionCard */
.prose-card {
  background: var(--md-surface-container-low);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prose-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--md-outline-variant);
}

.prose-section:first-child {
  padding-top: 0;
}

.prose-section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.prose-section h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--md-on-surface);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.prose-section h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--md-on-surface);
  margin-top: 16px;
  margin-bottom: 8px;
}

.prose-section p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--md-on-surface-variant);
  margin-bottom: 12px;
}

.prose-section p:last-child {
  margin-bottom: 0;
}

.prose-section ul {
  margin: 0 0 12px 0;
  padding-left: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prose-section li {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--md-on-surface-variant);
}

.prose-section a {
  color: var(--md-primary);
}

.prose-section strong {
  color: var(--md-on-surface);
  font-weight: 500;
}

@media (max-width: 600px) {
  .prose-page {
    padding: 32px 0 64px;
  }
}
