body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    color: #1F2937;
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 40px;
}

.top {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.logo img {
    height: 45px;
}

.brandline {
    height: 3px;
    width: 80px;
    background: #FBC703;
    margin-bottom: 10px;
}

.title {
    font-size: 16px;
    color: #6B7280;
}

.prod {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.meta {
    font-size: 13px;
    margin-top: 5px;
}

/* 👉 DAS IST DER KRITISCHE TEIL */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
}

/* 👉 wichtig für Struktur */
.card {
    margin-bottom: 20px;
}

/* 👉 SECTION TITLES */
.h {
    font-size: 13px;
    font-weight: bold;
    color: #6B7280;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 6px;
    margin-bottom: 10px;
}

/* 👉 Zeilenstruktur FIX */
.row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 15px;
    margin-bottom: 8px;
}

/* 👉 Labels */
.lab {
    font-weight: bold;
}

/* 👉 QR Bereich stabilisieren */
.digital {
    margin-top: 30px;
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
    display: flex;
    gap: 30px;
}

/* 👉 WICHTIG: QR NICHT riesig */
.qrbox img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border: 1px solid #E5E7EB;
}

.link a {
    color: blue;
    text-decoration: underline;
    word-break: break-all;
}

/* Tabelle */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th {
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
    padding: 8px 5px;
    font-weight: bold;
}

td {
    border-bottom: 1px solid #f1f1f1;
    padding: 6px 5px;
}


