/**
 * STYLES: Beitrag Modelle - Halb: Text / Halb: Bild
*/


.block-client-002 h2 {
    font-size: 2.9rem;
    font-weight: 500;
    padding-bottom: 2rem;
}

.block-client-002 .text-block ul {
    list-style-type: none;
    padding-left: 2rem;
    padding-top: 1rem;
}

.block-client-002 .text-block ul li {
    position: relative;
}

.block-client-002 .text-block ul li:not(:last-child) {
    padding-bottom: .75rem;
}

.block-client-002 .text-block ul li:before {
    content: '';
    width: 1.2rem;
    height: 1.2rem;
    display: block;
    background-image: url(/wp-content/uploads/2025/06/ICON_Liste.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -2rem;
    top: .85rem;
    transform: translate(0, -50%);
}

.block-client-002 .half-half-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: var(--section-padding-top-bottom);
    gap: 0 10%;
}

.block-client-002 .half-half-row.image-left {
    flex-direction: row-reverse;
}

.block-client-002 .half-half-row.bg-grey::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 100%;
    background: var(--background-grey);
    z-index: -1;
}

.block-client-002 .col-left {
    width: 45%;
}

.block-client-002 .col-right {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.block-client-002 .col-right-img {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 28rem;
}

.block-client-002 .col-right-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--border-radius-one-quarter);
}

.block-client-002 .leasing-price-boxes-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3rem;
    margin-top: 3rem;
}

.block-client-002 .leasing-box,
.block-client-002 .price-box {
    background: var(--background-dark-grey);
    width: calc(50% - 1.5rem);
    text-align: center;
    padding: 1rem;
}

.block-client-002 .price-box:only-child {
    width: 100%;
}

.block-client-002 .box-label {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    margin-bottom: .75rem;
}

.block-client-002 .box-value {
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 600;
}

