.blog-container {
    
    width: 83%;
    max-width: 1133px;
    margin: 7rem auto 3rem auto;
    /* Adjusted top margin for spacing */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-item {
    border: 1px solid #0099cc;
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-item:hover {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.blog-item h3 {
    color: var(--text-color);
}

.blog-item-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1rem;
}

.blog-title {
    font-size: 22px;
    /* color: #006699; */
    margin: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.blog-item:hover .blog-title {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    /*max-width: none;*/
    height: 220px;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image {
    transform: scale(1.05);
}
.blog-ul{
     padding:auto;
     list-style:initial;
}
.blog-li{
     padding-left:2.5rem;
     list-style: inside;
}
.blog-li-ol{
     padding-left:2.5rem;
     list-style: inside;
     list-style-type:unset;
}
/* Responsive Styles */
@media (max-width: 1200px) {
    .blog-container {
        max-width: 1000px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .blog-container {
        max-width: 800px;
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-paragraphe {
        font-size: 0.8rem;
    }

    .blog-li{
        font-size: 0.8rem;
    } 

    .blendingblog-title {
        font-size: 1.4rem;
    }

    .blog-item h3 {
        font-size: 0.7rem;
    }

    .blog-title h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 700px) {
    .blog-container {
        max-width: 600px;
        grid-template-columns: 1fr;
        /* Stack items on smaller screens */
        gap: 20px;
    }

    .blog-title {
        font-size: 20px;
        margin: 15px;
    }

    .blog-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 500px) {
    .blog-container {
        max-width: 100%;
        min-width: 0;
        padding: 10px;
        grid-template-columns: 1fr;
        /* Stack items on smaller screens */
    }

    .blog-title {
        font-size: 18px;
        margin: 10px;
    }

    .blog-image {
        height: 120px;
    }
}
/*=======================================================================BLENDINGBLOGS.PHP================================================================*/
.blendingblog-container {
    width: 83%;
    max-width: 1133px;
    margin: 7rem auto 3rem auto;
}

.author-info {
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

.section-title {
    text-align: left;
    font-size: 1.5rem;
}

.sub-title {
    color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .blog-container {
        max-width: 1000px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .blog-container {
        max-width: 800px;
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-paragraphe {
        font-size: 0.8rem;
    }

    .sub-title {
        font-size: 1rem;
    }

    .sub-paragraphe {
        font-size: 0.8rem;
    }
}

@media (max-width: 700px) {
    .blog-container {
        max-width: 600px;
        grid-template-columns: 1fr;
        /* Stack items on smaller screens */
        gap: 20px;
    }

    .blog-title {
        font-size: 20px;
        margin: 15px;
    }

    .blog-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 500px) {
    .blog-container {
        max-width: 100%;
        min-width: 0;
        padding: 10px;
        grid-template-columns: 1fr;
        /* Stack items on smaller screens */
    }

    .blog-title {
        font-size: 18px;
        margin: 10px;
    }

    .blog-image {
        height: 120px;
    }
}