/* Mobile header: logo + language switcher; strip image is the bottom line only */

.mobile-header-bb2020 {
    background: #fff;
    padding: 12px 0 0;
    border-bottom: none; /* strip image is the only bottom line */
}

.mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-header-logo {
    display: block;
    flex-shrink: 0;
}

.mobile-header-logo img {
    display: block;
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.mobile-header-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mobile-header-lang .language-link {
    font-size: 14px;
    font-weight: 500;
    color: #003b51;
    text-decoration: none;
}

.mobile-header-lang .language-link:hover {
    text-decoration: underline;
}

.mobile-header-lang .language-link.is-active {
    font-weight: 700;
    color: #002a3a;
}

.mobile-header-lang-sep {
    color: #999;
    font-size: 12px;
    user-select: none;
}

/* Strip = bottom line of header: full width, padding above */
.mobile-header-bb2020 .mobile-header-strip {
    display: block;
    width: 100%;
    height: auto;
    margin: 14px 0 0;
    padding: 0;
    vertical-align: top;
}

/* RTL: logo on right, language on left */
[dir="rtl"] .mobile-header-inner {
    flex-direction: row-reverse;
}
