    color: var(--rb-text-muted, #6c757d);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }

    .search-hero__form {
        margin-top: 1.5rem;
    }

    .search-hero__input-wrapper {
        display: flex;
        align-items: center;
        background: #fff;
        border: 2px solid var(--rb-border-color, #e9ecef);
        border-radius: 50px;
        padding: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .search-hero__input-wrapper:focus-within {
        border-color: var(--rb-primary, #ff6b00);
        box-shadow: 0 4px 20px rgba(255, 107, 0, 0.15);
    }

    .search-hero__input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        color: var(--rb-text-dark, #1a1a1a);
        outline: none;
    }

    .search-hero__button {
        background: var(--rb-primary, #ff6b00);
        color: #fff;
        border: none;
        padding: 0.8rem 2rem;
        border-radius: 40px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .search-hero__button:hover {
        background: var(--rb-primary-dark, #e65100);
    }

    /* --- Search Results Layout --- */
    .search-results {
        padding: 3rem 0;
        background-color: #f8f9fa;
        min-height: 60vh;
    }

    .search-results__layout {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 2.5rem;
        align-items: start;
    }

    @media (max-width: 991px) {
        .search-results__layout {
            grid-template-columns: 1fr;
        }
    }

    /* --- Contextual Filters --- */
    .search-filters {
        background: #fff;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 2rem;
    }

    .search-filters__title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--rb-border-color, #e9ecef);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .search-filters__field {
        margin-bottom: 1.5rem;
    }

    .search-filters__label {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--rb-text-dark, #1a1a1a);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .search-filters__options {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .search-filters__options--wrap {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    /* Chip Style for Radios/Checkboxes */
    .search-filter-chip {
        display: inline-flex;
        cursor: pointer;
    }

    .search-filter-chip input {
        display: none;
    }

    .search-filter-chip span {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: #f1f3f5;
        border: 1px solid transparent;
        border-radius: 50px;
        font-size: 0.9rem;
        color: var(--rb-text-muted, #6c757d);
        transition: all 0.2s ease;
        font-weight: 500;
    }

    .search-filter-chip:hover span {
        background: #e9ecef;
    }

    .search-filter-chip input:checked+span {
        background: rgba(255, 107, 0, 0.1);
        border-color: var(--rb-primary, #ff6b00);
        color: var(--rb-primary, #ff6b00);
        font-weight: 600;
    }

    .search-filters__select {
        width: 100%;
        padding: 0.6rem;
        border: 1px solid var(--rb-border-color, #e9ecef);
        border-radius: 8px;
        background-color: #fff;
        font-size: 0.95rem;
    }

    .search-filters__actions {
        display: flex;
        gap: 0.5rem;
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 1px solid var(--rb-border-color, #e9ecef);
    }

    .search-filters__actions .btn {
        flex: 1;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .btn--outline {
        background: transparent;
        border: 1px solid var(--rb-border-color, #ced4da);
        color: var(--rb-text-muted, #6c757d);
    }

    .btn--outline:hover {
        background: #f8f9fa;
        color: var(--rb-text-dark, #1a1a1a);
    }

    /* --- Compact List Card --- */
    .events-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .event-list-item {
        display: block;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        border: 1px solid transparent;
    }

    .event-list-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        border-color: rgba(255, 107, 0, 0.2);
    }

    .event-list-item__link {
        display: flex;
        align-items: center;
        padding: 1rem;
        gap: 1.5rem;
        text-decoration: none;
        color: inherit;
    }

    .event-list-item__thumbnail {
        width: 120px;
        height: 80px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        position: relative;
        background: #f1f3f5;
    }

    .event-list-item__thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .event-list-item__badge {
        position: absolute;
        top: 6px;
        left: 6px;
        background: var(--rb-primary, #ff6b00);
        color: #fff;
        font-size: 0.6rem;
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 700;
        text-transform: uppercase;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .event-list-item__content {
        flex: 1;
        min-width: 0;
    }

    .event-list-item__title {
        font-size: 1.15rem;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        color: var(--rb-text-dark, #1a1a1a);
        line-height: 1.3;
    }

    .event-list-item__meta {
        display: flex;
        gap: 1.5rem;
        font-size: 0.9rem;
        color: var(--rb-text-muted, #6c757d);
        align-items: center;
    }

    .event-list-item__meta span {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .event-list-item__action {
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .event-list-item__link {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        .event-list-item__thumbnail {
            width: 100%;
            height: 180px;
        }

        .event-list-item__meta {
            flex-wrap: wrap;
            gap: 1rem;
        }

        .event-list-item__action {
            width: 100%;
            margin-top: 0.5rem;
        }

        .event-list-item__action .btn {
            width: 100%;
            text-align: center;
            justify-content: center;
        }
    }

    /* Empty State */
    .search-results__empty {
        text-align: center;
        padding: 4rem 2rem;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .empty-state__icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        opacity: 0.5;
    }

    .search-results__empty h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--rb-text-dark, #1a1a1a);
    }

    .search-results__empty p {
        color: var(--rb-text-muted, #6c757d);
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.6;
    }