/****
* Specific styles for eco-design page
****/
main.container {
    max-inline-size: var(--container-large-tablet);
    --flow-space: 5rem;
}
main :is(h2, h3, h4, h5, h6) {
    text-wrap: unset;
}
main ul {
    list-style-type: disc;
}
main :is(p, ul, ol, li) {
    font-weight: 500;
    --flow-space: 1rem;
}
main h2 + * {
    --flow-space: 2.5rem;
}
main h2 + picture {
    --flow-space: 2.75rem;
}
main *:not(h2) + :is(h3, h4, h5, h6) {
    --flow-space: 3rem;
}
main li {
    padding-inline-start: 0;
}
main :is(ul, ol) {
    padding-inline-start: var(--space-2xs);
}
main :is(picture + *:not(h2), *:not(h2) + picture) {
    --flow-space: 1.5rem;
}
main :is(picture:first-of-type) + * {
    --flow-space: 2.75rem;
}
@media (min-width: 64rem) {
    main.container {
        max-inline-size: var(--container-large-desktop);
    }
}