.public-footer-extra {
    position: relative;
    min-height: 70px;
    grid-template-rows: 52px 18px;
}

.public-footer-brand-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 8px;
    min-width: 0;
    height: 52px;
}

.public-footer-brand-copy {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-items: center;
    min-width: 0;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.2;
}

.public-footer-brand-copy-line {
    min-width: 0;
    min-height: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-footer-logo-cell {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    min-width: 0;
    height: 52px;
    padding-right: 8px;
    pointer-events: none;
}

.public-footer-logo {
    display: block;
    width: 44px;
    height: 44px;
    overflow: hidden;
    background: transparent;
    cursor: default;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}

.public-footer-logo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

@media (max-width: 640px) {
    .public-footer-extra {
        min-height: 62px;
        grid-template-rows: 44px 18px;
    }

    .public-footer-brand-row {
        grid-template-columns: minmax(0, 1fr) 44px;
        height: 44px;
    }

    .public-footer-logo-cell {
        height: 44px;
    }

    .public-footer-logo {
        width: 36px;
        height: 36px;
    }
}
