
/* ===========================
   Footer / L-0-L Network
=========================== */
.site-foot {
    margin-top: 48px;
    padding: 34px 0 24px;
    background: #202226;
    border-top: 4px solid rgba(255, 255, 255, .08);
    color: #bfc3ca;
}

.site-foot .foot-wrap {
    text-align: center;
}

.foot-network {
    padding-bottom: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.foot-network-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .08em;
}

.foot-network-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.foot-site {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 165px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.foot-site::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.foot-site span {
    color: #aeb3bb;
    font-size: 12px;
    font-weight: 500;
}

.foot-site:hover {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(255, 255, 255, .24);
    transform: translateY(1px);
}

.foot-site-mix::before {
    background: #18c5a6;
}

.foot-site-clip::before {
    background: #ffff00;
}

.foot-site-milky::before {
    background: #80c8fd;
}

.site-foot .foot-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 0 0 18px;
}

.site-foot .foot-links a {
    color: #d8dbe0;
    font-size: 13px;
    text-decoration: none;
}

.site-foot .foot-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-foot .foot-credit {
    margin: 0 0 14px;
    line-height: 1;
}

.site-foot .foot-credit img {
    display: inline-block;
    vertical-align: middle;
}

.site-foot .copy {
    margin: 0;
    color: #8f959e;
    font-size: 12px;
}

@media (max-width: 600px) {
    .site-foot {
        margin-top: 36px;
        padding: 28px 0 20px;
    }

    .foot-network-links {
        gap: 8px;
    }

    .foot-site {
        min-width: 0;
        padding: 9px 13px;
        font-size: 14px;
    }
}