.flexParent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.kOverview {
    flex-grow: 1;
}
.kTop {
    gap: 30px;
}
.kImg, .kTopInfo {
    flex-basis: calc(50% - 15px);
    width: calc(50% - 15px);
}
.kMoreInfo {
    background: #f0f0f0;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}
.kPDF {
    display: flex;
    gap: 15px;
    justify-content: start;
    align-items: center;
}
.kPDF img {
    width: 28px;
}
.kPDF {
    text-decoration: none;
}
.kTeaser {
    display: flex;
    justify-content: start;
    background: #f0f0f0;
    width: 48%;
    box-sizing: border-box;
    float: left;
    margin: 1%;
    height: 164px;
    border: 2px solid #f0f0f0;
}
.kTeaser > img {
    height: 160px;
    width: auto;
    background: #fff;
}
.kTeaser > div {
    padding: 10px;
}
.kTeaser p {
    margin: 8px 0;
}
.kName {
    font-size: 18px;
}
.kProdukte {
    justify-content: flex-start;
}
.kMoreInfo h2 {
    font-size: 26px;
}

/**/
.kImgSlider img {
    width: 100%;
}
.kPDF {
    overflow: hidden;
}
.kPDF > p{
    overflow: hidden;
    text-overflow: ellipsis;
}



@media(max-width: 60em) {
    .kTeaser {
        flex-direction: column;
        height: auto;
    }
    .kTeaser > .kTeaserImg {
        height: auto;
    }
    .kMoreInfo h2 {
        font-size: 16px;
    }
    .kImg, .kTopInfo {
        flex-basis: 100%;
        width: 100%;
    }
}