/* Desktop Footer Styles */
@media (min-width: 1024px) {
    .site-footer {
        padding: 2rem 2rem 1rem;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 1.5rem;
        align-items: start;
    }

    /* Column 1: Brand */
    .footer-brand {
        padding-right: 2rem;
    }

    /* Column 4: Newsletter & Contact - Stack them or separate? */
    /* Let's keep them in the last column */
    
    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        border-radius: 0.5rem 0 0 0.5rem;
        width: 100%;
    }

    .newsletter-form button {
        border-radius: 0 0.5rem 0.5rem 0;
        white-space: nowrap;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .separator {
        display: inline-block;
        margin: 0 0.5rem;
        color: var(--border-color);
    }
}

/* Tablet / Small Desktop */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}
