/* ================== Container ================== */
.Footer_Bereich .tnd-footer { width: 100%; }
.Footer_Bereich .tnd-footer .footer-wrap {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================== Box-Style ================== */
.Footer_Bereich .tnd-footer-box {
    background: #fff;
    border: 1px solid #307203;
    border-radius: 12px;
    padding: 24px;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(48,114,3,.20) inset,
        0 10px 24px rgba(48,114,3,.18),
        0 4px 12px rgba(0,0,0,.04);
    transition: box-shadow .3s ease, transform .3s ease;
}
.Footer_Bereich .tnd-footer-box:hover {
    transform: scale(1.02);
    box-shadow:
        0 0 0 1px rgba(48,114,3,.30) inset,
        0 16px 32px rgba(48,114,3,.26),
        0 10px 20px rgba(0,0,0,.08) !important;
}

/* ================== Textfarben ================== */
.Footer_Bereich .tnd-footer,
.Footer_Bereich .tnd-footer-box,
.Footer_Bereich .tnd-footer-box p,
.Footer_Bereich .tnd-footer-box li,
.Footer_Bereich .tnd-footer-box a,
.Footer_Bereich .tnd-footer-copy,
.Footer_Bereich .social-row a { color: #000 !important; }
.Footer_Bereich .social-row a svg { stroke: currentColor !important; }

[data-bs-theme="dark"] .Footer_Bereich .tnd-footer,
[data-bs-theme="dark"] .Footer_Bereich .tnd-footer-box,
[data-bs-theme="dark"] .Footer_Bereich .tnd-footer-box p,
[data-bs-theme="dark"] .Footer_Bereich .tnd-footer-box li,
[data-bs-theme="dark"] .Footer_Bereich .tnd-footer-box a,
[data-bs-theme="dark"] .Footer_Bereich .tnd-footer-copy,
[data-bs-theme="dark"] .Footer_Bereich .social-row a { color: #fff !important; }
[data-bs-theme="dark"] .Footer_Bereich .social-row a svg { stroke: currentColor !important; }

/* ================== Überschriften ================== */
.Footer_Bereich .tnd-footer-box h3 {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    padding-bottom: 4px;
}
.Footer_Bereich .tnd-footer-box h3::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: #307203;
    border-radius: 2px;
}

/* Dark Mode Linie weiß */
[data-bs-theme="dark"] .Footer_Bereich .tnd-footer-box h3::after {
    background: #ffffff !important;
}

/* ================== Linklisten & Buttons ================== */
.Footer_Bereich .tnd-footer-box ul {
    list-style: none;
    padding: 0; margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}
.Footer_Bereich .tnd-footer-box ul li { width: 100%; }

.Footer_Bereich .tnd-footer-box ul li a {
    display: block;
    width: 100%;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    background: rgba(48,114,3,0.08);
    border: 1px solid rgba(48,114,3,0.25);
    font-weight: 500;
    transition: all .25s ease;
    color: inherit;
}
.Footer_Bereich .tnd-footer-box ul li a:hover,
.Footer_Bereich .tnd-footer-box ul li a:focus {
    background: #307203;
    border-color: #307203;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(48,114,3,0.25);
}

/* ================== Logo Box ================== */
.Footer_Bereich .tnd-logo-box img {
    max-width: 180px !important;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ================== GRID ================== */
.Footer_Bereich .row-1,
.Footer_Bereich .row-2 {
    display: flex;
    gap: 24px;
    width: 100%;
    align-items: stretch !important;
}
.Footer_Bereich .row-1 .footer-col { flex: 1 1 calc(25% - 24px); display: flex; }
.Footer_Bereich .row-2 { margin-top: 24px; }
.Footer_Bereich .row-2 .footer-col { flex: 1 1 calc((100% - 48px)/3); display: flex; }

/* ================== Social ================== */
.Footer_Bereich .social-row {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.Footer_Bereich .social-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    text-decoration: none;
    transition: color .25s ease, transform .2s ease;
    color: inherit;
}
.Footer_Bereich .social-row a:hover { transform: translateY(-2px); }

.Footer_Bereich .social-image {
    max-height: 100px !important;
    width: auto !important;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(48,114,3,.25);
    margin-top: 10px;
    box-shadow:
        0 0 0 1px rgba(48,114,3,.12) inset,
        0 10px 24px rgba(48,114,3,.12),
        0 4px 12px rgba(0,0,0,.04);
}

/* Divider */
.Footer_Bereich .tnd-divider {
    width: 100%;
    max-width: 260px;
    height: 1px;
    background: linear-gradient(90deg, rgba(48,114,3,0), rgba(48,114,3,.35), rgba(48,114,3,0));
    margin: 16px auto 14px;
}

/* Newsletter */
.Footer_Bereich .newsletter-info { font-size: 15px; }

/* ================== Dark Mode Backgrounds ================== */
[data-bs-theme="dark"] .Footer_Bereich .tnd-footer { background: #121212 !important; }
[data-bs-theme="dark"] .Footer_Bereich .tnd-footer-box {
    background: #1c1c1c !important;
    border-color: #307203 !important;
}
[data-bs-theme="dark"] .Footer_Bereich .social-image {
    border-color: rgba(255,255,255,.35);
}

/* ================== Reduced Motion ================== */
@media (prefers-reduced-motion: reduce) {
    .Footer_Bereich .tnd-footer-box,
    .Footer_Bereich .tnd-footer-box ul li a,
    .Footer_Bereich .social-row a,
    .Footer_Bereich .social-image {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

/* ================== Copyright ================== */
.Footer_Bereich .tnd-footer-copy {
    border-top: 1px solid #307203;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

/* ================== Responsive ================== */
@media (max-width:900px){
    .Footer_Bereich .row-1,
    .Footer_Bereich .row-2 {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .Footer_Bereich .footer-col { flex: 1 1 100% !important; }
    .Footer_Bereich .tnd-footer-box { border-radius: 0 !important; }
}