/* Additional styles for improved readability */
.blog_section {
    padding: 30px 0;
    text-align: justify;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.blog_section p {
    margin-bottom: 15px;
}

.blog_detail-box {
    text-align: justify;
}

#posts-container {
    width: 100%;
}

/* Styles for the "Read More Blogs" section */
.read-more-section {
    background-color: #f8faf9;
    color: #000;
    padding: 30px 0;
    text-align: center;
}

.read-more-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* 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; /* Adjust the margin as needed */
}
