/* Startseiten-Kacheln: gleiche Höhe pro Reihe, sauberes Umbrechen */
.tiles-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.tiles-wrapper .tile-col {
    float: none;            /* Float des Themes abschalten */
    display: flex;          /* Kachel füllt die Spaltenhöhe */
    margin-bottom: 25px;    /* ersetzt das bisherige padding-bottom */
}

.tiles-wrapper .tile-col .tile {
    height: auto !important;       /* feste 400px-Höhe aufheben */
    max-height: none !important;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* "mehr Infos ..." immer unten in der Kachel andocken */
.tiles-wrapper .tile-col .tile .tile-footer {
    margin-top: auto;
}