.lfx-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .75);
    padding: 80px 0 0;
}

.lfx-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 64px;
}

.lfx-footer-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.lfx-footer-col h4 {
    color: var(--white);
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.lfx-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.lfx-footer-col a {
    transition: color var(--transition);
}

.lfx-footer-col a:hover {
    color: var(--primary);
}

.lfx-footer-cta {
    margin-top: .5rem;
    border-color: rgba(255, 255, 255, .3);
    color: var(--white);
    display: inline-flex;
}

.lfx-footer-cta:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.lfx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 24px 0;
}

.lfx-footer-bottom-inner {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 900px) {
    .lfx-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lfx-footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .lfx-footer-grid {
        grid-template-columns: 1fr;
    }
}
