.footer-body {
    padding: 4rem 4rem 1rem 4rem;
    background-color: var(--surface);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.footer-logo {
    & i {
        font-size: 2.4rem;
        color: var(--secondary);
    }

    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    font-size: 1.4rem;
    color: var(--muted-foreground);
}

.footer-copyright {
    padding: 1rem;
    font-size: 1.4rem;
    color: var(--muted-foreground);
    display: flex;
    justify-content: center;
}

/* max-width: 784px*/
@media screen and (max-width: 49em) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}