.site-footer{
    display: flex;
    background-color: #000000;
    color: var(--wc-primary-text);
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
}
#footer-content{
    display: grid;
    justify-content: space-around;
    gap: 16px;
    color: var(--wc-primary-text);
    padding: 40px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}
.site-footer-sub{
    display: flex;
    background-color: #131313;
    color: var(--wc-primary-text);
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 1.1em;
}
.site-footer-link{
    list-style: none;
    padding: 3px 0px;
}
.site-footer-link:hover a{
    color: var(--wc-red) !important;
}
.site-footer-link a{
    color: var(--wc-primary-text);
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.site-footer-email{
    color: var(--wc-primary-text);
    text-decoration: none;
    padding-bottom: 8px;
    display: block;
    overflow-wrap: anywhere;
}

.site-footer-col{
    min-width: 0;
}

.site-footer-col p,
.site-footer-col a{
    overflow-wrap: anywhere;
}

@media (max-width: 980px){
    #footer-content{
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 24px 16px;
    }

    .site-footer-col{
        text-align: left;
    }

    .site-footer-col img{
        max-width: 220px !important;
    }

    .site-footer-sub{
        font-size: 0.95em;
        text-align: center;
        padding: 14px 12px;
    }
}