/* ===========================
   Footer
   =========================== */

.nt-footer {
    background: #222;
    color: #fff;
    padding: 40px 20px;
    margin-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Container für die drei Tabellen */
.nt-footer-tables {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Tabellen dürfen NICHT 100% breit sein */
table {
    width: auto;
    border-collapse: collapse;
}

/* Jede einzelne Tabelle */
.nt-footer-table {
    width: 30%;
    color: #fff;
}

.nt-footer-table th {
    text-align: left;
    font-size: 18px;
    padding-bottom: 10px;
    color: #fff;
    border-bottom: 1px solid #444;
}

.nt-footer-table td {
    padding: 6px 0;
}

.nt-footer-table a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

.nt-footer-table a:hover {
    color: #fff;
}

/* Footer‑Bottom */
.nt-footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 14px;
}

/* ===========================
   Responsive (Mobile)
   =========================== */

@media (max-width: 800px) {
    .nt-footer-tables {
        flex-direction: column;
        gap: 20px;
    }

    .nt-footer-table {
        width: 100%;
    }
}
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.card-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #0077ff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.ads-card {
    border: 2px dashed #aaa;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 18px;
}

