/*
 * Prose - Content styles for privacy policy, terms, etc.
 */

.prose-section {
  padding: 48px 24px;
}

.prose-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--slate-700);
}

.prose-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--slate-800);
  margin: 48px 0 20px 0;
  line-height: 1.3;
}

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

.prose-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-800);
  margin: 32px 0 16px 0;
  line-height: 1.3;
}

.prose-content p {
  margin-bottom: 20px;
}

.prose-content a {
  color: var(--brand-red);
  text-decoration: underline;
}

.prose-content a:hover {
  color: var(--brand-red-dark);
}

.prose-content ul,
.prose-content ol {
  margin-bottom: 24px;
  padding-left: 28px;
}

.prose-content li {
  margin-bottom: 12px;
}

.prose-content strong {
  font-weight: 700;
  color: var(--slate-800);
}

.prose-content .contact-list {
  list-style: none;
  padding-left: 0;
}

.prose-content .contact-list li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .prose-section {
    padding: 32px 20px;
  }

  .prose-content h2 {
    font-size: 1.5rem;
    margin: 36px 0 16px 0;
  }

  .prose-content h3 {
    font-size: 1.25rem;
    margin: 28px 0 12px 0;
  }
}
