/* MOBILIFE header trademark logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo .logo-text {
    display: inline-block;
    color: var(--primary);
    font-weight: 900;
    font-size: 23px;
    line-height: 1;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-mark.logo-mark-image {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 2px;
    border-radius: 10px;
    border: 1px solid rgba(31, 91, 69, .16);
    background: #fff;
    color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none;
}

.logo-mark.logo-mark-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
}

@media (max-width: 640px) {
    .logo {
        gap: 8px;
    }

    .logo .logo-text {
        font-size: 20px;
    }

    .logo-mark.logo-mark-image {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
}
