/* ---------- Cards ---------- */
.rsg-blog-card {
        background: #E32329;
        color: #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-card-content {
        padding: 1.5rem;
    }
    .rsg-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0 0 .75rem;
        line-height: 1.4;
        color: #fff;
    }
    .rsg-card-desc {
        font-size: .95rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .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;
        }
    }
    
