/* acceptable-use.css */

.acceptable-use-policy h1 {
    margin: 0 0 40px;
    text-align: center;
    line-height: 1.1;
}

.post-body {
    max-width: 720px;
    margin: 40px auto;

    font-size: 16px;
    line-height: 1.7;
}

/* Headings */
.post-body h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    margin: 56px 0 20px;
    text-align: left;
}

.post-body h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 40px 0 16px;
    text-align: left;
}

/* Paragraph spacing */
.post-body p {
    margin-bottom: 32px;
}

/* -------------------------
   Lists (match light theme feel)
   Key changes:
   - do NOT use padding-left: 0
   - use padding-left so bullets hang correctly
   - control margins around the list block
   - nested lists use circle markers
   ------------------------- */

.post-body ul,
.post-body ol {
    margin: 16px 0 32px; /* like light theme rhythm */
    padding-left: 22px; /* makes wrapped lines align like light theme */
    list-style-position: outside;
}

.post-body li {
    margin: 10px 0; /* tighter + consistent */
}

.policy-list > li {
    margin: 20px 0; /* tighter + consistent */
}

/* Bullet look (subtle, similar to light theme) */
.post-body ul li::marker {
    opacity: 0.6;
}

/* Ordered markers slightly bolder */
.post-body ol li::marker {
    font-weight: 700;
}

/* Nested list styling (light theme shows hollow circles + tighter indent) */
.post-body li > ul,
.post-body li > ol {
    margin: 12px 0 0;
    padding-left: 22px;
}

.post-body li > ul {
    list-style-type: circle;
}

.post-body li > ul li,
.post-body li > ol li {
    margin: 8px 0;
}

/* Links */
.post-body a {
    color: var(--el-cyan);
    text-decoration: none;
}

.post-body a:hover {
    text-decoration: underline;
}

/* If you're keeping .section on post-body, neutralize padding for this page */
.post-body.section {
    padding: 0;
}

.post-body.section {
    padding: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .post-header {
        margin: 72px 0 48px;
    }

    .post-header h1 {
        max-width: 100%;
        font-size: 40px;
        text-align: left;
    }

    .post-body {
        max-width: 100%;
        line-height: 1.75;
    }

    .post-body p {
        margin-bottom: 24px;
    }

    .post-body ul,
    .post-body ol {
        padding-left: 18px;
        margin: 14px 0 24px;
    }
}
