﻿.footer-primary {
    padding: 2rem 0;
    background-color: var(--lemon-background-mid);
}

.footer-main {
    width: 100%;
    max-width: var(--lemon-content-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 2rem;
}

@media screen and (max-width: 500px) {
    .footer-main {
        flex-direction: column;
    }
}

.footer-main h2 {
    font-size: 1rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

@media screen and (max-width: 500px) {
    .footer-left {
        align-items: center;
    }
}

.footer-athome {
    display: flex;
    gap: 0.4em;
    align-items: flex-end;
}

    .footer-athome img {
        height: 1.25em;
    }

    .footer-athome p {
        margin: 0;
        padding: 0;
        white-space: nowrap;
        font-size: 0.75em;
    }

.footer-menu {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 1.5em;
    flex-wrap: wrap;
}

    .footer-menu > li {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .footer-menu > li > a {
            text-decoration: none;
            color: var(--lemon-black);
            font-weight: 600;
        }

            .footer-menu > li > a:hover {
                color: var(--lemon-theme-primary);
            }

@media screen and (max-width: 500px) {
    .footer-menu {
        flex-direction: column;
        align-items: center;
    }
}

.footer-secondary {
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em 2em;
    background-color: var(--lemon-background-dark);
    padding: 1em 2.5em;
}

    .footer-secondary a {
        text-decoration: none;
        color: var(--lemon-black);
        display: block;
        white-space: nowrap;
    }

        .footer-secondary a:hover {
            text-decoration: underline;
        }

    .footer-secondary span {
        display: block;
        white-space: nowrap;
    }
