/* Additional styles for improved readability */
.blog_section {
    background-color: #f8faf9;
    padding: 30px 15px;
    text-align: justify;
    line-height: 1.6;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

/* Rest of your styles remain unchanged */

.blog_section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Optional: If you want to remove padding and margin for the image */
.blog_section img.featured-image {
    padding: 0;
    margin: 0;
}

.blog_section p {
    margin-bottom: 15px;
}

.blog_detail-box {
    text-align: justify;
}

#posts-container {
    width: 100%;
}

/* Styles for modern horizontal pagination */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

.pagination li {
    margin-right: 10px;
}

.pagination li a {
    color: #f8faf9;
    text-decoration: none;
    padding: 2px 3px;
    border: 2px solid #f8faf9;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination li a:hover {
    background-color: #f8faf9;
    color: #fff;
}

/* Center the blog topics */
.blog-topics {
    text-align: center;
    margin-top: 20px;
}

.blog-topics h5 {
    margin-bottom: 20px;
}

/* Center the h4 title */
.blog_section h4 {
    text-align: center;
    margin: 0;
}

