/* ===========================
   Shared Global Utilities — The ADR Initiative
   Used across ALL page templates. Loaded on every page.
   =========================== */

/* ── Layout Container ─────────────────────────────────────── */

.home-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ── Section Typography Utilities ─────────────────────────── */

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    color: var(--color-black);
    margin: 0 0 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-black);
    margin: 0 auto;
    line-height: 1.7;
    max-width: 640px;
}

/* ── WordPress Editor Content — restore list bullets ──────── */
/* Tailwind resets all list-style to none globally.            */
/* Re-enable for all areas where the_content() is output.     */

.spost-body ul,
.sp-bio-content ul,
.legal-body ul {
    list-style-type: disc;
    padding-left: 24px;
}

.spost-body ol,
.sp-bio-content ol,
.legal-body ol {
    list-style-type: decimal;
    padding-left: 24px;
}

.spost-body ul ul,
.sp-bio-content ul ul,
.legal-body ul ul {
    list-style-type: circle;
}

.spost-body ul ul ul,
.sp-bio-content ul ul ul,
.legal-body ul ul ul {
    list-style-type: square;
}
