#main-content.policy-page {
    font-family: var(--ds-font-family);
}

.policy-section h2 {
    font-size: var(--ds-text-lg);
    font-weight: var(--ds-font-bold);
    color: var(--ds-color-text-primary);
    letter-spacing: var(--ds-tracking-tight);
    margin: 0 0 var(--ds-space-2);
}

.policy-section h3 {
    font-size: var(--ds-text-base);
    font-weight: var(--ds-font-bold);
    color: var(--ds-color-text-primary);
    margin: var(--ds-space-3) 0 var(--ds-space-2);
}

.policy-section p {
    font-size: var(--ds-text-sm);
    color: var(--ds-color-text-secondary);
    line-height: var(--ds-leading-relaxed);
    margin: 0 0 var(--ds-space-3);
}

.policy-section ul {
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: var(--ds-space-1);
    margin: 0 0 var(--ds-space-3);
    padding-left: var(--ds-space-5);
}

.policy-section li {
    font-size: var(--ds-text-sm);
    color: var(--ds-color-text-secondary);
    line-height: var(--ds-leading-relaxed);
}

.policy-section a {
    color: var(--ds-color-primary);
    font-weight: var(--ds-font-semibold);
    text-decoration: none;
    transition: opacity var(--ds-transition-fast);
}

.policy-section a:hover {
    opacity: .75;
    text-decoration: underline;
}

.policy-section .ds-callout {
    margin: 0 0 var(--ds-space-3);
}

.policy-section .ds-callout p {
    margin: 0;
}

.policy-section .ds-callout p+p {
    margin-top: var(--ds-space-2);
}

.policy-section>*:last-child {
    margin-bottom: 0;
}

.policy-updated {
    margin-top: var(--ds-space-5);
}

@media (max-width: 576px) {
    .policy-section h2 {
        font-size: var(--ds-text-base);
    }
}