﻿/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: #0F172A;
    color: rgba(255,255,255,0.5);
    padding: 72px 48px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: #fff;
}

    .footer-brand .logo-text em {
        color: var(--m8crc-secondary);
    }

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding-left: 3px;
}

.footer-col nav {
    list-style: none;
    padding-left: 0px;
    margin-left: -15px !important;
}

.footer-col li {
    margin-bottom: 14px;
    font-size: small;
}

.footer-col nav .nav-link {
    margin-bottom: 1px;
    font-size: small;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color .25s;
    text-decoration: none;
}

    .footer-col a:hover {
        color: var(--m8crc-secondary);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 13px;
}

    .footer-bottom a {
        color: rgba(255,255,255,0.5);
        margin-left: 24px;
        transition: color .25s;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: var(--m8crc-secondary);
        }

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 24px 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

        .footer-bottom a {
            margin-left: 12px;
            margin-right: 12px;
        }
}
