
.site-footer {
    font-size: 15px;
    color: white;
    position: relative;
}

.basic-footer__wrapper {
    border-bottom: 10px solid #ffb738;
    position: relative;
    background-color: #1e3c60F0;
}
.basic-footer a {
    color: white;
}
.basic-footer {
    position: relative;
    color: white;
    padding: 15px;
    max-width: var(--page-max-width);
    
    display: grid;
    grid:
        "icon content" min-content
        / min-content minmax(auto, max-content);
    gap: 10px 15px;
    justify-content: center;
    align-content: center;
    margin: 0 auto;

    min-height: 190px;
}
.basic-footer__logo {
    grid-area: icon;
    align-self: center;
}
.basic-footer__content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: center;

    z-index: 1;
}
.basic-footer__content > * {
    margin: 5px;
}

.basic-footer__content > div > p {
    margin: 0;
}

.basic-footer__copyright {
    line-height: 1.6em;
}

@media screen and (max-width: 480px) {
    .basic-footer {
        gap: 10px;
    }
    .basic-footer__logo.basic-footer__logo {
        width: 20.8vw;
        height: 20.8vw;
        background-size: contain;
    }
}

@media screen and (max-width: 330px) {
    .basic-footer {
        display: grid;
        grid:
            "content" max-content
            "icon" min-content
            / 1fr;
        justify-content: center;
    }
    .basic-footer__logo {
        justify-self: center;
    }
}

.site-footer a:hover {
    color: #ffb738;
    text-decoration: underline;
}

.c-three-sect-footer h2 {
    color: #fbb732;
    font-weight: bold;

    font-family: sans-serif;

    font-size: 15px;

    margin-top: 0;
    margin-bottom: 6px;

    text-transform: uppercase;
}
