.km-kacheln {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.km-kacheln__item {
    color: #fff;
    padding: 2.5rem 2.5rem 5rem;
    min-height: 268px;
    box-sizing: border-box;
}
.km-kacheln__item--dunkelblau { background: #212a55; }
.km-kacheln__item--orange { background: #ec6608; }
.km-kacheln__item--rot { background: #c71433; }
.km-kacheln__item--lila { background: #554596; }
.km-kacheln__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.km-kacheln__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.km-kacheln__icon svg {
    width: 100%;
    height: 100%;
}
.km-kacheln__icon svg,
.km-kacheln__icon svg * {
    fill: #fff !important;
    stroke: #fff !important;
}
.km-kacheln__titel {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}
.km-kacheln__text {
    margin: 0;
    line-height: 1.2;
    font-size: clamp(1rem, 0.91rem + 0.39vw, 1.3rem);
    opacity: 0.95;
}
@media screen and (min-width: 1260px) {
    .km-kacheln__icon {
        width: 70px;
        height: 70px;
    }
}
