/* =================================================================
   Way2Rentals Section Headers
   Blue header bars for grid/list toggles
   ================================================================= */

.w2r-section-header {
    background: var(--color-btn-selected-bg);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: var(--shadow-main);
}

.w2r-section-header:first-of-type {
    margin-top: 0;
}

.w2r-section-header h4 {
    color: var(--color-text-header);
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile (--breakpoint-md) */
@media (max-width: 768px) {
    .w2r-section-header {
        padding: 12px 20px;
        justify-content: center;
    }

    .w2r-section-header h4 {
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .w2r-section-header {
        padding: 8px 12px;
    }

    .w2r-section-header h4 {
        font-size: 14px;
    }
}