/* ===== Footer ===== */
body > .foot {
    background: var(--header-navy);
    color: #fff;
    font-size: 14px;
}

body > .foot .footer-top {
    background: var(--header-navy);
}

body > .foot .footer-top .container {
    padding-top: 2rem;
}

body > .foot .footer-top img {
    display: block;
    width: auto;
    height: 72px;
    margin: 0 auto;
}

body > .foot .footer-main {
    background: var(--header-navy);
}

body > .foot .footer-main .container {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 220px;
    justify-content: stretch;
    align-items: start;
    gap: clamp(24px, 4vw, 56px);
    padding-bottom: 4rem;
    margin: 0 auto;
}

body > .foot .footer-main .block {
    min-width: 0;
}

body > .foot .footer-main .title {
    color: var(--header-gold);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 8px;
}

body > .foot .block-footer-business .title {
    font-size: 16px;
    line-height: 1.18;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

body > .foot .block-footer-business .description {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

body > .foot .block-footer-business .description p {
    margin: 0;
}

body > .foot .block-footer-business .content {
    margin-top: 1rem;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}

body > .foot .block-footer-business .content p {
    margin: 0;
}

body > .foot .block-footer-menu-group .head {
    display: none;
}

body > .foot .footer-menu-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    justify-content: stretch;
    gap: clamp(24px, 3.5vw, 52px);
}

body > .foot .block-footer-menu .content ul,
body > .foot .footer-menu-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body > .foot .block-footer-menu .content li,
body > .foot .footer-menu-column li {
    margin: 0;
}

body > .foot .block-footer-menu .content a,
body > .foot .footer-menu-column a {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    padding: 1px 0;
}

body > .foot .block-footer-menu .content a::before,
body > .foot .footer-menu-column a::before {
    content: ">";
    flex: 0 0 auto;
    color: #fff;
}

body > .foot .block-footer-menu .content a:hover,
body > .foot .footer-menu-column a:hover {
    color: var(--header-gold);
}

body > .foot .footer-main .container > .block:last-child img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    margin-left: auto;
}

@media (max-width: 1180px) {
    body > .foot .footer-top .container,
    body > .foot .footer-main .container {
        padding-inline: var(--container-padding);
    }

    body > .foot .footer-main .container {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 24px;
    }

    body > .foot .footer-menu-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    body > .foot .footer-main .container > .block:last-child {
        grid-column: 2;
    }

    body > .foot .footer-main .container > .block:last-child img {
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    body > .foot .footer-main .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body > .foot .block-footer-menu-group {
        grid-column: 1 / -1;
    }

    body > .foot .footer-menu-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body > .foot .footer-main .container > .block:last-child img {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    body > .foot .footer-top .container {
        padding-top: 1.5rem;
    }

    body > .foot .footer-top img {
        height: 58px;
    }

    body > .foot .footer-main {
        padding-bottom: 2rem;
    }

    body > .foot .footer-main .container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding-inline: 1rem;
        padding-bottom: 2.5rem;
    }

    body > .foot .block-footer-business {
        text-align: center;
    }

    body > .foot .block-footer-business .title {
        font-size: 16px;
        line-height: 1.2;
    }

    body > .foot .block-footer-business .description {
        font-size: 14px;
    }

    body > .foot .block-footer-business .content {
        margin-top: .85rem;
        font-size: 14px;
        line-height: 1.45;
    }

    body > .foot .footer-main .container > .block:last-child {
        grid-column: auto;
    }

    body > .foot .footer-menu-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem .85rem;
    }

    body > .foot .footer-menu-column .title {
        font-size: 16px;
        margin-bottom: .35rem;
    }

    body > .foot .block-footer-menu .content a,
    body > .foot .footer-menu-column a {
        font-size: 14px;
        line-height: 1.35;
        padding: .08rem 0;
    }

    body > .foot .footer-main .container > .block:last-child {
        justify-self: center;
    }

    body > .foot .footer-main .container > .block:last-child img {
        width: min(13rem, 70vw);
    }
}

/* === Block: Footer Business === */
.block-footer-business .title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
}
.block-footer-business .description {
    font-size: 14px;
}
.block-footer-business .description p {
    margin: 0;
}

/* === Block: Footer Menu === */
.block-footer-menu .content ul {
    padding-left: 10px;
    margin: 0;
}
.block-footer-menu .content ul a {
    display: block;
    padding: .25rem 0;
}
