/* Shared avicon footer (scoped) */
.site-footer {
    background-color: #071526;
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.site-footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.site-footer .footer-logo {
    display: inline-block;
    text-decoration: none;
}

.site-footer .footer-logo img,
.site-footer .footer-img {
    height: 32px;
    width: auto;
}

.site-footer .footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 300px;
}

.site-footer .footer-links h4 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem;
}

.site-footer .footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer .footer-links a {
    color: #ffffff;
    font-size: 0.875rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.site-footer .footer-links a:hover {
    opacity: 0.7;
    color: #ffffff;
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.site-footer .footer-bottom p {
    margin: 0;
    color: inherit;
    font-size: inherit;
}

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

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .site-footer .container {
        padding: 0 24px;
    }

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

    .site-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
