/* ============================================================
   REISENBOOKING SHARED BRANDING
   ============================================================ */

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.brand-logo img {
    display: block;
    width: auto;
    height: 54px;
    max-width: 260px;
    object-fit: contain;
}

.site-brand-header {
    background: #fff;
    border-bottom: 1px solid #e5e9ef;
}

.site-brand-header-inner {
    width: min(calc(100% - 40px), 1200px);
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-brand-action {
    border: 0;
    background: transparent;
    color: #4b5563;
    padding: 8px 10px;
    font-size: 13px;
    cursor: pointer;
}

.gallery-brand-logo {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 8px;
    background: #fff;
}

.gallery-brand-logo img {
    display: block;
    width: auto;
    height: 34px;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 700px) {
    .brand-logo img {
        height: 44px;
        max-width: 210px;
    }

    .site-brand-header-inner {
        width: min(calc(100% - 24px), 1200px);
        min-height: 66px;
    }

    .site-brand-header-actions .site-brand-action:not(:last-child) {
        display: none;
    }

    .gallery-brand-logo img {
        height: 29px;
        max-width: 150px;
    }
}
