/* Floating sidebar strip (right side) — shown when sidebar banners are present */
.banner-sidebar-strip {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 6px;
    max-width: 130px;
    border-radius: 8px 0 0 8px;
    pointer-events: auto;
}

.banner-sidebar-strip .musenest-banner {
    justify-content: center;
}

.banner-sidebar-strip img {
    max-width: 120px;
    height: auto;
}

/* Hide sidebar strip on small screens where it would overlap content */
@media (max-width: 768px) {
    .banner-sidebar-strip {
        display: none;
    }
}

/* Banner container — flex row so multiple banners sit side by side */
.musenest-banner-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.musenest-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.musenest-banner img {
    max-width: 100%;
    height: auto;
    display: block;
}
