/* ===== Footer ===== */

.site-footer {
    margin-top: 5rem;
    padding: 2rem 0;

    border-top: 1px solid rgba(0,0,0,.08);
    background: #fff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    color: #666;
    font-size: .9rem;
}

.footer-right {
    display: flex;
    gap: 1.5rem;
}

.footer-right a {
    color: #666;
    text-decoration: none;
    font-size: .9rem;
}

.footer-right a:hover {
    color: #000;
}

@media (max-width: 768px) {

    .footer-container {
        padding: 0 1.5rem;
        flex-direction: column;
        text-align: center;
    }

}