    .blog-container3 {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        max-width: 1200px;
        width: 100%;
        margin: 20px auto;
        padding: 20px;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
    }

    .main-content {
        flex: 3;
        margin-right: 20px;
    }

    .sidebar-right {
        flex: 1;
        min-width: 250px;
        background-color: #f9f9f9;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    h1, h2 {
        text-align: center;
        color: #333;
    }

    .meta {
        display: flex;
        justify-content: space-between;
        color: #777;
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .meta span {
        display: inline-block;
    }

    .blog-content {
        line-height: 1.6;
        color: #444;
        font-size: 1.1em;
        overflow: hidden;
    }

    .active_on {
        color: #999;
        font-size: 0.8em;
        margin-top: 20px;
    }

    .author {
        text-align: center;
    }

    .author img {
        border-radius: 50%;
        width: 100px;
        height: 100px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .author h2 {
        margin: 10px 0;
        font-size: 1.2em;
        color: #333;
    }

    .author p {
        font-family: Arial, sans-serif;
        font-size: 12px;
        color: #333;
        line-height: 1.7;
        text-align: left;
    }

    .about-author {
        background-color: #f4f4f4;
        padding: 15px;
        margin-top: 30px;
    }

    .responsive-image3 {
        width: 250px; /* Default width */
        height: auto;
        margin: 0 auto 20px; /* Center the image horizontally */
        display: block;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        .main-content {
            margin-right: 0;
            margin-bottom: 20px;
            flex: 1 0 100%;
        }

        .sidebar-right {
            flex: 1 0 100%;
        }

        .responsive-image3 {
            width: 80%; /* Make the image full width on smaller screens */
        }
    }
    
    .share-container {
        text-align: center; /* Center the text and icons */
        margin-bottom: 10px; /* Space between "Share it" and icons */
    }

    .share-text {
        font-size: 20px; /* Adjust font size */
        font-weight: bold; /* Make it bold for emphasis */
        margin-bottom: 2px; /* Space below the "Share it" text */
        margin-top: 20px; /* Space below the "Share it" text */
    }

  .footer-social-links li {
    display: inline-block;
    margin: 0 10px; /* Spacing between the icons */
    font-size: 30px;
    color: #333 !important; /* Apply color to the icon */
}

.footer-social-links li a i {
    color: #333 !important; /* Apply color to the icon */
}

