.about-section {
    text-align: center;
    max-width: 60vw;
    margin: 0 auto 6vw auto;
    padding-top: 5vw;
}
.about-title {
    font-size: 3vw;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2vw;
}
.about-text {
    font-size: 1.3vw;
    color: #ededed;
    margin-bottom: 2.5vw;
    line-height: 1.55;
}
.about-usp-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1vw 2vw;
    margin-bottom: 3vw;
}
.about-usp {
    background: #232323;
    color: #ffe97a;
    font-size: 0.92vw;
    font-weight: 600;
    padding: 0.45vw 1.2vw;
    border-radius: 1.3vw;
    box-shadow: 0 2px 16px #0002;
    margin-bottom: 0.7vw;
}

/* ===================== Bildreihe ===================== */
.about-image-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr 1fr;
    gap: 1vw;  /* vorher 2vw */
    margin: 1vw 0 2vw 0;
    align-items: stretch;
    max-width: 100%;
    padding-left:0;
}

/* Platzierung der einzelnen Boxen */
.about-image-row > .about-img-box:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.about-image-row > .about-img-box:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
.about-image-row > .about-img-box.about-img-right-large {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.about-img-side-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    min-height: 0;
}
/* Höhe der kleinen Bilder reduzieren */
.about-img-side-small img,
.about-img-side-small .about-img {
    width: 100%;
    height: 13vw;   /* vorher 18vw */
    aspect-ratio: 1.3/1;
    object-fit: cover;
    background: #232323;
    border-radius: 1vw;
    box-shadow: 0 2px 16px #0007;
    transition: box-shadow 0.22s, transform 0.22s;
    cursor: pointer;
}

/* Höhe des großen Bildes entsprechend anpassen */
.about-img-right-large img,
.about-img-right-large .about-img {
    width: 100%;
    height: calc(2 * 13vw + 3vw); /* zwei kleine plus gap! */
    object-fit: cover;
    background: #232323;
    border-radius: 1vw;
    box-shadow: 0 4px 28px #000a;
    transition: box-shadow 0.22s, transform 0.22s;
    cursor: pointer;
}
.about-img-caption {
    color: #ffe97a;
    font-size: 0.95vw;
    margin-top: 0.5vw;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
    text-shadow: 0 1px 8px #000a;
}

/* Hover Effekt */
.about-img-box img:hover,
.about-img-box .about-img:hover {
    transform: scale(1.035);
    box-shadow: 0 8px 44px #ffe66c77, 0 4px 40px #000b;
    z-index: 3;
}


.about-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20,20,20,0.92); /* leicht abgedunkelt */
    justify-content: center;
    align-items: center;
    transition: background 0.15s;
}

.about-modal.active {
    display: flex;
}

.about-modal img {
    max-width: 96vw;
    max-height: 90vh;
    width: 63vw;
    height: auto;
    border-radius: 1vw;
    box-shadow: 0 4px 40px #000e;
    background: #232323;
    animation: popUpModal .15s;
    position: relative;
    z-index: 2;
    object-fit: contain;
}

/* Schließen-Button oben rechts */
.about-modal-close {
    position: absolute;
    top: 3vw;
    right: 4vw;
    z-index: 10;
    font-size: 3vw;
    color: #fff;
    background: rgba(30,30,30,0.85);
    border: none;
    border-radius: 50%;
    width: 5vw;
    height: 5vw;
    cursor: pointer;
    box-shadow: 0 2px 20px #000b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s;
    padding: 0;
    line-height: 1;
}
.about-modal-close:hover,
.about-modal-close:focus {
    background: #fff;
    color: #181818;
}


@media (orientation:portrait) {
    .about-section {
        text-align: center;
        margin: 0;
    }
    .about-title{
        font-size:10vw;
        margin-top:35vw;
        text-align:center;
        width:100vw;
        padding-bottom:3vw;
    }
    .about-text{
        font-size:4vw;
        width:90vw;
        margin-left:5vw;
    }

    /* --- Nur noch diese Version behalten --- */
    .about-usp-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2vw 3vw;
        justify-items: center;
        align-items: stretch;     /* Das sorgt dafür, dass alle Zellen gleich hoch sind */
        width: 94vw;
        margin: 0 auto 5vw auto;
        margin-left:3vw;
    }
    .about-usp {
        width: 90%; /* <- sorgt für gleiche Breite pro Zelle */
        font-size: 2.5vw;
        font-weight: 700;
        border-radius: 2.2vw;
        padding: 1vw 2vw;
        text-align: center;
        letter-spacing: 0.02em;
        border: none;
        box-sizing: border-box;
    }
    .about-usp-list .about-usp:last-child {
        grid-column: 1 / 3;
        justify-self: center;
        width: 70%;  /* etwas schmaler, damit es schön aussieht */
    }


    .about-image-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 3vw;
        width: 95vw;
        align-items: stretch;
        justify-items: center;
        margin-left:5vw;
    }

    /* Beide kleinen Bilder nebeneinander */
    .about-image-row > .about-img-box.about-img-side-small {
        grid-row: 1;
        width:44vw;
        grid-column: auto;
        display: flex;
        flex-direction: column;
        margin-top:5vw;
    }
   .about-img-side-small .about-img {
        height:30vw;
    }

    .about-img-right-large img, .about-img-right-large .about-img {
        height:55vw;
    }
    /* Großes Bild darunter, über beide Spalten */
    .about-image-row > .about-img-box.about-img-right-large {
        grid-row: 2;
        grid-column: 1 / 3;
        width: 90vw;
        display: flex;
        flex-direction: column;
    }

    .about-img {
        object-fit: cover;
        border-radius: 2vw;
        box-shadow: 0 2px 16px #0008;
        background: #232323;
    }
    .about-img-caption {
        font-size: 3vw;
        margin-top: 0.5vw;
        color: #ffe97a;
        text-shadow: 0 1px 8px #000a;
        text-align: center;
    }
}
