﻿.biography-text > div {
    border-top: 0px;
}

.biography {
    max-width: 1300px;
    margin: 120px auto 80px auto;
    padding: 0 20px;
}

/* ▌Haupt-Container mit Bild als Hintergrund ▐ */
.biography-text {
    position: relative;
    display: block;
    padding: 60px 30px;
    background-color: rgba(255, 255, 255, 0.85); /* transparenter Hintergrund für Lesbarkeit */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

    /* ▌Hintergrundbild-Ebene ▐ */
    .biography-text::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        /*background-image: url('/images/artist.jpeg');*/ /* ← passe den Pfad ggf. an */
        background-size: cover;
        background-position: center;
        opacity: 0.08; /* hier kannst du mit der Intensität spielen */
        z-index: 0;
        pointer-events: none;
    }

    /* ▌Inhalt über dem Bild ▐ */
    .biography-text > div {
        position: relative;
        z-index: 1;
        width: 50%;
        padding: 0;
        border-top: none;
    }

    .biography-text p {
        /*padding-right: 50%;*/
        font-size: 18px;
        line-height: 1.75;
        margin-bottom: 25px;
        text-align: justify;
    }

    /* Das direkte Bild ist nicht mehr nötig */
    .biography-text img {
        display: none; /* optional: falls du es zusätzlich anzeigen willst, entferne diese Zeile */
    }

    /* PDF-Link optisch passend */
    .biography-text .btn {
        display: inline-block;
        margin-top: 20px;
        background-color: var(--main-color);
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 500;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        transition: background-color 0.3s ease;
        z-index: 1;
        position: relative;
    }

        .biography-text .btn:hover {
            background-color: var(--hover-color);
        }

/*.biography-text > div:last-child {
        display: none;
    }*/



@media (max-width: 905px) {

    .biography-text::before {
        content: unset;
    }

    .biography-text > div {
        width: 100% !important;
    }
}

@media screen and (max-width: 810px) {
    .biography-text > div img {
        margin: 40px 0px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .biography-text p {
        padding-right: 0 !important;
    }
}
