.single-kunden-hero {
    background: var(--sand) url('/wp-content/themes/aibatros/images/background-kundenstory.svg') no-repeat right 50px;
    background-size: calc(50% + 50px) auto;
    padding: 50px 0 100px 0;
}

.single-kunden-hero .innerwidth {
    padding-top: 100px;
}

.single-kunden-hero .link-arrow {
    position: absolute;
    left: 0;
    top: 0;
}

.single-kunden-hero .kundenstory-content {
    width: 50%;
    padding-right: 100px;
    box-sizing: border-box;
    margin-top: 0px;
}

.single-kunden-hero .kundenstory-content .label {
    font-weight: 500;
    font-size: 16px;
}

.single-kunden-hero .kundenstory-content h1 {
    font-size: 40px;
    line-height: 120%;
}

.single-kunden-hero .kundendetails-wrapper {
    width: 50%;
    box-sizing: border-box;
    padding: 60px;
    background: #D5FC93;
    position: absolute;
    right: 0;
    top: 100px;
}

.single-kunden-hero .kundendetails-wrapper .logo-wrap {
    background: white;
    padding: 10px;
    max-width: 200px;
    margin-bottom: 25px;
}

.single-kunden-hero .kundendetails-wrapper .logo-wrap img {
    margin: 0 auto;
    max-height: 90px;
}

.single-kunden-hero .kundendetails-wrapper .details-wrapper {
    font-size: 25px;
    line-height: 140%;
    font-weight: 500;
}

.single-kunden-hero .kundendetails-wrapper .detail-large {
    font-size: 30px;
    line-height: 140%;
    font-weight: 700;
}

.single-kunden-hero .kundendetails-wrapper .detail-large.detail-amount,
.single-kunden-hero .kundendetails-wrapper .detail-large.detail-since {
    font-size: 35px;
}

.single-kunden-hero .kundendetails-wrapper .detail-large.detail-name,
.single-kunden-hero .kundendetails-wrapper .detail-large.detail-category,
.single-kunden-hero .kundendetails-wrapper .detail-small.detail-amount {
    margin-bottom: 30px;
}

.single-kunden-content-btl {
    padding: 80px 0;
    min-height: 250px;
}

.single-kunden-content-btl .kundenstory-content-btl {
    width: 50%;
    padding-right: 100px;
    box-sizing: border-box;
}

.customer-box {
    display: flex;
    gap: 40px;
    background: white;
    color: var(--darkblue);
    width: 100%;
    height: auto;
    transition: 0.5s ease;
    padding: 45px;
    border: 2px solid var(--darkblue);
    box-sizing: border-box;
}

.customer-box .column-photo {
    width: 250px;
    background: url('/wp-content/themes/aibatros/images/background-customer-photo.svg') no-repeat center bottom;
    background-size: 100% auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.customer-box .column-photo img {
    width: 100%;
}

.customer-box .column-content {
    width: calc(100% - 250px);
    padding: 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customer-box .column-content h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 140%;
}

.customer-box .column-content .customer-author {
    padding-left: 50px;
    box-sizing: border-box;
    position: relative;
    font-size: 16px;
}

.customer-box .column-content .customer-author:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 100px;
    height: 2px;
    width: 35px;
    background: var(--blue);
}

.customer-box .column-content .customer-short-description {
    font-weight: 700;
    font-size: 16px;
}

@media (max-width: 768px) {
    .single-kunden-hero {
        padding: 30px 0 20px 0;
        background-size: 100% auto;
        background-position: bottom center;
    }

    .single-kunden-hero .link-arrow {
        display: none;
    }

    .single-kunden-hero .innerwidth {
        padding-top: 0;
    }

    .single-kunden-hero .kundenstory-content {
        width: 100%;
        padding: 0;
    }

    .single-kunden-hero .kundenstory-content h1 {
        font-size: 30px;
    }

    .single-kunden-hero .kundendetails-wrapper {
        position: relative;
        padding: 20px;
        width: 100%;
        top: 0;
        left: 0;
        right: inherit;
        margin-top: 30px;
    }
    
    .single-kunden-hero .kundendetails-wrapper .details-wrapper {
        font-size: 18px;
    }

    .single-kunden-hero .kundendetails-wrapper .logo-wrap {
        max-width: 160px;
    }

    .single-kunden-hero .kundendetails-wrapper .detail-large,
    .single-kunden-hero .kundendetails-wrapper .detail-large.detail-amount, .single-kunden-hero .kundendetails-wrapper .detail-large.detail-since {
        font-size: 22px;
    }

    .single-kunden-content-btl {
        padding: 30px 0;
    }

    .single-kunden-content-btl .kundenstory-content-btl {
        padding: 0;
        width: 100%;
    }

    .customer-box {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .customer-box .column-content {
        width: 100%;
        padding: 0;
    }

    .customer-box .column-photo {
        width: 100%;
    }

    .customer-box .column-content h3 {
        font-size: 16px;
    }
}