/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Section Styling */
#blog-posts {
    padding: 80px 0;
}

#blog-posts .post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

#blog-posts .readmore {
    margin-top: 15px;
    display: inline-block;
    font-size: 0.9rem;
    color: #007bff;
    transition: 0.3s;
}

#blog-posts .readmore:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Blog Post Image Styling */
#blog-posts .post-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

#blog-posts .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

#blog-posts .post-img:hover img {
    transform: scale(1.05);
}

/* Meta Information Styling */
.meta {
    margin-top: 15px;
    color: #999;
    font-size: 0.9rem;
}

.meta .post-date span {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.meta .d-flex {
    display: flex;
    align-items: center;
}

.meta i {
    margin-right: 5px;
}

.meta .px-3 {
    padding-left: 10px;
    padding-right: 10px;
}

/* Post Content Layout */
#blog-posts .post-content {
    padding: 20px 0;
}

#blog-posts .post-title:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 992px) {
    #blog-posts .post-img {
        height: 180px;
    }

    #blog-posts .post-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #blog-posts .post-img {
        height: 150px;
    }

    #blog-posts .post-title {
        font-size: 1.2rem;
    }

    .meta .post-date span {
        font-size: 1rem;
    }

    #blog-posts .readmore {
        font-size: 0.85rem;
    }
}

/* Footer Styling */
