/* Basis-Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
}

/* Wrapper im Flex-Modus */
.wrapper {
    display: flex;
    flex-wrap: wrap;          /* Ermöglicht Zeilenumbruch bei wenig Platz */
    width: 100%;
    gap: 20px;                /* Abstand zwischen den Blöcken */
    padding: 20px;
    box-sizing: border-box;
}

/* Datenschutz & Impressum gleich behandelt */
.datenschutz,
.impressum {
    flex: 1 1 45%;            /* Nimmt mindestens 45% Platz, aber darf wachsen */
    min-width: 300px;         /* Bei kleineren Viewports wird gebrochen */
    aspect-ratio: 1 / 1.41;   /* A4-Seitenverhältnis (hochkant) */
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
}

/* Das PDF-Embed selbst */
.datenschutz embed,
.impressum embed {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    top: 0;
    left: 0;
}
