/*
 * DVET Stammdaten
 *
 * Shortcode-Blöcke können in Full-Site-Editing-Themes außerhalb der
 * normalen Contentbreite gerendert werden. Diese Wrapper ziehen die
 * Stammdaten-Ausgaben wieder exakt in die globale WordPress-Inhaltsbreite.
 */

.dvet-stamm-output {
    box-sizing: border-box;
    width: min(
        100% - (2 * var(--wp--style--root--padding-left, 0px)),
        var(--wp--style--global--content-size, 840px)
    );
    max-width: var(--wp--style--global--content-size, 840px);
    margin-left: auto;
    margin-right: auto;
}

.dvet-stamm-output p:first-child {
    margin-top: 0;
}

.dvet-stamm-output p:last-child {
    margin-bottom: 0;
}
