
    .aarti-cms-wrapper {
        font-family: 'Inter', -apple-system, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    .aarti-hidden { display: none !important; }

    /* --- GRID CONTAINER --- */
    .aarti-listing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* --- CARD STYLES --- */
    .aarti-blog-card {
        background: #ffffff;
        border: 1px solid #eee;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }
    .aarti-blog-card:hover { transform: translateY(-5px); }

    .aarti-card-image { width: 100%; height: 220px; }
    .aarti-card-image img { width: 100%; height: 100%; object-fit: cover; }

    .aarti-card-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .aarti-tag {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #FF5722;
        margin-bottom: 10px;
    }

    .aarti-card-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
        font-weight: 700;
        color: #222;
        line-height: 1.4;
    }

    .aarti-card-excerpt {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    /* BUTTON STYLE */
    .aarti-btn {
        background: #FF5722;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        align-self: flex-start;
        display: inline-block;
    }
    .aarti-btn:hover { background: #e64a19; }

    /* --- DETAIL VIEW STYLES --- */
    .aarti-detail-view { background: #fff; animation: fadeIn 0.5s; }
    .aarti-hero { width: 100%; height: 400px; margin-bottom: 40px; }
    .aarti-hero img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
    
    .aarti-content-max { max-width: 800px; margin: 0 auto; }
    
    .aarti-content-max h3 { margin-top: 30px; margin-bottom: 15px; font-size: 1.5rem; color: #222; }
    .aarti-content-max p { margin-bottom: 20px; font-size: 1.05rem; }
    .aarti-content-max ul { margin-bottom: 20px; padding-left: 20px; }
    .aarti-content-max li { margin-bottom: 10px; }

    .aarti-back-btn { display: inline-block; margin-bottom: 20px; cursor: pointer; color: #666; font-weight: 600; border-bottom: 1px solid transparent; }
    .aarti-back-btn:hover { color: #FF5722; border-color: #FF5722; }

    /* Review Box */
    .aarti-review-box {
        background-color: #fff8e1;
        border-left: 5px solid #ffc107;
        padding: 25px;
        margin: 30px 0;
        font-style: italic;
        border-radius: 4px;
    }

    /* Image Grid */
    .aarti-image-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    .aarti-image-grid img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
    }

    /* Contact Box */
    .aarti-contact-box {
        background: #f1f8e9;
        padding: 30px;
        border-radius: 8px;
        text-align: center;
        margin-top: 40px;
        border: 1px solid #c5e1a5;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 992px) { .aarti-listing-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { 
        .aarti-listing-grid { grid-template-columns: 1fr; } 
        .aarti-hero { height: 250px; } 
        .aarti-image-grid { grid-template-columns: 1fr; }
    }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
