.main-content {
    position: absolute;
    top: 0;
    bottom: 56px;
    left: 0;
    right: 0;
    overflow-y: auto;
    background: #bcf3ad;
}

/* NEUER Hauptcontainer */
.page-wrapper {
    position: relative;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1400px;
    padding: 0 1rem;
    box-sizing: border-box;
    border: 2px solid transparent; /* ROTER RAHMEN für Debug */
}

.body-main-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Bildbox OBEN, VOLL BREITE */
.body-box-image-full {
    display: flex;
    width: 100%;
    height: 160px;
    background: transparent;
    border: 2px solid transparent;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
}

/* Reihenlayout */
.body-row-two {
    display: flex;
    gap: 1.3rem;
    margin-top: 2rem;
}

/* Linke Box */
.left-box {
    flex: 1;
    background: transparent;
    border: 2px solid transparent;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 1.5rem;
    text-align: left;
    font-family: Arial, sans-serif;
}

/* Textbereich */
.left-box .text-aus-datei {
    font-family: 'Verdana', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #000;
}

/* Überschriften */
.left-box h2 {
    font-size: 1.3rem;
    color: #2d6f91;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.left-box h3 {
    font-size: 1.1rem;
    color: #2d6f91;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}

.left-box h4 {
    font-size: 1rem;
    color: #2d6f91;
    margin-top: 0.8rem;
    margin-bottom: 0.3rem;
}

/* Absätze */
.left-box p {
    margin: 0.3rem 0 0.8rem 0;
    line-height: 1.4;
    color: #000;
}

/* Links */
.left-box a {
    color: green;
    text-decoration: underline;
}

.left-box a:hover {
    color: #009944;
}

/* Rechte Box – aktuell ausgeblendet */
.right-box {
    display: none;
    flex: 1;
    background: #3e7d65;
    border: 2px solid #00cc99;
    color: #fff;
    min-height: 180px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
    padding: 2rem;
    text-align: right;
    font-family: 'Georgia', serif;
}

/* Letzte volle Box – aktuell ausgeblendet */
.body-box-text-full {
    display: none;
    width: 100%;
    background: #186383;
    border: 2px solid #3e19d2;
    color: #fff;
    min-height: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 1.4rem;
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .body-row-two {
        flex-direction: column;
    }

    .body-box-text-half,
    .body-box-text-full,
    .body-box-image-full {
        min-height: 120px;
    }

    .body-box-image-full img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}
