        body {

            background-color: #f4f4f4;
        }

        .container {
            padding: 20px 0px;
            display: flex;
        }

        .blog-post {
            /* flex: 0 0 70%; */
            width: 100%;
            margin-right: 20px;
            background-color: #fff;
            padding: 15px;
            box-sizing: border-box;
            margin-bottom: 10px;

        }

        .blog-post-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .profile-image {
            width: 50px;
            padding: 2px;
            border: 2px solid #fff;
            border-radius: 50%;
            margin-right: 10px;
            box-sizing: border-box;
        }

        .post-meta {
            color: #333;
        }

        .post-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .post-content {
            color: #555;

            font-size: var(--p-small);

            line-height: 1.6;
        }

        .post-content h1,
        .post-content h2,
        .post-content h3,
        .post-content h4,
        .post-content h5,
        .post-content h6,
        .post-content b {
            color: #000;
        }


        .post-content ul,
        .post-content ol {
            padding-left: 40px;
            /* list-style: none; */
        }

        .post-content #youtube_video {
            margin: 0 auto;
            text-align: center;
        }

        .post-content #youtube_video iframe {
            max-width: 100%;
        }


        .post-content video {
            border: 2px solid #f2f2f2;
        }

        .post-content img {
            width: 75%;
            border: 2px solid #f2f2f2;
            margin: 0 auto;
        }

        .tags {
            margin-top: 20px;
        }

        .tag {
            display: inline-block;
            background-color: #eee;
            padding: 5px 10px;
            margin-right: 5px;
            border-radius: 3px;
            text-decoration: none;
            color: #555;
        }

        .preview_box {
            width: 100%;
            background-color: #f2f2f2a3;
            height: 100vh;
            z-index: 1000;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: none;
            justify-items: center;
            align-content: center;
        }

        .preview_box img,
        .preview_box video {
            width: 70%;
        }



        .sidebar {
            flex: 0 0 30%;
            background-color: #fff;
            padding: 15px;
            box-sizing: border-box;
            height: fit-content;
            position: sticky;
            top: 10%;
        }

        .sidebar-title {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .recent-posts {
            margin-bottom: 20px;
        }

        .recent-post {
            margin-bottom: 15px;
        }

        .recent-post-title {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .recent-post-date {
            color: #777;
        }

        .sidebar-tags {
            margin-bottom: 20px;
        }

        .sidebar-tag {
            display: inline-block;
            background-color: #eee;
            padding: 5px 10px;
            margin-right: 5px;
            margin-bottom: 5px;
            border-radius: 3px;
            text-decoration: none;
            color: #555;
        }

        /* Hover effects */
        .tag:hover,
        .sidebar-tag:hover {
            background-color: #ddd;
        }

        /* Responsive adjustments */
        @media screen and (max-width: 750px) {
            body .wrapper {
                padding: 0 20px;
            }

            .container {
                flex-direction: column;
            }

            .blog-post {
                margin-right: 0px;
            }
        }

        @media screen and (max-width: 480px) {
            body {
                background-color: #fff;
            }

            .profile-image {
                width: 35px;
            }

            .post-meta {
                font-size: var(--p-tiny);
            }

            .post-content .youtube_video {
                margin: 0 auto;
                width: 100%;
            }

            .blog-post {
                margin-right: 0px;
                padding: 0px;
            }

            .preview_box img,
            .preview_box video {
                width: 95%;
            }

            .post-content {
                font-size: var(--p-small);

            }

            .post-content img {
                width: 100%;
            }
        }