/* RL Category Banner — Full Width */

.rlcb-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-top: -16px; /* compensate .block-category margin-bottom */
    margin-bottom: 25px;
    overflow: visible;
}

.rlcb-banner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .rlcb-banner {
        margin-bottom: 18px;
    }

    .rlcb-banner img {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.12);
    }
}
