.section-with-cards section {
    margin: 1em 0;
}

.section-with-cards>section>.header {
    margin-bottom: 0.75em;
    font-size: 1.5em;
    text-align: center;
}

.section-with-cards .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.section-with-cards .card {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    background-color: lightblue;
}

.section-with-cards .card .header {
    margin: 0 0 0.5em 0;
    font-size: 1.25em;
}

.section-with-cards .card .text {
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .section-with-cards .card {
        flex: 1 1 100%;
    }
}