.brand-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    min-height: 44px;
}

.brand-logo-default {
    display: block;
    width: auto;
    height: 44px;
    max-width: min(220px, 42vw);
    object-fit: contain;
}

.site-footer {
    margin-top: auto;
    border-top: 1px solid #e7e5e4;
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 0 22px;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-logo {
    display: block;
    width: auto;
    height: 32px;
    max-width: 150px;
    object-fit: contain;
}

.site-footer-inner p {
    margin: 0;
    color: #57534e;
    font-size: 0.875rem;
    font-weight: 600;
}

html.dark .site-footer {
    border-color: #334155;
    background: #111827;
}

html.dark .site-footer-inner p {
    color: #cbd5e1;
}

html.dark .footer-logo {
    border-radius: 4px;
    background: #ffffff;
    padding: 3px 6px;
}

@media (max-width: 720px) {
    .brand-logo {
        min-height: 32px;
    }

    .brand-logo-default {
        height: 32px;
        max-width: 145px;
    }

    .site-footer-inner {
        gap: 8px;
        padding: 0 16px;
    }

    .footer-logo {
        height: 26px;
        max-width: 120px;
    }

    .site-footer-inner p {
        width: 100%;
        font-size: 0.8125rem;
    }
}
