.site-footer{
    padding:10px 28px;
    background:rgba(5,5,5,.62);
    border-top:1px solid rgba(216,165,38,.25);
    backdrop-filter:blur(16px);
}

.footer-inner{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-areas:
        "meta links"
        "copy copy";
    align-items:center;
    gap:6px 20px;
}

.footer-meta{
    grid-area:meta;
    display:flex;
    justify-content:flex-start;
    gap:18px;
}

.footer-meta span{
    color:rgba(255,255,255,.45);
    font-size:12px;
    font-weight:800;
}

.footer-meta strong{
    color:#fff;
    font-weight:900;
}

.footer-links{
    grid-area:links;
    display:flex;
    justify-content:flex-end;
    gap:24px;
}

.footer-links a{
    color:rgba(255,255,255,.84);
    font-size:14px;
    font-weight:900;
    transition:color .25s ease, text-shadow .25s ease;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-links a:active{
    color:#ffd36a;
    text-shadow:0 0 12px rgba(255,211,106,.35);
}

.footer-copy{
    grid-area:copy;
    margin:0;
    text-align:center;
    color:rgba(255,255,255,.46);
    font-size:12px;
    font-weight:800;
}

@media(max-width:700px){
    .site-footer{
        padding:12px;
    }

    .footer-inner{
        display:flex;
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .footer-meta,
    .footer-links{
        justify-content:center;
        flex-wrap:wrap;
    }
}