.company-branding {
    display: flex;
    align-items: center;
    gap: 10px;

    height: 100%;

    flex-shrink: 0;
    white-space: nowrap;
}

.company-branding-logo {
    height: 32px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.company-branding-name {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}


/*
 * Footer
 */
.company-branding-footer {
    width: 100%;
    padding: 14px 20px;

    text-align: center;

    font-size: 13px;

    color: #6b7280;
    background: #ffffff;

    border-top: 1px solid #e5e7eb;

    box-sizing: border-box;
}


/*
 * Dark mode
 */
[data-mantine-color-scheme="dark"] .company-branding-footer {
    color: #909296;
    background: #1a1b1e;
    border-top-color: #373a40;
}


/*
 * Mobile
 */
@media (max-width: 768px) {

    .company-branding-name {
        display: none;
    }

    .company-branding-logo {
        height: 28px;
        max-width: 140px;
    }
}
