.esg32-page {
    /* Page-owned colors retained for this governance diagram family. */
    --esg32-olive: #b8cc41;
    --esg32-purple: #744d99;
    --esg32-lavender: #aab0cb;
    --esg32-cream: #fbfbef;
    --esg32-blue-fill: #eef3fb;
    --esg32-teal-fill: #edf9f8;
    --esg32-orange-fill: #fff4e8;
    --esg32-border-teal: #57c8c6;
    --esg32-border-orange: #f3b370;
}

/* Page-specific paragraph rhythm layered on top of shared esg-body-copy. */
.esg32-page .esg32-text-block p {
    margin: 0 0 10px;
    text-indent: 0;
}

.esg32-page .esg32-structure {
    display: grid;
    grid-template-columns: minmax(0, 1.26fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: start;
}

.esg32-page .esg32-structure-main {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.esg32-page .esg32-block {
    background: var(--esg-color-white);
}

.esg32-page .esg32-block h3,
.esg32-page .esg32-workgroup h3 {
    margin: 0;
    padding: 14px 18px;
    color: var(--esg-color-white);
    font-size: 24px;
    font-weight: 700;
    text-indent: 0;
}

.esg32-page .esg32-block h3 {
    text-align: center;
}

.esg32-page .esg32-block p,
.esg32-page .esg32-block li,
.esg32-page .esg32-workgroup li,
.esg32-page .esg32-meeting-card p,
.esg32-page .esg32-meeting-card li {
    text-indent: 0;
}

.esg32-page .esg32-block--board h3 {
    background: var(--esg32-purple);
}

.esg32-page .esg32-block--board p {
    margin: 0;
    padding: 16px 18px;
    background: #f6f3fa;
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
}

.esg32-page .esg32-block--committee {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.esg32-page .esg32-block--committee h3 {
    background: var(--esg32-olive);
}

.esg32-page .esg32-block--secretary {
    grid-column: 2;
}

.esg32-page .esg32-block--secretary h3 {
    background: var(--esg32-lavender);
}

.esg32-page .esg32-block-body {
    padding: 18px 22px 20px;
    border: 1px solid #eef0df;
    border-top: none;
    background: var(--esg32-cream);
}

.esg32-page .esg32-block--secretary .esg32-block-body {
    border-color: #e5e7f0;
    background: #f7f8fc;
}

.esg32-page .esg32-block-body > p {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.75;
}

.esg32-page .esg32-block-body h4,
.esg32-page .esg32-workgroup-col h4,
.esg32-page .esg32-meeting-topic h5 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    text-indent: 0;
}

.esg32-page .esg32-block-body h4 {
    color: #9db53b;
}

.esg32-page .esg32-block--secretary .esg32-block-body h4 {
    color: #7b83a8;
}

.esg32-page .esg32-divider {
    height: 1px;
    margin: 16px 0 18px;
    background: #d6ddae;
}

.esg32-page .esg32-check-list,
.esg32-page .esg32-workgroup-col ul,
.esg32-page .esg32-meeting-topic ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.esg32-page .esg32-check-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 32px;
    font-size: 17px;
    line-height: 1.75;
}

.esg32-page .esg32-check-list li:last-child,
.esg32-page .esg32-workgroup-col ul li:last-child,
.esg32-page .esg32-meeting-topic ol li:last-child {
    margin-bottom: 0;
}

.esg32-page .esg32-check-list li::before {
    content: "✓";
    position: absolute;
    top: 2px;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.esg32-page .esg32-check-list--green li::before {
    background: var(--esg32-olive);
}

.esg32-page .esg32-check-list--lavender li::before {
    background: var(--esg32-lavender);
}

.esg32-page .esg32-check-list--blue li::before {
    background: var(--esg-color-blue);
}

.esg32-page .esg32-check-list--teal li::before {
    background: var(--esg-color-teal);
}

.esg32-page .esg32-check-list--orange li::before {
    background: var(--esg-color-chart-orange);
}

.esg32-page .esg32-workgroups {
    display: grid;
    gap: 20px;
}

.esg32-page .esg32-workgroup h3 {
    font-size: 22px;
}

.esg32-page .esg32-workgroup--blue h3 {
    background: var(--esg-color-blue);
}

.esg32-page .esg32-workgroup--teal h3 {
    background: var(--esg-color-teal);
}

.esg32-page .esg32-workgroup--orange h3 {
    background: var(--esg-color-chart-orange);
}

.esg32-page .esg32-workgroup-body {
    display: grid;
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1.28fr);
    gap: 24px;
    padding: 18px 18px 20px;
}

.esg32-page .esg32-workgroup--blue .esg32-workgroup-body {
    background: var(--esg32-blue-fill);
}

.esg32-page .esg32-workgroup--teal .esg32-workgroup-body {
    background: var(--esg32-teal-fill);
}

.esg32-page .esg32-workgroup--orange .esg32-workgroup-body {
    background: var(--esg32-orange-fill);
}

.esg32-page .esg32-workgroup-col h4 {
    font-size: 17px;
}

.esg32-page .esg32-workgroup--blue .esg32-workgroup-col h4 {
    color: var(--esg-color-blue);
}

.esg32-page .esg32-workgroup--teal .esg32-workgroup-col h4 {
    color: var(--esg-color-teal);
}

.esg32-page .esg32-workgroup--orange .esg32-workgroup-col h4 {
    color: var(--esg-color-chart-orange);
}

.esg32-page .esg32-workgroup-col ul li {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.7;
}

.esg32-page .esg32-highlights {
    display: grid;
    gap: 28px;
}

.esg32-page .esg32-highlight-panel {
    padding: 18px 22px 20px;
    background: #fff;
}

.esg32-page .esg32-highlight-panel--teal {
    border: 2px solid var(--esg32-border-teal);
}

.esg32-page .esg32-highlight-panel--orange {
    border: 2px solid var(--esg32-border-orange);
}

.esg32-page .esg32-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.esg32-page .esg32-highlight-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 18px;
}

.esg32-page .esg32-highlight-list li:last-child {
    margin-bottom: 0;
}

.esg32-page .esg32-highlight-list .marker {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.esg32-page .esg32-highlight-panel--teal .marker {
    background: var(--esg-color-teal);
}

.esg32-page .esg32-highlight-panel--orange .marker {
    background: #ff9b42;
}

.esg32-page .esg32-highlight-list p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    text-indent: 0;
}

.esg32-page .esg32-meeting-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.esg32-page .esg32-meeting-card {
    padding: 20px 22px 22px;
    border: 1px solid #d9e1ef;
    background: #fbfdff;
}

.esg32-page .esg32-meeting-card h4 {
    margin: 0 0 14px;
    color: var(--esg-color-blue);
    font-size: 22px;
    font-weight: 700;
    text-indent: 0;
}

.esg32-page .esg32-meeting-card p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.75;
}

.esg32-page .esg32-meeting-card strong {
    color: #1f3864;
}

.esg32-page .esg32-meeting-topic {
    margin: 16px 0;
}

.esg32-page .esg32-meeting-topic h5 {
    color: var(--esg-color-chart-orange);
}

.esg32-page .esg32-meeting-topic ol {
    counter-reset: item;
}

.esg32-page .esg32-meeting-topic ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.75;
}

.esg32-page .esg32-meeting-topic ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--esg-color-chart-orange);
    font-weight: 700;
}

@media (max-width: 1199px) {
    .esg32-page .esg32-structure {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .esg32-page .esg32-structure-main,
    .esg32-page .esg32-meeting-grid {
        grid-template-columns: 1fr;
    }

    .esg32-page .esg32-block--committee,
    .esg32-page .esg32-block--secretary {
        grid-column: auto;
        grid-row: auto;
    }

    .esg32-page .esg32-workgroup-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .esg32-page .esg32-block h3,
    .esg32-page .esg32-workgroup h3,
    .esg32-page .esg32-meeting-card h4 {
        font-size: 20px;
    }

    .esg32-page .esg32-block-body > p,
    .esg32-page .esg32-check-list li,
    .esg32-page .esg32-workgroup-col ul li,
    .esg32-page .esg32-highlight-list p,
    .esg32-page .esg32-meeting-card p,
    .esg32-page .esg32-meeting-topic ol li {
        font-size: 15px;
    }

    .esg32-page .esg32-highlight-list li {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .esg32-page .esg32-highlight-list .marker {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}
