/* =====================================================
TOWNWORK FOOTER
Datei: footer.css
===================================================== */

:root {
    --tw-footer-blue-top: #082d62;
    --tw-footer-blue-bottom: #05244f;
    --tw-footer-white: #ffffff;
    --tw-footer-muted: rgba(255, 255, 255, 0.88);
    --tw-footer-orange: #ff7417;
}

.tw-footer {
    width: 100%;
    padding: 46px 0 26px;
    color: var(--tw-footer-white);
    background:
        radial-gradient(circle at 50% 115%, rgba(62, 126, 190, 0.28) 0%, rgba(62, 126, 190, 0) 38%),
        linear-gradient(180deg, var(--tw-footer-blue-top) 0%, var(--tw-footer-blue-bottom) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    font-family: Arial, Helvetica, sans-serif;
}

.tw-footer-inner {
    width: min(1680px, calc(100% - 160px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.55fr 1fr 0.85fr 0.85fr;
    gap: 82px;
    align-items: start;
}

.tw-footer-brand {
    min-width: 0;
}

.tw-footer-logo {
    display: inline-block;
    text-decoration: none;
}

.tw-footer-logo-img {
    width: 240px;
    height: auto;
    display: block;
}

.tw-footer-claim {
    margin: 26px 0 20px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--tw-footer-white);
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.32);
}

.tw-footer-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 700;
    color: var(--tw-footer-muted);
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.32);
}

.tw-footer-col h3 {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--tw-footer-white);
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.35);
}

.tw-footer-col a {
    width: fit-content;
    display: block;
    margin: 0 0 10px;
    color: var(--tw-footer-muted);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.32);
    transition: color 0.16s ease, transform 0.16s ease;
}

.tw-footer-col a:hover {
    color: #ffe6d3;
    transform: translateX(2px);
}

.tw-footer-col .tw-footer-highlight {
    color: var(--tw-footer-orange);
}

.tw-footer-copy {
    width: min(1680px, calc(100% - 160px));
    margin: 34px auto 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 1100px) {
    .tw-footer-inner {
        width: min(100% - 64px, 960px);
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 44px;
    }

    .tw-footer-brand {
        grid-column: 1 / -1;
    }

    .tw-footer-copy {
        width: min(100% - 64px, 960px);
    }
}

@media (max-width: 720px) {
    .tw-footer {
        padding: 36px 0 22px;
    }

    .tw-footer-inner {
        width: min(100% - 36px, 520px);
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tw-footer-logo-img {
        width: 210px;
    }

    .tw-footer-claim,
    .tw-footer-text,
    .tw-footer-col a {
        font-size: 16px;
    }

    .tw-footer-copy {
        width: min(100% - 36px, 520px);
        margin-top: 30px;
        font-size: 14px;
    }
}
