.legal-content {
    color: var(--foreground);
    line-height: 1.7;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
    color: var(--foreground);
    font-weight: 600;
    line-height: 1.25;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.legal-content h1 {
    font-size: 1.875rem;
    /* text-3xl */
}

.legal-content h2 {
    font-size: 1.5rem;
    /* text-2xl */
}

.legal-content h3 {
    font-size: 1.25rem;
    /* text-xl  */
}

.legal-content p {
    margin-top: 0.75rem;
}

.legal-content a {
    color: #0047F9;
    /* brand blue */
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content ul,
.legal-content ol {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    /* indent */
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-top: 0.25rem;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
}

.legal-content th,
.legal-content td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    vertical-align: top;
}

.legal-content blockquote {
    border-left: 3px solid rgba(255, 255, 255, 0.15);
    padding-left: 0.75rem;
    color: var(--muted-foreground);
    margin: 0.75rem 0;
}

/* Hide the first H1 that appears after the frontmatter header inside legal content */
.legal-fm+h1 {
    display: none;
}

.legal-fm+div>h1:first-of-type {
    display: none;
}