/* Shared Footer Styles */

footer {
    color: #ffffff;
    padding: 3rem 2rem 1.5rem 2rem;
    margin-top: 0;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.footer-column h3 {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: #999;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: #999;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #999;
    font-family: 'Inter', sans-serif;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}

.footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 968px) {
    footer {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        font-size: 1.2rem;
        grid-column: 1 / -1;
    }

    .footer-column h3 {
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }

    .footer-links {
        gap: 0.6rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        font-size: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 1rem 1rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .footer-brand {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .footer-column h3 {
        font-size: 0.6rem;
        margin-bottom: 0.65rem;
    }

    .footer-links {
        gap: 0.55rem;
    }

    .footer-links a {
        font-size: 0.825rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }
}
