footer {
    padding: 1rem 1rem 1rem;
    display: flex;
    justify-content: center;
}

footer .some-links-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-weight: 400;
}

.footer-logo {
    max-width: 5.25rem;
    align-self: start;
}

footer nav {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    width: min(100%, 500px);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.newsletter-form {
    border: 1px solid var(--dark-blue-60);
    border-radius: 5px;
    padding: .5rem;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.newsletter-form object {
    width: 1.2rem;
}

.newsletter-form input {
    border: none;
    min-width: 0;
}

.newsletter-form button {
    background-color: var(--orange-100);
    border: none;
    padding: .5rem 1rem;
    color: var(--white);
    border-radius: 5px;
}

@media (min-width: 1024px) {
    footer nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .5rem;
        max-width: 1600px;
        width: 100%;
    }

    footer .divider {
        margin: 1.25rem 0;
    }

    footer .some-links-container {
        justify-self: start;
        text-align: start;
        gap: .5rem;
    }

}