.brand-logo-wrap {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    padding: 7px;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-header.scrolled .brand-logo-wrap {
}

.brand-text {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================
   Footer Logo
========================= */

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-box {
    width: 108px;
    height: 108px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    
    padding: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

@media (max-width: 980px) {
    .brand-logo-wrap {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        padding: 6px;
    }

    .footer-logo-box {
        width: 52px;
        height: 52px;
    }

    .footer-logo-text {
        font-size: 21px;
    }
}