@charset "utf-8";
/* CSS Document */
/* =========================================
   COUNTRY KACHELN – für alle Länderseiten
   ========================================= */

.country-kacheln {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin: 30px auto;
}

.country-kachel {
    width: 100%;
    min-width: 0;
}

.country-kachel img {
    display: block;
    width: 100%;
    height: auto;
}

/* ab 900 px: 2 Kacheln pro Reihe */
@media (max-width: 900px) {

    .country-kacheln {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

}

/* ab 600 px: 1 Kachel pro Reihe */
@media (max-width: 600px) {

    .country-kacheln {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}