/**
 * Markdown content styling (scoped to .md-content).
 * Used for policy/legal pages with Markdown-rendered body.
 */

.md-content h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.5rem;
  line-height: 1.3;
}

.md-content h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #F59E0B;
  margin: 1.5rem 0 0.5rem;
  line-height: 1.4;
}

.md-content h2:first-of-type {
  margin-top: 0;
}

.md-content p {
  color: #D1D5DB;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.md-content p:last-child {
  margin-bottom: 0;
}

.md-content a {
  color: #F59E0B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.md-content a:hover {
  color: #FBBF24;
}

.md-content ul,
.md-content ol {
  color: #D1D5DB;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.md-content li {
  margin-bottom: 0.25rem;
}

.md-content li:last-child {
  margin-bottom: 0;
}

.md-content strong {
  font-weight: 600;
  color: #E5E7EB;
}

.md-content hr {
  border: 0;
  border-top: 1px solid rgba(76, 29, 149, 0.5);
  margin: 1.5rem 0;
}
