﻿.card {
    inline-size:49%;
    min-height:100px;
}

.compatibility {
    display: block;
    background-color: rgba(242,242,242,0.5);
    padding: 1em;
    border-radius: 10px;
    margin-bottom: 2em;
    box-shadow: 0 2px 4px rgba(0, 45, 71, 0.5); /* Hier wordt de schaduw toegevoegd */
}

/* ========== Instelling voor schermen tussen 768 & 1044 pixels  ========== */

@media screen and (min-width: 769px) and (max-width: 1044px) {
    .card {
        inline-size: 49%; /* twee kaarten op een regel */
        min-height: 100px;
    }
}

/* ========== Instelling voor schermen tot 768 pixels (mobiele telefoons etc)  ========== */

@media screen and (max-width: 769px) {
    .card {
        inline-size: 100%; /* één kaart op een regel */
        min-height: auto;
        margin-bottom:10px;
}