section.angebot .cardContainer {
    padding: 20px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

section.angebot .cardContainer .card {
    width: 350px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    padding: 24px;
}

section.angebot .cardContainer .card h2 {
    font-size: 20px;
    color: var(--blue);
}

section.angebot .cardContainer .card .card-inner {
    display: flex;
    justify-content: space-between;
    /* margin-top: 15px; */
}

section.angebot .cardContainer .card .card-inner button {
    background: transparent;
    border: none;
    font-size: 28px;
    /* width: 40px; */
    /* display: inline-flex; */
    /* align-items: center; */
    /* justify-content: center; */
    cursor: pointer;
    color: var(--blue);
}

section.angebot .cardContainer .card .card-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

section.angebot .cardContainer .card .card-inner ul li {
    display: none;
    height: 125px;
    padding: 0 10%;
}

section.angebot .cardContainer .card .card-inner ul li.active {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 650px) {
    section.angebot .cardContainer {
        flex-direction: column;
    }
}

@media screen and (max-width: 450px) {
    section.angebot .cardContainer .card {
        width: 300px;
        /* padding: 24px; */
    }
}

@media screen and (max-width: 400px) {
    section.angebot .cardContainer .card {
        width: 250px;
        padding: 15px;
    }
}

@media screen and (max-width: 350px) {
    section.angebot .cardContainer .card {
        width: 225px;
        padding: 15px;
    }
}