.main-div-blog{
    display: flex;
	margin-top:75px;
    justify-content: center;
}
.featured-image{
display:flex;
justify-content:center;
}
.post-content p a img{
width:100%;
object-fit:contain;
}





.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.single-post {
    background: #fff;
    border-radius: 10px;
/*     box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    overflow: hidden;
    padding: 15px;
    transition: transform 0.3s ease;
}

.single-post:hover {
    transform: translateY(-5px);
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-title {
    font-size: 18px;
    margin: 15px 0 10px;
    font-weight: bold;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.read-more {
    color: #c00;
    font-weight: bold;
    text-decoration: none;
}
.read-more:hover {
    text-decoration: underline;
}









.first-section{
    width: 20%;
    background-color: #f0f4f8;
    height: 300px;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    position: sticky;
    top: 88px;
    z-index: 100;
    text-align: center;
}
.first-section p{
    margin: 14px;
}
.middle-section{
    width: 70%;
   padding: 50px;
    gap: 25px;
    display: flex;
    flex-direction: column;
}   

.middle-section h1{
font-weight:600;
}

.middle-section p{
/*     text-align: center; */
}
.last-section{
    width: 20%;
    background-color: #f0f4f8;
    height: 300px;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    position: sticky;
    top: 88px;
    z-index: 100;

}
.last-section form input{
    width: 90%;
    margin: 8px;
    padding: 5px;
    border-radius: 5px;
    border: 0px;
}
.last-section button{
    margin: 10px;
    border: 0px;
    background-color: purple;
    color: white;
    padding: 6px;
    border-radius: 3px;
    cursor: pointer;
}
@media(max-width:768px) {
    .last-section{
    display: none;
    }
    .first-section{
        display: none;
    }
    .middle-section{
        width: 100%;
    }
 }