/* Kacheln */
.tm-kacheln {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tm-kachel {
    flex: 1 1 250px;
    padding: 20px;
    background: #f5f5f5;

    border: 1px solid #cfcfcf;
    border-radius: 10px;

    box-shadow: 0 2px 6px rgba(0,0,0,0.08);

    box-sizing: border-box;
}
/* Mobile */
@media (max-width: 600px) {
    .tm-kachel {
        flex: 1 1 100%;
    }
}

/* Horizontales Menü */
.menu-horizontal ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-horizontal li {
    margin: 0;
}
