article > section.diptic {
    > .wrapper {
        display: flex;
        justify-content: stretch;
        align-items: center;
        gap: var(--gap-bigger);

        box-sizing: border-box;

        @media all and (max-width: 800px) {
            flex-direction: column;
            align-items: stretch;
        }

        > div {
            display: flex;
            flex-direction: column;
            gap: var(--gap-big);

            h1 {
                font-family: var(--font-family-title);
                font-size: 20pt;
                font-weight: 600;
                line-height: 1.1em;
            }

            &.left {
                flex-basis: 45%;
            }

            &.right {
                flex-basis: 55%;
            }
        }
    }

    &.inverse > .wrapper > div:not(:has(img)) {
        padding-top: var(--gap-big);
        padding-bottom: var(--gap-big);
    }
}
