
/*********** BLOG ***********/
        body {
           
            margin: 0;
            padding: 0;
            display: flex;
            min-height: 100vh;
            color: #000000;
            line-height: 1.3;
}
        .blogsidebar {
            width: 15.8rem;
            background: #efefef;
            padding: 0.9rem;
            border-right: 0.1rem solid #000000;
            overflow-y: auto;
        }

        .blogsidebar-header {
            margin-bottom: 0.5rem;
            padding-bottom: 0.2rem;
            border-bottom: 0.2rem solid #ddd;
        }

        .blogsidebar p{
            font-size: 1rem;
            margin-top: auto;
            margin-bottom: 0.7rem;
        }


        /* Filter Dropdown */
        .filter-dropdown {
            margin-bottom: 0.1rem;
        }

        .filter-dropdown select {
            padding: 0.3rem 0.15rem;
            border: 0.2rem solid #ddd;
            border-radius: 0.1rem;
            background-color: white;
            font-size: 0.78rem;
            cursor: pointer;
            width: 55%;
            transition: all 0.2s;
        }

        .filter-dropdown select:hover {
            border-color: #bbb;
        }

        .filter-dropdown select:focus {
            outline: none;
            border-color: #000000;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
        }

        /* Post List */
        .post-list {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .post-item {
            padding: 0.5rem 0.7rem;
            border-radius: 0.3rem;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .post-item:hover {
            background: #ececec;
        }

        .post-item.active {
            background: #838383;
        }

        .post-title {
            font-weight: 600;
            margin-bottom: -0.1rem;
            color: #0b0b0b;
        }
        .post-item.active .post-title {
            color: #ffffff;
            font-weight: 700;
        }
        

        /* Main Content */
        .blogcontent {
            flex: 1;
            padding: 1%;
            max-width: 100%;
            background: white;
        }
        .blogcontent img{
            width: 15rem;
            max-height: 26rem;
            object-fit: cover;
            margin-bottom: 0.5rem;
        }

        .post-content {
            display: none;
        }

        .post-content.active {
            display: block;
            animation: fadeIn 0.2s;
        }

        .blogcontent h2 {
            font-size: 1.9rem;
            font-weight: 600;
            margin-top: 0;
            color: #b43e3e;
            margin-bottom: 0.3rem;
            text-decoration-style: none;
        }

        .content-date {
            color: #7f8c8d;
            font-size: 0.8rem;
            display: block;
            padding-bottom: 0.5rem;
            border-bottom: 0.2rem solid #eee;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
