
    .hero-section {
        position: relative;
        height: 40vh;
        overflow: hidden;
    }
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.4);
        display: flex;
        align-items: center;
    }
    .hero-overlay h1 {
        color: #fff;
        font-size: 3rem;
        font-weight: 700;
    }

    /* ---------- Filter Bar ---------- */
    .rsg-filter-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
        flex-wrap: wrap;
        gap: 1rem;
        border-bottom: 1px solid #eee;
    }
    .rsg-filter-dropdown {
        position: relative;
    }
    .rsg-dropdown-btn {
        background: #fff;
        border: 1px solid #ddd;
        padding: .75rem 1rem;
        border-radius: 8px;
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: .5rem;
        min-width: 200px;
    }
    .rsg-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-top: .5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,.1);
        z-index: 10;
        display: none;
        max-height: 300px;
        overflow-y: auto;
    }
    .rsg-dropdown-menu.show {
        display: block;
    }
    .rsg-dropdown-item {
        padding: .75rem 1rem;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        font-size: .95rem;
    }
    .rsg-dropdown-item:hover,
    .rsg-dropdown-item.active {
        background: #f5f5f5;
        font-weight: 600;
    }
    .rsg-search-wrapper {
        position: relative;
        max-width: 300px;
        width: 100%;
    }
    .rsg-search-input {
        width: 100%;
        padding: .75rem 1rem .75rem 2.5rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
    }
    .rsg-search-icon {
        position: absolute;
        left: .75rem;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }
    .rsg-reset-filters {
        color: #000;
        text-decoration: none;
        font-size: 1rem;
        cursor: pointer;
    }
    .rsg-reset-filters:hover {
        text-decoration: underline;
    }

    /* ---------- Section Headings ---------- */
    .rsg-section-title {
        font-size: 2rem;
        font-weight: 700;
        color: #000;
        margin: 3rem 0 1rem;
    }
    .rsg-view-all-btn {
        background: #E32329;
        color: #fff;
        font-weight: 700;
        padding: .5rem 1.5rem;
        border-radius: 50px;
        font-size: .9rem;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 2rem;
    }

    /* ---------- Cards Grid ---------- */
    .rsg-cards-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }
    @media(max-width:992px) {
        .rsg-cards-grid {
            grid-template-columns: repeat(2,1fr);
        }
    }
    @media(max-width:600px) {
        .rsg-cards-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ---------- Card ---------- */
    .rsg-blog-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
        transition: transform .3s, box-shadow .3s;
        display: block;
        text-decoration: none;
        color: inherit;
    }
    .rsg-blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0,0,0,.15);
    }
    .rsg-card-image-wrapper {
        position: relative;
        height: 220px;
        overflow: hidden;
    }
    .rsg-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s;
    }
    .rsg-blog-card:hover .rsg-card-image {
        transform: scale(1.05);
    }
    .rsg-date-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: #000;
        color: #fff;
        padding: .35rem .75rem;
        border-radius: 6px;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: .5px;
    }
    .rsg-category-tag {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        background: #E32329;
        color: #fff;
        padding: .35rem .75rem;
        border-radius: 6px;
        font-size: .8rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    .rsg-card-content {
        padding: 1.5rem;
    }
    .rsg-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0 0 .75rem;
        line-height: 1.4;
        color: #000;
    }
    .rsg-card-desc {
        font-size: .95rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .rsg-read-more {
        color: #000;
        font-weight: 600;
        font-size: .9rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: .5rem;
    }
    .rsg-read-more i {
        font-size: 1.1rem;
    }

    /* ---------- Show More ---------- */
    .rsg-show-more-wrapper {
        text-align: center;
        margin: 3rem 0;
    }
    .rsg-show-more-btn {
        background: transparent;
        border: 2px solid #E32329;
        color: #000;
        padding: .75rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: all .3s;
    }
    .rsg-show-more-btn:hover {
        background: #E32329;
    }

    /* Hide extra cards */
    .rsg-card-hidden {
        display: none;
    }