/* Wrapper */
.kss__text_with_img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
}

/* Grid-Layout */
.kss___text_with_img__inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    background-color: whitesmoke;
}

/* Text-Spalte */
.kss__text_with_img__txt {
    grid-column: span 7 / span 7;
    padding: var(--kss-page-layout-gap, 1.5rem);
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bild-Spalte */
.kss__text_with_img__img {
    grid-column: span 5 / span 5;
    overflow: hidden;
}

.kss__text_with_img__img img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 375px;
    object-fit: cover;
}

/* Text zentrieren (optionales ACF-Feld) */
.kss__text_with_img__txt.centerText {
    align-items: center;
    text-align: center;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .kss__text_with_img__img {
        order: -1 !important;
    }

    .kss__text_with_img__img,
    .kss__text_with_img__txt {
        grid-column: span 12 / span 12;
    }

    .kss__text_with_img__img img {
        max-height: 280px;
    }
}

/* Mobile */
@media screen and (max-width: 454px) {
    .kss___text_with_img__inner {
        display: flex;
        flex-direction: column;
    }

    .kss__text_with_img__txt {
        padding: 1.25rem;
    }

    .kss__text_with_img__img img {
        max-height: 220px;
    }
}
