            .mansion7-blog-container {
                padding: 20px 20px;
                background-color: #000000;
                color: #D4AF37;
                width: 100%;
                box-sizing: border-box;
                position: relative;
                margin-top: -40px;
            }
            
            .mansion7-blog-container .blog-heading {
                text-align: center;
                margin-bottom: 40px;
            }
            
            .mansion7-blog-container .blog-heading h2 {
                font-size: 2.5rem;
                margin-bottom: 15px;
                color: #D4AF37;
                font-weight: normal;
            }
            
            .blog-carousel-container {
                position: relative;
                display: flex;
                align-items: center;
                margin-bottom: 30px;
            }
            
            .carousel-btn {
                background-color: rgba(212, 175, 55, 0.1);
                border: 1px solid #D4AF37;
                color: #D4AF37;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                z-index: 10;
                flex-shrink: 0;
            }
            
            .carousel-btn:hover {
                background-color: #D4AF37;
                color: #000000;
                transform: scale(1.1);
            }
            
            .carousel-btn:disabled {
                opacity: 0.3;
                cursor: not-allowed;
                transform: none;
            }
            
            .carousel-btn:disabled:hover {
                background-color: rgba(212, 175, 55, 0.1);
                color: #D4AF37;
            }
            
            .carousel-btn-prev {
                margin-right: 20px;
            }
            
            .carousel-btn-next {
                margin-left: 20px;
            }
            
            .blog-carousel-wrapper {
                flex: 1;
                overflow: hidden;
                border-radius: 10px;
            }
            
            .blog-carousel {
                display: flex;
                transition: transform 0.5s ease-in-out;
                gap: 30px;
            }
            
            /* Mobile: Stack vertically instead of carousel */
            @media (max-width: 640px) {
                .blog-carousel {
                    flex-direction: column;
                    transform: none !important;
                }
                
                .blog-carousel-wrapper {
                    overflow: visible;
                }
            }
            
            .blog-card {
                background-color: #800000;
                /* border: 1px solid rgba(212, 175, 55, 0.3); */
                border-radius: 20px;
                overflow: hidden;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                flex: 0 0 calc(33.333% - 20px);
                height: 400px;
                min-width: 300px;
            }
            
            .blog-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
                background-color: #990000;
            }
            
            .blog-card-link {
                display: flex;
                flex-direction: column;
                height: 100%;
                text-decoration: none;
                color: inherit;
                cursor: pointer;
            }
            
            .blog-image {
                width: 100%;
                height: 200px;
                overflow: hidden;
                position: relative;
            }
            
            .blog-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }
            
            .blog-card:hover .blog-image img {
                transform: scale(1.05);
            }
            
            .blog-content {
                padding: 20px;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
            }
            
            .blog-date {
                font-size: 0.9rem;
                color: #fff;
                opacity: 0.7;
                margin-bottom: 10px;
            }
            
            .blog-title {
                font-size: 1.4rem;
                color: #D4AF37;
                margin-bottom: 15px;
                line-height: 1.3;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .blog-description {
                font-size: 1rem;
                color: #fff;
                opacity: 0.8;
                margin-bottom: 20px;
                line-height: 1.5;
                flex-grow: 1;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .carousel-indicators {
                display: flex;
                justify-content: center;
                gap: 10px;
                margin-bottom: 30px;
            }
            
            .indicator {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: rgba(212, 175, 55, 0.3);
                cursor: pointer;
                transition: background-color 0.3s ease;
            }
            
            .indicator.active {
                background-color: #D4AF37;
            }
            
            .blog-footer {
                text-align: center;
                margin-top: 20px;
            }
            
            .view-all-btn {
                display: inline-block;
                padding: 12px 30px;
                margin-bottom: 10px;
                background-color: transparent;
                color: #D4AF37;
                border: 1px solid #D4AF37;
                border-radius: 30px;
                text-decoration: none;
                font-size: 1rem;
                transition: background-color 0.3s ease, color 0.3s ease;
            }
            
            .view-all-btn:hover {
                background-color: #D4AF37;
                color: #000000;
            }
            
            .blog-loading {
                padding: 60px;
                text-align: center;
                color: #D4AF37;
                font-style: italic;
                width: 100%;
            }
            
            /* Responsive design */
            @media (max-width: 992px) {
                .blog-card {
                    flex: 0 0 calc(50% - 15px);
                    min-width: 280px;
                }
                
                .carousel-btn {
                    width: 40px;
                    height: 40px;
                }
                
                .carousel-btn-prev {
                    margin-right: 15px;
                }
                
                .carousel-btn-next {
                    margin-left: 15px;
                }
            }
            
            @media (max-width: 640px) {
                .blog-card {
                    flex: 0 0 auto;
                    min-width: 100%;
                    width: 100%;
                }
                
                .mansion7-blog-container .blog-heading h2 {
                    font-size: 2rem;
                }
                
                .mansion7-blog-container {
                    padding: 20px 15px;
                }
                
                .carousel-btn {
                    display: none; /* Hide carousel buttons on mobile */
                }
                
                .carousel-btn-prev,
                .carousel-btn-next {
                    display: none;
                }
                
                .blog-carousel-container {
                    display: block; /* Remove flex layout on mobile */
                }
                
                .carousel-indicators {
                    display: none; /* Hide indicators on mobile */
                }
            }