/* Policy pages: shipping and returns, and any privacy or terms pages later.
   One readable column of long-form text. */
#policy-content {
  background: var(--surface);
}
#policy-content .policy-body {
  width: 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
/* --text rather than --text-muted: muted reads 4.33:1 on this cream ground */
#policy-content .policy-updated {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}
/* Same tint and border as an open FAQ item, so it reads as the site's own */
#policy-content .policy-summary {
  padding: 1.5rem;
  border: 1px solid var(--primary);
  border-radius: 8px;
  background: color-mix(in srgb, var(--primary) 5%, var(--surface));
}
#policy-content h2 {
  margin: 0 0 0.75rem 0;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  line-height: 1.25;
  color: var(--text);
  text-wrap: balance;
}
#policy-content p {
  margin: 0 0 1rem 0;
  line-height: 1.7;
  color: var(--text);
}
#policy-content p:last-child {
  margin-bottom: 0;
}
#policy-content ul {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.6;
  color: var(--text);
}
