/* .new-footer-wrapper {

    padding: 32px 0px 48px 0px;
    max-width: 100%;
	background-color: var(--real-black) !important;

    ul {
        list-style: none;
        padding: 0;
    }

    a {
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }
}

.new-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--white);

    p,
    li,
    address {
        font-style: normal;
        line-height: 1.5;
    }

    li + li {
        margin-top: 1em;
    }

    a {
        color: #ffffff;
        text-underline-offset: 1.25px;
        font-size: 14px;
    }
}

.new-company-information {
    display: flex;
    gap: 20px;
}

.new-company-name {
    display: block;
    max-width: 250px;
}

.new-company-logo {
    img {
        display: block;
        width: 100%;
        height: auto;
    }
}

.new-copyright-text {
    margin-top: 1em;
    display: flex;
    gap: 10px;
    align-items: center;
}

.new-footer-site-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    margin-top: 0.25em;
    gap: 1.5em;

    a {
        text-decoration: underline;
        text-underline-offset: 1.5px;
        text-decoration-thickness: 0.25px;
    }

    .primary-link {
        font-weight: 700;
    }
}

.new-footer-site-menu a {
    white-space: nowrap;
}

.footer-top-links {
    display: grid;
    grid-column: span 2;

    .links-list {
        display: flex;
        gap: 1em;
    }
}

.footer .white-logo {
    max-width: 200px;
    padding-top: 0;
}

.dark-footer p {
    color: #ffffff;
    font-size: 15px;
}

.phone-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    /* color: red; */
}

.disclaimer {
    max-width: 300px;
}

footer a:active {
    text-decoration: underline dashed;
}

/* Responsive Styles */
@media only screen and (max-width: 960px) {
    .new-footer-site-menu {
        grid-template-columns: 1fr 1fr;
    }

    .new-company-information {
        flex-direction: column;
    }

    .desktop-only {
        display: none;
    }
}

@media only screen and (min-width: 760px) {
    .hide-on-desktop {
        display: none;
    }
}

@media only screen and (max-width: 760px) {
    .new-footer-site-menu a:nth-child(4) {
        margin-top: 1.5em;
    }

    .new-footer-site-menu {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .new-copyright-text {
        flex-direction: column;
        align-items: start;
        margin-bottom: 1em;
    }

    .new-footer-site-menu {
        gap: 1.25em;

        a {
            white-space: wrap;
            line-height: 1.5em;
        }
    }

    .interpunct {
        display: none;
    }
}
 */