 /* HERO */
        .blog-hero-new {
            padding: 60px 0 30px;
            background: #f8f9fb;
            border-bottom: 1px solid #eee;
        }

        .blog-hero-new h1 {
            font-size: 32px;
            font-weight: 700;
            color: #222;
        }

        .blog-date {
            color: #888;
            font-size: 14px;
        }

        /* MAIN */
        .blog-main {
            padding: 40px 0;
        }

        /* BLOG BOX */
        .blog-box {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        /* IMAGE FIX */
        .blog-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-bottom: 1px solid #eee;
        }

        /* CONTENT */
        .blog-text {
            padding: 25px;
            line-height: 1.8;
            color: #444;
        }

        /* SIDEBAR */
        .blog-sidebar {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .blog-sidebar h5 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* LATEST */
        .latest-item {
            margin-bottom: 12px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .latest-item a {
            text-decoration: none;
            color: #222;
        }

        .latest-item h6 {
            font-size: 14px;
            margin: 0;
        }

        .latest-item span {
            font-size: 12px;
            color: #999;
        }

        .latest-item:hover h6 {
            color: #ff6600;
        }
        
        .content-wrapper {
            max-height: 300px;
            overflow: hidden;
            text-align:justify;
            /*position: relative;*/
            /*transition: max-height 0.4s ease;*/
        }
        
        /* Expanded */
        .content-wrapper.expanded {
            max-height: none;
        }
        
        /* Optional: fade effect */
        .content-wrapper::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0px;
            background: linear-gradient(to bottom, transparent, #fff);
        }
        
        /* Remove fade when expanded */
        .content-wrapper.expanded::after {
            display: none;
        }
        
        /* Button styling */
        .read-more-btn {
            display: inline-block;
            margin-top: 10px;
            color: #ff6600;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
        }