/* =========================================================
   FOOTER
========================================================= */
.layout-footer {
    padding: 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);

    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
}

.layout-footer a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    transition: opacity 150ms ease, border-color 150ms ease;
}

.layout-footer a:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.60);
}