
.ecipp-site-footer {
    display: grid;
    grid-template-areas: 
        "logo nav"
        "copy copy";
    grid-template-columns: 1fr 4fr;
    gap: 1rem;
}

.ecipp-site-footer__logo {
    grid-area: logo;
    width: 85px;
}

.ecipp-site-footer__logo img {
    width: 100%;
}

.ecipp-site-footer__nav {
    grid-area: nav;
    display: flex;
    gap: 3rem;
}

.ecipp-site-footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.ecipp-site-footer__nav a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}

.ecipp-site-footer__copyright {
    grid-area: copy;
    text-align: center;
    padding: 1rem;
}