/* Compact shared footer ---------------------------------------------------- */
.site-footer {
    display: block;
    width: 100%;
    padding: 16px max(20px, calc((100vw - 1480px) / 2 + 28px));
    border-top: 1px solid rgba(255, 255, 255, .075);
    background: #07070a;
    color: rgba(255, 255, 255, .34);
    font-family: var(--font-display, "Rajdhani", sans-serif);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin: 0 auto;
}

.site-footer p {
    flex: 0 0 auto;
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
}

.site-footer .site-footer__legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0;
    min-width: 0;
}

.site-footer .site-footer__legal a {
    color: rgba(255, 255, 255, .42);
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease;
}

.site-footer .site-footer__legal a + a {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.site-footer .site-footer__legal a:hover,
.site-footer .site-footer__legal a:focus-visible {
    color: #fff;
    outline: 0;
}

@media (max-width: 640px) {
    .site-footer {
        padding: 11px 14px 12px;
        font-size: .5rem;
        letter-spacing: .08em;
        text-align: center;
    }

    .site-footer__inner {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .site-footer .site-footer__legal {
        justify-content: center;
        width: 100%;
    }

    .site-footer .site-footer__legal a + a {
        margin-left: 8px;
        padding-left: 8px;
    }
}

@media (max-width: 340px) {
    .site-footer {
        padding-inline: 8px;
        font-size: .46rem;
        letter-spacing: .055em;
    }

    .site-footer .site-footer__legal a + a {
        margin-left: 6px;
        padding-left: 6px;
    }
}
