.km-pillen__headline {
    color: #212a55;
    font-weight: 700;
    margin: 0 0 1rem;
}

.km-pillen {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: max-content;
    max-width: 100%;
}
@media screen and (min-width: 1260px) {
    .km-pillen {
        max-width: 80%;
    }
}
.km-pillen__pill {
    background: #554596;
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 200;
    cursor: pointer;
    transition: background 0.2s ease;
}
.km-pillen__pill:hover {
    background: #40337a;
}
